From 2854fc498edfbf841610444307c3251e69a62071 Mon Sep 17 00:00:00 2001 From: Prasad Konka Date: Sun, 31 Mar 2024 21:16:53 -0400 Subject: [PATCH] Medicaid endpoints --- .../cmd/medicaidendpointquerier/main.go | 22 + .../medicaidendpointquerier.go | 123 + refresh.py | 32 + .../CHPLEndpointResourcesList.json | 26 +- resources/dev_resources/CHPLProductsInfo.json | 75025 ++++++++-------- .../MedicaidStateEndpointResourcesList.json | 64 + .../AdvancedMD_EndpointSources.json | 3 - .../CHPLEndpointResourcesList.json | 194 +- .../prod_resources/CHPLProductsInfo.json | 75025 ++++++++-------- .../Healthie_EndpointSources.json | 3 - ...gra_Connect_Newco_LLC_EndpointSources.json | 3 - .../MedicaidStateEndpointResourcesList.json | 154 + .../MedicalMine_Inc_EndpointSources.json | 3 - .../medicaid-state-endpoints.csv | 26 + scripts/populatedb.sh | 3 + scripts/populatedb_prod.sh | 12 +- scripts/query-endpoint-resources.sh | 12 + 17 files changed, 75588 insertions(+), 75142 deletions(-) create mode 100644 endpointmanager/cmd/medicaidendpointquerier/main.go create mode 100644 endpointmanager/pkg/medicaidendpointquerier/medicaidendpointquerier.go create mode 100644 refresh.py create mode 100644 resources/dev_resources/MedicaidStateEndpointResourcesList.json delete mode 100644 resources/prod_resources/AdvancedMD_EndpointSources.json delete mode 100644 resources/prod_resources/Healthie_EndpointSources.json delete mode 100644 resources/prod_resources/Integra_Connect_Newco_LLC_EndpointSources.json create mode 100644 resources/prod_resources/MedicaidStateEndpointResourcesList.json delete mode 100644 resources/prod_resources/MedicalMine_Inc_EndpointSources.json create mode 100644 resources/prod_resources/medicaid-state-endpoints.csv diff --git a/endpointmanager/cmd/medicaidendpointquerier/main.go b/endpointmanager/cmd/medicaidendpointquerier/main.go new file mode 100644 index 000000000..d22c4f234 --- /dev/null +++ b/endpointmanager/cmd/medicaidendpointquerier/main.go @@ -0,0 +1,22 @@ +package main + +import ( + "os" + + querier "github.com/onc-healthit/lantern-back-end/endpointmanager/pkg/medicaidendpointquerier" + + log "github.com/sirupsen/logrus" +) + +func main() { + + var fileToWriteTo string + + if len(os.Args) >= 1 { + fileToWriteTo = os.Args[1] + } else { + log.Fatalf("ERROR: Missing command-line arguments") + } + + querier.QueryMedicaidEndpointList(fileToWriteTo) +} diff --git a/endpointmanager/pkg/medicaidendpointquerier/medicaidendpointquerier.go b/endpointmanager/pkg/medicaidendpointquerier/medicaidendpointquerier.go new file mode 100644 index 000000000..42f2f3dd7 --- /dev/null +++ b/endpointmanager/pkg/medicaidendpointquerier/medicaidendpointquerier.go @@ -0,0 +1,123 @@ +package medicaidendpointquerier + +import ( + "encoding/csv" + "encoding/json" + "io" + "io/ioutil" + "log" + "os" + "strings" +) + +type EndpointList struct { + Endpoints []LanternEntry `json:"Endpoints"` +} + +type LanternEntry struct { + URL string `json:"URL"` + OrganizationName string `json:"OrganizationName"` + NPIID string `json:"NPIID"` + OrganizationZipCode string `json:"OrganizationZipCode"` +} + +func QueryMedicaidEndpointList(fileToWriteTo string) { + var lanternEntryList []LanternEntry + var endpointEntryList EndpointList + + csvFilePath := "../../../resources/prod_resources/medicaid-state-endpoints.csv" + csvReader, file, err := QueryAndOpenCSV(csvFilePath, true) + if err != nil { + log.Fatal(err) + } + defer file.Close() + for { + rec, err := csvReader.Read() + if err == io.EOF { + break + } + if err != nil { + log.Fatal(err) + } + var entry LanternEntry + + organizationName := strings.TrimSpace(rec[0]) + URL := strings.TrimSpace(rec[1]) + + entry.OrganizationName = organizationName + entry.URL = URL + + lanternEntryList = append(lanternEntryList, entry) + } + + endpointEntryList.Endpoints = lanternEntryList + err = WriteCHPLFile(endpointEntryList, fileToWriteTo) + if err != nil { + log.Fatal(err) + } +} + +func QueryAndOpenCSV(csvFilePath string, header bool) (*csv.Reader, *os.File, error) { + + // open file + f, err := os.Open(csvFilePath) + if err != nil { + return nil, nil, err + } + + // read csv values using csv.Reader + csvReader := csv.NewReader(f) + csvReader.Comma = ',' // Set the delimiter (default is ',') + csvReader.LazyQuotes = true // Enable handling of lazy quotes + + if header { + // Read first line to skip over headers + _, err = csvReader.Read() + if err != nil { + return nil, f, err + } + } + + return csvReader, f, nil +} + +// WriteCHPLFile writes the given endpointEntryList to a json file and stores it in the prod resources directory +func WriteCHPLFile(endpointEntryList EndpointList, fileToWriteTo string) error { + finalFormatJSON, err := json.MarshalIndent(endpointEntryList, "", "\t") + if err != nil { + return err + } + + err = ioutil.WriteFile("../../../resources/prod_resources/"+fileToWriteTo, finalFormatJSON, 0644) + if err != nil { + return err + } + + if len(endpointEntryList.Endpoints) > 10 { + endpointEntryList.Endpoints = endpointEntryList.Endpoints[0:10] + } + + reducedFinalFormatJSON, err := json.MarshalIndent(endpointEntryList, "", "\t") + if err != nil { + return err + } + + err = ioutil.WriteFile("../../../resources/dev_resources/"+fileToWriteTo, reducedFinalFormatJSON, 0644) + if err != nil { + return err + } + + return nil +} + +func URLsEqual(chplURL string, savedURL string) bool { + savedURLNorm := strings.TrimSuffix(savedURL, "/") + chplURLNorm := strings.TrimSuffix(chplURL, "/") + + savedURLNorm = strings.TrimPrefix(savedURLNorm, "https://") + chplURLNorm = strings.TrimPrefix(chplURLNorm, "https://") + savedURLNorm = strings.TrimPrefix(savedURLNorm, "http://") + chplURLNorm = strings.TrimPrefix(chplURLNorm, "http://") + + return savedURLNorm == chplURLNorm +} diff --git a/refresh.py b/refresh.py new file mode 100644 index 000000000..c9ecb3d9d --- /dev/null +++ b/refresh.py @@ -0,0 +1,32 @@ +from selenium import webdriver +from selenium.webdriver.chrome.options import Options +from selenium.webdriver.common.keys import Keys +from selenium.webdriver.common.by import By +from selenium.webdriver.support.ui import WebDriverWait +from selenium.webdriver.support import expected_conditions as EC + +# Path to the WebDriver executable (download from Selenium website) +#driver_path = '/path/to/webdriver/executable' + +chrome_options = Options() +chrome_options.add_argument('--headless') # Run in headless mode +chrome_options.add_argument('--disable-gpu') # Disable GPU acceleration + +# Initialize the WebDriver for Chrome +#driver = webdriver.Chrome(executable_path=driver_path) +driver = webdriver.Chrome(options=chrome_options) + +# Open the Shiny app URL +driver.get('http://localhost:8090/?tab=dashboard_tab') + +# Wait for specific element to be present +try: + element = WebDriverWait(driver, 3600).until( + EC.presence_of_element_located((By.ID, "httpvendor")) + ) + print("Element found:", element.text) +except: + print("Element not found within 10 seconds") + +# Close the browser window +driver.quit() diff --git a/resources/dev_resources/CHPLEndpointResourcesList.json b/resources/dev_resources/CHPLEndpointResourcesList.json index 7513ce817..c2b1aff46 100644 --- a/resources/dev_resources/CHPLEndpointResourcesList.json +++ b/resources/dev_resources/CHPLEndpointResourcesList.json @@ -158,8 +158,8 @@ { "FormatType": "Lantern", "URL": "https://unify-developer.chbase.com/?page=FHIRAPI", - "EndpointName": "Get Real Health", - "FileName": "Get_Real_Health_EndpointSources.json" + "EndpointName": "TruBridge, Inc.", + "FileName": "TruBridge_Inc_EndpointSources.json" }, { "FormatType": "Lantern", @@ -415,7 +415,7 @@ }, { "FormatType": "Lantern", - "URL": "https://fhir.myeyecarerecords.com/fhir-endpoints", + "URL": "https://smartonfhir.myeyecarerecords.com/fhir/Endpoint?_format=application/fhir+json\u0026status=active", "EndpointName": "EyeMD EMR Healthcare Systems, Inc.", "FileName": "EyeMD_EMR_Healthcare_Systems_Inc_EndpointSources.json" }, @@ -533,12 +533,6 @@ "EndpointName": "InteliChart LLC", "FileName": "InteliChart_LLC_EndpointSources.json" }, - { - "FormatType": "Lantern", - "URL": "https://www.nextech.com/developers-portal", - "EndpointName": "Nextech", - "FileName": "Nextech_EndpointSources.json" - }, { "FormatType": "Lantern", "URL": "https://www.meditab.com/fhir/endpoints", @@ -761,6 +755,12 @@ "EndpointName": "NextGen Healthcare", "FileName": "NextGen_Healthcare_1_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://www.nextech.com/developers-portal", + "EndpointName": "Nextech", + "FileName": "Nextech_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://www.nextech.com/hubfs/Nextech%20FHIR%20Base%20URL.csv", @@ -1033,10 +1033,16 @@ }, { "FormatType": "Lantern", - "URL": "https://dhfhirpresentation.smartcarenet.com/fhir/r4/endpoints", + "URL": "https://dhfhirpresentation.smartcarenet.com/", "EndpointName": "Streamline Healthcare Solutions", "FileName": "Streamline_Healthcare_Solutions_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://dhfhirpresentation.smartcarenet.com/fhir/r4/endpoints", + "EndpointName": "Streamline Healthcare Solutions", + "FileName": "Streamline_Healthcare_Solutions_1_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://smilecdr.com/docs/javascript_execution_environment/fhir_rest.html", diff --git a/resources/dev_resources/CHPLProductsInfo.json b/resources/dev_resources/CHPLProductsInfo.json index b7e9ad78b..33eee21aa 100644 --- a/resources/dev_resources/CHPLProductsInfo.json +++ b/resources/dev_resources/CHPLProductsInfo.json @@ -31,36 +31,6 @@ "name": "Active" }, "criteriaMet": [ - { - "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": 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, "number": "170.315 (a)(1)", @@ -71,20 +41,20 @@ "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, - { - "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 37, @@ -92,24 +62,19 @@ "title": "Trusted Connection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 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": 181, - "number": "170.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": 12, @@ -117,9 +82,19 @@ "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 53, @@ -127,9 +102,19 @@ "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 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, @@ -137,14 +122,14 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 52, @@ -157,9 +142,24 @@ "title": "Transitions of Care" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ @@ -220,9 +220,19 @@ }, "criteriaMet": [ { - "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 176, @@ -230,49 +240,44 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 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": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 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": 37, @@ -280,29 +285,19 @@ "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 56, @@ -310,19 +305,9 @@ "title": "Application Access - Patient Selection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 33, @@ -330,34 +315,34 @@ "title": "Automatic Access Time-out" }, { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 36, @@ -365,39 +350,54 @@ "title": "Integrity" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, { "id": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://apidocs.chirp.app/" + "value": "https://apidocs.chirp.app/#0" }, { "criterion": { @@ -409,11 +409,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.chirp.app/#0" + "value": "https://apidocs.chirp.app/" } ], "acb": "SLI Compliance" @@ -453,34 +453,44 @@ }, "criteriaMet": [ { - "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": 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": 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": 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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { "id": 178, @@ -488,14 +498,9 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 180, @@ -503,99 +508,74 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, { "id": 26, "number": "170.315 (c)(2)", "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 36, @@ -603,62 +583,82 @@ "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://app.smartemr.com/api/api_client.php" }, @@ -672,9 +672,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://app.smartemr.com/api/api_client.php" } @@ -715,20 +715,30 @@ "name": "Active" }, "criteriaMet": [ + { + "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 12, @@ -736,19 +746,14 @@ "title": "Family Health History" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 176, @@ -756,19 +761,19 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 54, @@ -776,59 +781,39 @@ "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 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": 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" }, { "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": 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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 56, @@ -836,14 +821,29 @@ "title": "Application Access - Patient Selection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 1, @@ -851,55 +851,55 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://varian.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://varian.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" }, @@ -944,34 +944,29 @@ }, "criteriaMet": [ { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 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": 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": 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": 33, @@ -979,9 +974,9 @@ "title": "Automatic Access Time-out" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 9, @@ -989,50 +984,35 @@ "title": "Clinical Decision Support" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, { "id": 166, "number": "170.315 (b)(2)", @@ -1044,74 +1024,94 @@ "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 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": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, { - "id": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ @@ -1177,74 +1177,59 @@ }, "criteriaMet": [ { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 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": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, { - "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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 35, @@ -1252,34 +1237,34 @@ "title": "End-User Device Encryption" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 166, @@ -1287,19 +1272,14 @@ "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 25, @@ -1307,44 +1287,59 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 4, @@ -1352,9 +1347,14 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ @@ -1420,9 +1420,9 @@ }, "criteriaMet": [ { - "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": 36, @@ -1430,34 +1430,29 @@ "title": "Integrity" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 174, @@ -1465,129 +1460,129 @@ "title": "Audit Report(s)" }, { - "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 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": 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": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 1, @@ -1595,12 +1590,25 @@ "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": 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://awards.clickhelp.co/articles/#!administrator-guide/meaningfuluse" + }, { "criterion": { "id": 182, @@ -1616,14 +1624,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://demodb.footholdtechnology.com/help/docs/API_Details_Terms.pdf" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://awards.clickhelp.co/articles/#!administrator-guide/meaningfuluse" } ], "acb": "Drummond Group" @@ -1663,19 +1663,29 @@ }, "criteriaMet": [ { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 54, @@ -1683,24 +1693,39 @@ "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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "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": 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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 9, @@ -1708,74 +1733,79 @@ "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, - { - "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 166, @@ -1783,24 +1813,14 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 34, @@ -1808,32 +1828,20 @@ "title": "Emergency Access" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 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": 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://axeium.net/api/swagger/" + }, { "criterion": { "id": 182, @@ -1849,14 +1857,6 @@ "title": "Application Access - All Data Request" }, "value": "https://axeium.net/api/swagger/" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://axeium.net/api/swagger/" } ], "acb": "SLI Compliance" @@ -1896,19 +1896,24 @@ }, "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 37, @@ -1916,9 +1921,19 @@ "title": "Trusted Connection" }, { - "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 54, @@ -1926,104 +1941,114 @@ "title": "Accessibility-Centered Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 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": 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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 51, @@ -2031,14 +2056,14 @@ "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": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 59, @@ -2046,19 +2071,14 @@ "title": "Direct Project" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 52, @@ -2066,42 +2086,22 @@ "title": "Safety-Enhanced Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 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": 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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.advancedmd.com/fhir/apis" }, @@ -2115,9 +2115,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.advancedmd.com/fhir/apis" } @@ -2154,9 +2154,24 @@ }, "criteriaMet": [ { - "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 25, @@ -2168,11 +2183,31 @@ "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": 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": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, { "id": 59, "number": "170.315 (h)(1)", @@ -2184,89 +2219,89 @@ "title": "Emergency Access" }, { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 5, @@ -2274,24 +2309,14 @@ "title": "Demographics" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 180, @@ -2299,24 +2324,9 @@ "title": "Consolidated CDA Creation Performance" }, { - "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 33, @@ -2324,24 +2334,9 @@ "title": "Automatic Access Time-out" }, { - "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": 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, @@ -2349,12 +2344,25 @@ "title": "Patient Health Information Capture" }, { - "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": 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://developer.advancedmd.com/fhir/apis" + }, { "criterion": { "id": 56, @@ -2370,14 +2378,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.advancedmd.com/fhir/apis" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://developer.advancedmd.com/fhir/apis" } ], "acb": "Drummond Group" @@ -2417,9 +2417,9 @@ }, "criteriaMet": [ { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 178, @@ -2427,19 +2427,9 @@ "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 53, @@ -2447,54 +2437,54 @@ "title": "Quality Management System" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 42, @@ -2502,29 +2492,29 @@ "title": "Patient Health Information Capture" }, { - "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 180, @@ -2532,29 +2522,39 @@ "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "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": 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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 52, @@ -2562,39 +2562,34 @@ "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 1, @@ -2602,24 +2597,29 @@ "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": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" } ], "apiDocumentation": [ @@ -2685,24 +2685,24 @@ }, "criteriaMet": [ { - "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 29, @@ -2710,19 +2710,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 53, @@ -2730,9 +2720,9 @@ "title": "Quality Management System" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 56, @@ -2740,12 +2730,30 @@ "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://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" @@ -2813,24 +2813,29 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 37, @@ -2841,11 +2846,6 @@ "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ @@ -2894,50 +2894,50 @@ "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": 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, - "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "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": 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": 54, @@ -2950,14 +2950,24 @@ "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 3, @@ -2965,14 +2975,19 @@ "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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 51, @@ -2980,94 +2995,84 @@ "title": "Automated Measure Calculation" }, { - "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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, { "id": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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, + "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 12, @@ -3075,22 +3080,17 @@ "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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.mdsynergy.com/AltheaAPIDocumentation.pdf" }, @@ -3104,9 +3104,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.mdsynergy.com/AltheaAPIDocumentation.pdf" } @@ -3148,39 +3148,44 @@ }, "criteriaMet": [ { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 4, @@ -3188,59 +3193,54 @@ "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 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": 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": 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": 25, @@ -3248,14 +3248,19 @@ "title": "Clinical Quality Measures - Record and 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": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 174, @@ -3268,64 +3273,59 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 21, "number": "170.315 (b)(6)", "title": "Data Export" }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ @@ -3339,17 +3339,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://harrisambulatory.com/ac-api-documentation/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://harrisambulatory.com/ac-api-documentation/" } @@ -3386,29 +3386,29 @@ }, "criteriaMet": [ { - "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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 29, @@ -3416,24 +3416,24 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 42, @@ -3441,19 +3441,19 @@ "title": "Patient Health Information Capture" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 173, @@ -3461,24 +3461,29 @@ "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 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": 52, @@ -3486,49 +3491,49 @@ "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": 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": 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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 36, @@ -3536,39 +3541,34 @@ "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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": 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": 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": 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" } ], "apiDocumentation": [ @@ -3582,17 +3582,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://harrisambulatory.com/ac-api-documentation/" }, { "criterion": { - "id": 181, - "number": "170.315 (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://harrisambulatory.com/ac-api-documentation/" } @@ -3629,9 +3629,14 @@ }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 53, @@ -3639,19 +3644,19 @@ "title": "Quality Management System" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 33, @@ -3659,64 +3664,69 @@ "title": "Automatic Access Time-out" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 5, @@ -3724,64 +3734,39 @@ "title": "Demographics" }, { - "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, { "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 26, @@ -3789,9 +3774,9 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 9, @@ -3799,9 +3784,14 @@ "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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 2, @@ -3809,12 +3799,30 @@ "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": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://harrisambulatory.com/ac-api-documentation/" + }, { "criterion": { "id": 56, @@ -3830,14 +3838,6 @@ "title": "Application Access - All Data Request" }, "value": "https://harrisambulatory.com/ac-api-documentation/" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://harrisambulatory.com/ac-api-documentation/" } ], "acb": "Drummond Group" @@ -3877,39 +3877,39 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 2, @@ -3917,34 +3917,34 @@ "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": 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": 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": 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": 14, @@ -3952,34 +3952,34 @@ "title": "Implantable Device List" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 56, @@ -3987,54 +3987,54 @@ "title": "Application Access - Patient Selection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" } ], "apiDocumentation": [ @@ -4046,14 +4046,6 @@ }, "value": "https://astronautehr.com/index.php/disclosures/" }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://astronautehr.com/index.php/disclosures/" - }, { "criterion": { "id": 182, @@ -4061,6 +4053,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://astronautehr.com/index.php/170-315g10-apis/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://astronautehr.com/index.php/disclosures/" } ], "acb": "SLI Compliance" @@ -4100,54 +4100,44 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "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": 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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 34, @@ -4155,19 +4145,14 @@ "title": "Emergency Access" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 166, @@ -4180,34 +4165,49 @@ "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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 5, @@ -4215,24 +4215,29 @@ "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 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": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 52, @@ -4240,34 +4245,29 @@ "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 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" } ], "apiDocumentation": [ @@ -4281,17 +4281,17 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://fhir.pai.healthcare/documentation" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://fhir.pai.healthcare/documentation" } @@ -4333,14 +4333,19 @@ }, "criteriaMet": [ { - "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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 12, @@ -4348,34 +4353,39 @@ "title": "Family Health History" }, { - "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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 37, @@ -4383,14 +4393,14 @@ "title": "Trusted Connection" }, { - "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { "id": 56, @@ -4398,19 +4408,29 @@ "title": "Application Access - Patient Selection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 180, @@ -4423,92 +4443,72 @@ "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": 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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 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": 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": 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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 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" } ], "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-api.hmsfirst.com/documents/index.html" }, @@ -4522,9 +4522,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://fhir-api.hmsfirst.com/documents/index.html" } @@ -4565,50 +4565,25 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 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": 2, @@ -4621,64 +4596,64 @@ "title": "Demographics" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 43, @@ -4686,34 +4661,29 @@ "title": "Transmission to Immunization Registries" }, { - "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 166, @@ -4721,14 +4691,19 @@ "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 173, @@ -4736,14 +4711,14 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 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, @@ -4751,40 +4726,57 @@ "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://dev.azaleahealth.com/" - }, { "criterion": { "id": 181, @@ -4800,6 +4792,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://dev.azaleahealth.com/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://dev.azaleahealth.com/" } ], "acb": "Drummond Group" @@ -4839,44 +4839,54 @@ }, "criteriaMet": [ { - "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": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 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": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 36, @@ -4884,14 +4894,14 @@ "title": "Integrity" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 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": 10, @@ -4899,74 +4909,69 @@ "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 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": 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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 172, @@ -4974,79 +4979,74 @@ "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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 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": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 176, @@ -5054,9 +5054,9 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 33, @@ -5064,14 +5064,14 @@ "title": "Automatic Access Time-out" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" } ], "apiDocumentation": [ @@ -5137,44 +5137,44 @@ }, "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": 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": 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": 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": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 29, @@ -5182,79 +5182,54 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 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": 170, "number": "170.315 (b)(9)", "title": "Care Plan" }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 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": 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": 48, @@ -5262,104 +5237,99 @@ "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 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": 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": 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": 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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 171, @@ -5367,29 +5337,34 @@ "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": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 169, @@ -5397,28 +5372,37 @@ "title": "Security Tags - Summary of Care - Receive" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - } - ], - "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.braintreehealth.com/braintree-onc-certification-2015/" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.braintreehealth.com/braintree-onc-certification-2015/" + "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": 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": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + } + ], + "apiDocumentation": [ { "criterion": { "id": 182, @@ -5426,6 +5410,22 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.braintreehealth.com/braintree-onc-certification-2015/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.braintreehealth.com/braintree-onc-certification-2015/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.braintreehealth.com/braintree-onc-certification-2015/" } ], "acb": "SLI Compliance" @@ -5465,74 +5465,74 @@ }, "criteriaMet": [ { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { "id": 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": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { "id": 181, @@ -5540,44 +5540,44 @@ "title": "Application Access - All Data Request" }, { - "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 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": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 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": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "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, @@ -5585,54 +5585,44 @@ "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 56, @@ -5640,64 +5630,64 @@ "title": "Application Access - Patient Selection" }, { - "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": 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": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 171, @@ -5705,29 +5695,39 @@ "title": "Electronic Health Information 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" } ], "apiDocumentation": [ @@ -5788,54 +5788,34 @@ }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "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": 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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 28, @@ -5843,34 +5823,39 @@ "title": "Clinical Quality Measures - Filter" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 181, - "number": "170.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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 171, @@ -5878,14 +5863,14 @@ "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 177, @@ -5893,34 +5878,24 @@ "title": "Multi-Factor Authentication" }, { - "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": 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": 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": 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": 26, @@ -5928,19 +5903,19 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 49, @@ -5948,29 +5923,24 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 53, @@ -5978,14 +5948,29 @@ "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 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": 29, @@ -5993,30 +5978,45 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://prognocis.com/fhir/FHIRAPIDocuments.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://prognocis.com/fhir/FHIRAPIDocuments.html" }, @@ -6061,59 +6061,74 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, { "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": 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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 14, @@ -6121,24 +6136,24 @@ "title": "Implantable Device List" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 3, @@ -6146,14 +6161,19 @@ "title": "CPOE - Diagnostic Imaging" }, { - "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "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": 1, @@ -6161,135 +6181,115 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 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": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://portal.inmediata.com/wp-content/uploads/2021/05/FHIR_API_DOC_Inmediata.pdf" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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" }, @@ -6339,54 +6339,54 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 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": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 33, @@ -6394,9 +6394,19 @@ "title": "Automatic Access Time-out" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "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, @@ -6404,19 +6414,14 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 173, @@ -6424,14 +6429,19 @@ "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 42, @@ -6439,19 +6449,29 @@ "title": "Patient Health Information Capture" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 9, @@ -6459,57 +6479,37 @@ "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 12, "number": "170.315 (a)(12)", "title": "Family Health History" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://betterdayhealth.net/OpenApiTestClient/Home/Documentation" }, @@ -6523,9 +6523,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://betterdayhealth.net/OpenApiTestClient/Home/Documentation" } @@ -6567,45 +6567,35 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 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": 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": 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": 50, "number": "170.315 (g)(1)", @@ -6617,9 +6607,9 @@ "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": 173, @@ -6627,25 +6617,35 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 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://app.sb.meldrx.com/swagger/index.html" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://app.sb.meldrx.com/swagger/index.html" } @@ -6687,29 +6687,29 @@ }, "criteriaMet": [ { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 44, @@ -6717,64 +6717,64 @@ "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": 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": 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": 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": 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": 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": 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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 34, @@ -6782,24 +6782,34 @@ "title": "Emergency Access" }, { - "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 35, @@ -6807,24 +6817,24 @@ "title": "End-User Device Encryption" }, { - "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": 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": 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": 42, @@ -6832,42 +6842,32 @@ "title": "Patient Health Information Capture" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "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.blueehr.com/wp-content/uploads/2020/04/blueEHR-APIs.pdf" }, @@ -6881,9 +6881,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.blueehr.com/wp-content/uploads/2020/04/blueEHR-APIs.pdf" } @@ -6925,24 +6925,19 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 174, @@ -6950,80 +6945,77 @@ "title": "Audit Report(s)" }, { - "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": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, { "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": 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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, { "id": 41, "number": "170.315 (e)(2)", "title": "Secure Messaging" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 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://bridgepatientportal.docs.apiary.io/#/introduction/fhir-bridge-patient-portal" - }, { "criterion": { "id": 56, @@ -7039,6 +7031,14 @@ "title": "Application Access - All Data Request" }, "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" @@ -7077,40 +7077,35 @@ "name": "Active" }, "criteriaMet": [ - { - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 165, @@ -7118,24 +7113,14 @@ "title": "Transitions of Care" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 29, @@ -7143,29 +7128,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 181, @@ -7177,50 +7142,65 @@ "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": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 173, @@ -7228,19 +7208,19 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 26, @@ -7248,9 +7228,24 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "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": 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": 25, @@ -7258,9 +7253,14 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ @@ -7274,17 +7274,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://broadstreetcare.com/docs" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://broadstreetcare.com/docs" } @@ -7325,105 +7325,105 @@ "name": "Active" }, "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 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": 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": 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": 180, @@ -7431,64 +7431,64 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 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": 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": 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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { "id": 36, @@ -7496,29 +7496,34 @@ "title": "Integrity" }, { - "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 177, @@ -7526,42 +7531,45 @@ "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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://ehealthline.com/dev/pdf/API_TermsOfUse.htm" + }, { "criterion": { "id": 181, @@ -7577,14 +7585,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "http://ehealthline.com/dev/pdf/FHIR%20API%20Documentation.pdf" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://ehealthline.com/dev/pdf/API_TermsOfUse.htm" } ], "acb": "SLI Compliance" @@ -7619,49 +7619,29 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 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": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 3, @@ -7669,39 +7649,44 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 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, @@ -7709,34 +7694,34 @@ "title": "Trusted Connection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 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": 53, @@ -7744,29 +7729,24 @@ "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "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": 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": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 174, @@ -7774,24 +7754,19 @@ "title": "Audit Report(s)" }, { - "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": 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": 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, @@ -7799,70 +7774,87 @@ "title": "Electronic Prescribing" }, { - "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": 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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://ehealthline.com/dev/pdf/API_TermsOfUse.htm" - }, { "criterion": { "id": 182, @@ -7878,6 +7870,14 @@ "title": "Application Access - All Data Request" }, "value": "http://ehealthline.com/dev/pdf/API_TermsOfUse.htm" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://ehealthline.com/dev/pdf/API_TermsOfUse.htm" } ], "acb": "SLI Compliance" @@ -7916,40 +7916,65 @@ "name": "Active" }, "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { "id": 172, @@ -7957,19 +7982,19 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 9, @@ -7977,24 +8002,24 @@ "title": "Clinical Decision Support" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 51, @@ -8002,19 +8027,29 @@ "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": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 25, @@ -8022,14 +8057,14 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 1, @@ -8037,14 +8072,14 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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, @@ -8052,9 +8087,9 @@ "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 33, @@ -8062,44 +8097,24 @@ "title": "Automatic Access Time-out" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 167, @@ -8107,24 +8122,9 @@ "title": "Electronic Prescribing" }, { - "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, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "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" } ], "apiDocumentation": [ @@ -8138,17 +8138,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://emds.com/certifications/" }, { "criterion": { - "id": 181, - "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://emds.com/certifications/" } @@ -8185,9 +8185,9 @@ }, "criteriaMet": [ { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 53, @@ -8195,59 +8195,64 @@ "title": "Quality Management System" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 52, @@ -8255,24 +8260,19 @@ "title": "Safety-Enhanced Design" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 15, @@ -8280,14 +8280,24 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 37, @@ -8300,34 +8310,29 @@ "title": "Care Plan" }, { - "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 4, @@ -8335,42 +8340,37 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "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": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 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" } ], "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://apitest.emds.com/documentation" }, @@ -8384,9 +8384,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://apitest.emds.com/documentation" } @@ -8400,7 +8400,7 @@ "softwareProducts": [ { "id": 10965, - "chplProductNumber": "15.04.04.1533.CHBa.20.03.0.220819", + "chplProductNumber": "15.04.04.3104.CHBa.20.03.0.220819", "edition": { "id": 3, "name": "2015" @@ -8410,8 +8410,8 @@ "name": "" }, "developer": { - "id": 534, - "name": "Get Real Health" + "id": 2105, + "name": "TruBridge, Inc." }, "product": { "id": 3164, @@ -8428,9 +8428,14 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 171, @@ -8438,19 +8443,19 @@ "title": "Electronic Health Information Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 33, @@ -8458,9 +8463,9 @@ "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 54, @@ -8468,55 +8473,50 @@ "title": "Accessibility-Centered Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://unify-developer.chbase.com/?page=FHIRAPI" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://unify-developer.chbase.com/?page=FHIRAPI" }, @@ -8566,29 +8566,19 @@ }, "criteriaMet": [ { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 54, @@ -8596,34 +8586,29 @@ "title": "Accessibility-Centered Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 53, @@ -8631,9 +8616,9 @@ "title": "Quality Management System" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 33, @@ -8641,39 +8626,69 @@ "title": "Automatic Access Time-out" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 4, @@ -8681,44 +8696,44 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 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": 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": 12, @@ -8726,42 +8741,27 @@ "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://docs.canvasmedical.com/api/" }, @@ -8775,9 +8775,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.canvasmedical.com/api/" } @@ -8819,69 +8819,94 @@ }, "criteriaMet": [ { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 174, @@ -8889,19 +8914,19 @@ "title": "Audit Report(s)" }, { - "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": 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": 37, @@ -8909,49 +8934,59 @@ "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": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 170, @@ -8959,77 +8994,50 @@ "title": "Care Plan" }, { - "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": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.acurussolutions.com/Certification.html" + }, { "criterion": { "id": 181, @@ -9045,14 +9053,6 @@ "title": "Application Access - Patient Selection" }, "value": "http://www.acurussolutions.com/Certification.html" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.acurussolutions.com/Certification.html" } ], "acb": "SLI Compliance" @@ -9092,19 +9092,19 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 43, @@ -9112,39 +9112,34 @@ "title": "Transmission to Immunization Registries" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 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": 56, - "number": "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": 34, @@ -9152,19 +9147,14 @@ "title": "Emergency Access" }, { - "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": 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": 53, @@ -9172,9 +9162,19 @@ "title": "Quality Management System" }, { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 33, @@ -9182,24 +9182,29 @@ "title": "Automatic Access Time-out" }, { - "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 26, @@ -9207,49 +9212,49 @@ "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": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 36, @@ -9257,34 +9262,29 @@ "title": "Integrity" }, { - "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": 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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" } ], "apiDocumentation": [ @@ -9298,17 +9298,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://api-datamanager.carecloud.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://api-datamanager.carecloud.com/" } @@ -9345,20 +9345,70 @@ }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "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": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, { "id": 43, "number": "170.315 (f)(1)", @@ -9370,9 +9420,14 @@ "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 45, @@ -9380,14 +9435,9 @@ "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 25, @@ -9395,24 +9445,24 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 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": 167, @@ -9420,29 +9470,29 @@ "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 182, @@ -9450,107 +9500,57 @@ "title": "Standardized API for Patient and Population Services" }, { - "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 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": 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": 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": [ { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://fhirdocumentation.vertexdrweb.com/ApiDocumentation.html" }, { - "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - } - ], - "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://fhirdocumentation.vertexdrweb.com/ApiDocumentation.html" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://fhirdocumentation.vertexdrweb.com/ApiDocumentation.html" + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhirdocumentation.vertexdrweb.com/ApiDocumentation.html" }, { "criterion": { @@ -9593,59 +9593,59 @@ }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "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" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 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": 15, @@ -9653,39 +9653,54 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "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": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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, @@ -9693,64 +9708,54 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 33, @@ -9758,29 +9763,19 @@ "title": "Automatic Access Time-out" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 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": 178, @@ -9788,49 +9783,54 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 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": 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": 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": 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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" } ], "apiDocumentation": [ @@ -9844,17 +9844,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://api-datamanager.carecloud.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://api-datamanager.carecloud.com/" } @@ -9896,9 +9896,9 @@ }, "criteriaMet": [ { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 37, @@ -9906,19 +9906,19 @@ "title": "Trusted Connection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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, @@ -9926,44 +9926,49 @@ "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered 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": 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": 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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 36, @@ -9971,74 +9976,74 @@ "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": 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": 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": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 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": 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": 174, @@ -10046,65 +10051,60 @@ "title": "Audit Report(s)" }, { - "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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 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": 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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://qualifacts.com/api-documentation/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://qualifacts.com/api-documentation/" }, @@ -10153,40 +10153,25 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 14, @@ -10194,99 +10179,89 @@ "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": 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": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, - { - "id": 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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, - { - "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 173, @@ -10294,17 +10269,42 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://carepaths.com/api_documentation/" }, @@ -10318,9 +10318,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://carepaths.com/api_documentation/" } @@ -10362,9 +10362,9 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 37, @@ -10372,9 +10372,14 @@ "title": "Trusted Connection" }, { - "id": 181, - "number": "170.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": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { "id": 177, @@ -10387,24 +10392,24 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 182, - "number": "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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 29, @@ -10412,30 +10417,25 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 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": 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,9 +10485,14 @@ }, "criteriaMet": [ { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 173, @@ -10495,59 +10500,49 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" - }, - { - "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": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 41, @@ -10555,39 +10550,29 @@ "title": "Secure Messaging" }, { - "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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { "id": 3, @@ -10595,104 +10580,104 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 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, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 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": 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": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 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": 13, @@ -10700,19 +10685,34 @@ "title": "Patient-Specific Education Resources" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "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": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" + }, + { + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" } ], "apiDocumentation": [ @@ -10777,180 +10777,190 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 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": 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": 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": 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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 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": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 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": 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": 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": 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": 44, "number": "170.315 (f)(2)", "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, - { - "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 15, @@ -10958,45 +10968,27 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 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": 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://dev.azaleahealth.com/" - }, { "criterion": { "id": 56, @@ -11012,6 +11004,14 @@ "title": "Application Access - All Data Request" }, "value": "https://dev.azaleahealth.com/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://dev.azaleahealth.com/" } ], "acb": "Drummond Group" @@ -11050,40 +11050,25 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" - }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 52, @@ -11091,19 +11076,34 @@ "title": "Safety-Enhanced Design" }, { - "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, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 4, @@ -11111,25 +11111,40 @@ "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 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": 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": 37, "number": "170.315 (d)(9)", @@ -11141,44 +11156,24 @@ "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 177, @@ -11186,14 +11181,14 @@ "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 180, @@ -11201,29 +11196,34 @@ "title": "Consolidated CDA Creation Performance" }, { - "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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ @@ -11237,17 +11237,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.charteasy.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.charteasy.com/" } @@ -11289,69 +11289,44 @@ }, "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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "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": 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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 167, @@ -11359,9 +11334,14 @@ "title": "Electronic Prescribing" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 180, @@ -11369,24 +11349,29 @@ "title": "Consolidated CDA Creation Performance" }, { - "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 172, @@ -11394,34 +11379,44 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 4, @@ -11429,29 +11424,54 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 177, @@ -11459,14 +11479,9 @@ "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 182, @@ -11474,30 +11489,15 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, { "id": 52, "number": "170.315 (g)(3)", @@ -11567,79 +11567,84 @@ }, "criteriaMet": [ { - "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": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 41, "number": "170.315 (e)(2)", "title": "Secure Messaging" }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, { "id": 11, "number": "170.315 (a)(11)", "title": "Smoking Status" }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, { "id": 19, "number": "170.315 (b)(4)", "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "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": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 35, @@ -11647,140 +11652,127 @@ "title": "End-User Device Encryption" }, { - "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": 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": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "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": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "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": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 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": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy 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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem 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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 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" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://beta.afoundria.com/api" - }, { "criterion": { "id": 181, @@ -11796,6 +11788,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://beta.afoundria.com/api" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://beta.afoundria.com/api" } ], "acb": "Drummond Group" @@ -11835,74 +11835,79 @@ }, "criteriaMet": [ { - "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 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, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 5, @@ -11910,29 +11915,24 @@ "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "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": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 171, @@ -11940,34 +11940,34 @@ "title": "Electronic Health Information Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 28, @@ -11975,59 +11975,59 @@ "title": "Clinical Quality Measures - Filter" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" } ], "apiDocumentation": [ @@ -12093,64 +12093,39 @@ }, "criteriaMet": [ { - "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": 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": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" - }, - { - "id": 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": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 51, @@ -12158,44 +12133,44 @@ "title": "Automated Measure Calculation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 32, @@ -12203,9 +12178,9 @@ "title": "Amendments" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 179, @@ -12213,24 +12188,24 @@ "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 178, @@ -12238,59 +12213,84 @@ "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": 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": 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": 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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" } ], "apiDocumentation": [ @@ -12302,14 +12302,6 @@ }, "value": "https://www.sabiamed.com/api-documentation" }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.sabiamed.com/api-documentation" - }, { "criterion": { "id": 56, @@ -12317,6 +12309,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://dev.sabiamed.com:8081/MPIServices/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.sabiamed.com/api-documentation" } ], "acb": "Drummond Group" @@ -12356,49 +12356,49 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 15, @@ -12406,9 +12406,9 @@ "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": 177, @@ -12416,14 +12416,14 @@ "title": "Multi-Factor Authentication" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { "id": 181, @@ -12431,104 +12431,94 @@ "title": "Application Access - All Data Request" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 52, @@ -12536,9 +12526,14 @@ "title": "Safety-Enhanced Design" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 34, @@ -12546,39 +12541,44 @@ "title": "Emergency Access" }, { - "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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 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" } ], "apiDocumentation": [ @@ -12592,19 +12592,19 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://clinicomp.com/wp-content/uploads/2024/01/250-70079_CliniComp_EHR_ONC-API-Rev-D-WO-Rev-History_00.pdf" + "value": "https://clinicomp.com/wp-content/uploads/2024/02/250-70079_CliniComp_EHR_ONC-API_USCDI.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://clinicomp.com/wp-content/uploads/2024/01/250-70079_CliniComp_EHR_ONC-API-Rev-D-WO-Rev-History_00.pdf" + "value": "https://clinicomp.com/wp-content/uploads/2024/02/250-70079_CliniComp_EHR_ONC-API_USCDI.pdf" } ], "acb": "SLI Compliance" @@ -12644,34 +12644,39 @@ }, "criteriaMet": [ { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 14, @@ -12679,29 +12684,34 @@ "title": "Implantable Device List" }, { - "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 59, @@ -12709,74 +12719,79 @@ "title": "Direct Project" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 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": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 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": 21, @@ -12784,19 +12799,14 @@ "title": "Data Export" }, { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 177, @@ -12804,90 +12814,72 @@ "title": "Multi-Factor Authentication" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 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": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 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": 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": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.goldblattsystems.com/apis" - }, { "criterion": { "id": 181, @@ -12896,6 +12888,14 @@ }, "value": "https://www.goldblattsystems.com/apis/" }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.goldblattsystems.com/apis" + }, { "criterion": { "id": 56, @@ -12942,74 +12942,69 @@ }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 42, @@ -13017,39 +13012,19 @@ "title": "Patient Health Information Capture" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 34, @@ -13057,34 +13032,39 @@ "title": "Emergency Access" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 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": 49, @@ -13092,54 +13072,74 @@ "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 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": 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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "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" } ], "apiDocumentation": [ @@ -13205,14 +13205,19 @@ }, "criteriaMet": [ { - "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 29, @@ -13220,14 +13225,24 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 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": 173, @@ -13235,19 +13250,19 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 56, @@ -13260,75 +13275,60 @@ "title": "CPOE - Laboratory" }, { - "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": 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, "number": "170.315 (d)(6)", "title": "Emergency Access" }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, { - "id": 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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "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-dev.cloudmd365.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://fhir-dev.cloudmd365.com/api/documentation" } @@ -13370,9 +13370,9 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 59, @@ -13380,34 +13380,39 @@ "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 36, @@ -13415,14 +13420,19 @@ "title": "Integrity" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 56, @@ -13430,14 +13440,14 @@ "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 29, @@ -13445,24 +13455,14 @@ "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": 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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 2, @@ -13470,9 +13470,9 @@ "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": 172, @@ -13480,39 +13480,34 @@ "title": "Clinical Quality Measures - Report" }, { - "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": 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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 176, @@ -13520,19 +13515,14 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 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": 3, @@ -13540,30 +13530,32 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "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" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.compulinkadvantage.com/compulink-fhir-api-documentation/" - }, { "criterion": { "id": 181, @@ -13579,6 +13571,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://cbsmail2.compulink-software.com/cbsscripts/xe3/api/dataconapi.exe/api/help" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.compulinkadvantage.com/compulink-fhir-api-documentation/" } ], "acb": "Drummond Group" @@ -13618,44 +13618,54 @@ }, "criteriaMet": [ { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 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": 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": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 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": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "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, @@ -13668,39 +13678,34 @@ "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "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": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 168, @@ -13708,9 +13713,14 @@ "title": "Security Tags - Summary of Care - Send" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 171, @@ -13718,9 +13728,9 @@ "title": "Electronic Health Information Export" }, { - "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": 29, @@ -13728,19 +13738,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" - }, - { - "id": 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": 180, @@ -13748,29 +13748,29 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ @@ -13784,17 +13784,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://dynamicfhirpresentation.dynamicfhirsandbox.com/dhithealth/practiceone/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://dynamicfhirpresentation.dynamicfhirsandbox.com/dhithealth/practiceone/r4/Home/ApiDocumentation" } @@ -13836,34 +13836,29 @@ }, "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": 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": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 35, @@ -13871,39 +13866,59 @@ "title": "End-User Device Encryption" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 177, @@ -13911,29 +13926,29 @@ "title": "Multi-Factor Authentication" }, { - "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 44, @@ -13946,34 +13961,24 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "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": 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": 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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 51, @@ -13984,27 +13989,22 @@ "id": 13, "number": "170.315 (a)(13)", "title": "Patient-Specific Education Resources" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://api.dynamicfhir.com/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://api.dynamicfhir.com/Home/ApiDocumentation" }, @@ -14054,85 +14054,77 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 182, "number": "170.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": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, - { - "id": 33, - "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": 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": 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": 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": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://fhir.developers.cozeva.com/" - }, { "criterion": { "id": 181, @@ -14148,6 +14140,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://fhir.developers.cozeva.com/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhir.developers.cozeva.com/" } ], "acb": "Drummond Group" @@ -14187,69 +14187,24 @@ }, "criteriaMet": [ { - "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": 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": 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": 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": 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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 51, @@ -14262,54 +14217,54 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 180, @@ -14317,14 +14272,19 @@ "title": "Consolidated CDA Creation Performance" }, { - "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": 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, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 15, @@ -14332,14 +14292,49 @@ "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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 177, @@ -14347,75 +14342,80 @@ "title": "Multi-Factor Authentication" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, { "id": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.qualifacts.com/api-documentation/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.qualifacts.com/api-documentation/" }, @@ -14465,59 +14465,59 @@ }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 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": 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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 32, @@ -14525,29 +14525,9 @@ "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 4, @@ -14555,34 +14535,39 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 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": 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": 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": 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": 56, @@ -14590,34 +14575,39 @@ "title": "Application Access - Patient Selection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 15, @@ -14625,44 +14615,54 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ @@ -14728,64 +14728,64 @@ }, "criteriaMet": [ { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "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": 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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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": 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": 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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 1, @@ -14798,74 +14798,79 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 173, @@ -14873,14 +14878,19 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 51, @@ -14888,29 +14898,19 @@ "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" } ], "apiDocumentation": [ @@ -14924,17 +14924,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": "http://www.crystalpm.com/APIDocumentation.pdf" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "http://www.crystalpm.com/APIDocumentation.pdf" } @@ -14975,80 +14975,115 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, { "id": 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": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 35, - "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": 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": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, { - "id": 44, - "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": 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": 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": 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": 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": 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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 9, @@ -15056,19 +15091,24 @@ "title": "Clinical Decision Support" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 2, @@ -15076,24 +15116,14 @@ "title": "CPOE - Laboratory" }, { - "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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "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": 52, @@ -15101,29 +15131,29 @@ "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": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 181, @@ -15131,59 +15161,29 @@ "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": 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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 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, @@ -15194,17 +15194,17 @@ "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.curemd.com/developer/fhir-apis.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.curemd.com/developer/fhir-apis.pdf" }, @@ -15253,55 +15253,40 @@ "name": "Withdrawn by ONC-ACB" }, "criteriaMet": [ - { - "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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 11, @@ -15309,14 +15294,14 @@ "title": "Smoking Status" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { "id": 13, @@ -15324,34 +15309,19 @@ "title": "Patient-Specific Education Resources" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 53, @@ -15359,49 +15329,34 @@ "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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 173, @@ -15409,9 +15364,9 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { "id": 54, @@ -15419,14 +15374,39 @@ "title": "Accessibility-Centered Design" }, { - "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { "id": 165, @@ -15434,74 +15414,94 @@ "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 21, "number": "170.315 (b)(6)", "title": "Data Export" }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 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": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ @@ -15567,39 +15567,19 @@ }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 56, @@ -15607,39 +15587,39 @@ "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": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 165, @@ -15647,70 +15627,90 @@ "title": "Transitions of Care" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, + { + "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": 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": 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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 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": 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": 39, "number": "170.315 (d)(11)", "title": "Accounting of Disclosures" }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, { "id": 3, "number": "170.315 (a)(3)", @@ -15722,42 +15722,42 @@ "title": "Clinical Quality Measures - Filter" }, { - "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "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" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.coresolutionsinc.com/web-service-api-documentation/" }, @@ -15771,9 +15771,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.coresolutionsinc.com/web-service-api-documentation/" } @@ -15815,34 +15815,24 @@ }, "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": 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": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "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": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 1, @@ -15850,64 +15840,59 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 169, @@ -15915,14 +15900,9 @@ "title": "Security Tags - Summary of Care - Receive" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 165, @@ -15930,14 +15910,14 @@ "title": "Transitions of Care" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { "id": 167, @@ -15945,19 +15925,24 @@ "title": "Electronic Prescribing" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 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, @@ -15965,9 +15950,14 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { "id": 46, @@ -15975,39 +15965,44 @@ "title": "Transmission to Cancer Registries" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 179, @@ -16015,19 +16010,14 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "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": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "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": 52, @@ -16035,9 +16025,9 @@ "title": "Safety-Enhanced Design" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 15, @@ -16045,25 +16035,27 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 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://app.swaggerhub.com/apis-docs/Cyfluent/ProviderPortalApi/3.3#/FHIR/fhir" - }, { "criterion": { "id": 56, @@ -16079,6 +16071,14 @@ "title": "Application Access - All Data Request" }, "value": "https://app.swaggerhub.com/apis-docs/Cyfluent/ProviderPortalApi/3.3#/FHIR/fhir" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://app.swaggerhub.com/apis-docs/Cyfluent/ProviderPortalApi/3.3#/FHIR/fhir" } ], "acb": "Drummond Group" @@ -16118,24 +16118,14 @@ }, "criteriaMet": [ { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 171, @@ -16143,64 +16133,54 @@ "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" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 29, @@ -16208,14 +16188,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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 33, @@ -16223,9 +16198,29 @@ "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 54, @@ -16233,14 +16228,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 51, @@ -16248,34 +16248,34 @@ "title": "Automated Measure Calculation" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 35, @@ -16283,12 +16283,20 @@ "title": "End-User Device Encryption" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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" + }, + "value": "http://podiatry.doxemr.net/DoxExtAPI/DOXAPI-Application-Access.pdf" + }, { "criterion": { "id": 182, @@ -16304,14 +16312,6 @@ "title": "Application Access - Patient Selection" }, "value": "http://podiatry.doxemr.net/DoxExtAPI/DOXAPI-Application-Access.pdf" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "http://podiatry.doxemr.net/DoxExtAPI/DOXAPI-Application-Access.pdf" } ], "acb": "SLI Compliance" @@ -16351,54 +16351,34 @@ }, "criteriaMet": [ { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" - }, - { - "id": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 33, @@ -16406,169 +16386,159 @@ "title": "Automatic Access Time-out" }, { - "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "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": 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": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 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": 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": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, { "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 39, @@ -16576,17 +16546,55 @@ "title": "Accounting of Disclosures" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, + { + "id": 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": 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://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" + }, { "criterion": { "id": 181, @@ -16602,14 +16610,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" } ], "acb": "Drummond Group" @@ -16644,49 +16644,44 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 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": 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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 2, @@ -16694,84 +16689,94 @@ "title": "CPOE - Laboratory" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 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": 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": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 169, @@ -16779,59 +16784,64 @@ "title": "Security Tags - Summary of Care - Receive" }, { - "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": 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": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 34, @@ -16839,14 +16849,14 @@ "title": "Emergency Access" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 180, @@ -16854,24 +16864,14 @@ "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" } ], "apiDocumentation": [ @@ -16932,99 +16932,99 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 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": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 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": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 21, @@ -17032,24 +17032,24 @@ "title": "Data Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 15, @@ -17057,114 +17057,114 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "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": 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": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ @@ -17178,17 +17178,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://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" } @@ -17230,29 +17230,9 @@ }, "criteriaMet": [ { - "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 42, @@ -17265,14 +17245,19 @@ "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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 44, @@ -17280,24 +17265,34 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 182, @@ -17305,24 +17300,24 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 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": 176, @@ -17330,44 +17325,44 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 53, @@ -17375,69 +17370,74 @@ "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": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ @@ -17449,14 +17449,6 @@ }, "value": "https://docs.drcloudemr.com:9443/display/DRCLOUD/End+User+DrCloudEHR+MU3+API+Documentation" }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://drcloudehr.com/drcloudehr-api-documentation/" - }, { "criterion": { "id": 56, @@ -17464,6 +17456,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://docs.drcloudemr.com:9443/display/DRCLOUD/End+User+DrCloudEHR+MU3+API+Documentation" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://drcloudehr.com/drcloudehr-api-documentation/" } ], "acb": "SLI Compliance" @@ -17503,14 +17503,14 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 33, @@ -17518,19 +17518,59 @@ "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": 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": 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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 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, @@ -17538,24 +17578,19 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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": 181, @@ -17563,14 +17598,9 @@ "title": "Application Access - All Data Request" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 36, @@ -17578,29 +17608,29 @@ "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 177, @@ -17608,9 +17638,19 @@ "title": "Multi-Factor Authentication" }, { - "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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 34, @@ -17623,59 +17663,19 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" } ], "apiDocumentation": [ @@ -17741,49 +17741,39 @@ }, "criteriaMet": [ { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 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": 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": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 35, @@ -17791,39 +17781,34 @@ "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": 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": 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": 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": 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": 166, @@ -17831,64 +17816,69 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 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": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 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": 173, @@ -17896,44 +17886,54 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ @@ -17999,39 +17999,39 @@ }, "criteriaMet": [ { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 174, @@ -18039,9 +18039,49 @@ "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 176, @@ -18049,24 +18089,19 @@ "title": "Encrypt Authentication Credentials" }, { - "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 35, @@ -18074,14 +18109,14 @@ "title": "End-User Device Encryption" }, { - "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 42, @@ -18089,39 +18124,29 @@ "title": "Patient Health Information Capture" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 56, @@ -18129,49 +18154,24 @@ "title": "Application Access - Patient Selection" }, { - "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ @@ -18185,17 +18185,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://openapi.ehnote.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://openapi.ehnote.com/" } @@ -18237,49 +18237,29 @@ }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 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": 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": 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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 181, @@ -18287,59 +18267,64 @@ "title": "Application Access - All Data Request" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 35, @@ -18347,39 +18332,39 @@ "title": "End-User Device Encryption" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 177, @@ -18387,45 +18372,60 @@ "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "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://fhirpt-stage.officeally.com/officeally/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://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" }, @@ -18470,39 +18470,44 @@ }, "criteriaMet": [ { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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": 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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 52, @@ -18510,79 +18515,59 @@ "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 51, @@ -18590,9 +18575,9 @@ "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": 54, @@ -18600,52 +18585,75 @@ "title": "Accessibility-Centered Design" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" + }, { "criterion": { "id": 56, @@ -18661,14 +18669,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -18708,49 +18708,44 @@ }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "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": 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": 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": 53, @@ -18758,9 +18753,14 @@ "title": "Quality Management System" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 29, @@ -18768,29 +18768,24 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 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": 54, @@ -18798,29 +18793,44 @@ "title": "Accessibility-Centered Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 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, @@ -18828,29 +18838,29 @@ "title": "Demographics" }, { - "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 175, @@ -18858,80 +18868,62 @@ "title": "Auditing Actions on Health Information" }, { - "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": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 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": 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": 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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 165, + "number": "170.315 (b)(1)", + "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": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.ehryourway.com/api" - }, { "criterion": { "id": 182, @@ -18947,6 +18939,14 @@ "title": "Application Access - All Data Request" }, "value": "https://www.ehryourway.com/api" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.ehryourway.com/api" } ], "acb": "SLI Compliance" @@ -18986,14 +18986,14 @@ }, "criteriaMet": [ { - "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 25, @@ -19001,39 +19001,34 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 32, - "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 53, @@ -19041,29 +19036,34 @@ "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 173, @@ -19071,64 +19071,64 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 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": 171, @@ -19141,29 +19141,29 @@ "title": "Audit Report(s)" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 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" } ], "apiDocumentation": [ @@ -19177,17 +19177,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.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,54 +19224,54 @@ }, "criteriaMet": [ { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 181, - "number": "170.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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 29, @@ -19279,44 +19279,49 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 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, + "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 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": 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": 33, @@ -19324,74 +19329,64 @@ "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 2, @@ -19399,35 +19394,32 @@ "title": "CPOE - Laboratory" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://exscribe-prod-fhir.ema-api.com/modmed/root/r4/Home/ApiDocumentation" - }, { "criterion": { "id": 181, @@ -19443,6 +19435,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://exscribemobile.com/MU/EhrApiV01/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://exscribe-prod-fhir.ema-api.com/modmed/root/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -19477,74 +19477,69 @@ }, "criteriaMet": [ { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 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": 4, @@ -19552,89 +19547,89 @@ "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": 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": 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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 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": 182, + "number": "170.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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 53, @@ -19647,14 +19642,19 @@ "title": "Clinical Decision Support" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ @@ -19668,17 +19668,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.modmed.com/public-api-v2/" }, { "criterion": { - "id": 56, - "number": "170.315 (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.modmed.com/public-api-v2/" } @@ -19714,30 +19714,45 @@ "name": "Active" }, "criteriaMet": [ + { + "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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 182, @@ -19745,54 +19760,59 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 1, @@ -19800,29 +19820,39 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 42, @@ -19835,9 +19865,14 @@ "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 36, @@ -19845,29 +19880,24 @@ "title": "Integrity" }, { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 37, @@ -19875,42 +19905,28 @@ "title": "Trusted Connection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + } + ], + "apiDocumentation": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.modmed.com/public-api-v2/" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.modmed.com/public-api-v2/" }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - } - ], - "apiDocumentation": [ { "criterion": { "id": 182, @@ -19918,22 +19934,6 @@ "title": "Standardized API for Patient and Population Services" }, "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/" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.modmed.com/public-api-v2/" } ], "acb": "Drummond Group" @@ -19972,85 +19972,100 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 174, @@ -20058,54 +20073,39 @@ "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 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": 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" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" } ], "apiDocumentation": [ @@ -20171,69 +20171,39 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 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": 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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 171, @@ -20241,39 +20211,44 @@ "title": "Electronic Health Information Export" }, { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 54, @@ -20281,19 +20256,9 @@ "title": "Accessibility-Centered Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 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, @@ -20301,24 +20266,19 @@ "title": "Electronic Prescribing" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 37, @@ -20326,19 +20286,49 @@ "title": "Trusted Connection" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 25, @@ -20346,14 +20336,19 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 56, @@ -20361,24 +20356,29 @@ "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 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": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" } ], "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.elationhealth.com/reference" + "value": "https://docs.elationhealth.com/reference/introduction" }, { "criterion": { @@ -20390,11 +20390,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://docs.elationhealth.com/reference/introduction" + "value": "https://docs.elationhealth.com/reference" } ], "acb": "Drummond Group" @@ -20433,36 +20433,6 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, { "id": 9, "number": "170.315 (a)(9)", @@ -20474,39 +20444,34 @@ "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 51, @@ -20514,44 +20479,49 @@ "title": "Automated Measure Calculation" }, { - "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 43, @@ -20559,44 +20529,44 @@ "title": "Transmission to Immunization Registries" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 52, @@ -20604,34 +20574,64 @@ "title": "Safety-Enhanced Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://apitest.enablemyhealth.com/" + "value": "https://api.enablemyhealth.com" }, { "criterion": { @@ -20643,11 +20643,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://api.enablemyhealth.com" + "value": "https://apitest.enablemyhealth.com/" } ], "acb": "SLI Compliance" @@ -20686,110 +20686,65 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "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": 168, "number": "170.315 (b)(7)", "title": "Security Tags - Summary of Care - Send" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 15, @@ -20797,74 +20752,99 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, { "id": 170, "number": "170.315 (b)(9)", "title": "Care Plan" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 46, @@ -20872,84 +20852,104 @@ "title": "Transmission to Cancer Registries" }, { - "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": 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": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 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": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 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": 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" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.endosoft.com/endosoft_documents/endovault-ehr-3/170_315_g8_g9_applicationaccess.pdf" + "value": "https://www.endosoft.com/fhir" }, { "criterion": { @@ -20961,11 +20961,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://www.endosoft.com/fhir" + "value": "https://www.endosoft.com/endosoft_documents/endovault-ehr-3/170_315_g8_g9_applicationaccess.pdf" } ], "acb": "SLI Compliance" @@ -21005,29 +21005,39 @@ }, "criteriaMet": [ { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 4, @@ -21035,34 +21045,34 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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, + "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 172, @@ -21070,29 +21080,24 @@ "title": "Clinical Quality Measures - Report" }, { - "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 54, @@ -21100,39 +21105,39 @@ "title": "Accessibility-Centered Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 178, @@ -21140,44 +21145,44 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 5, @@ -21185,14 +21190,9 @@ "title": "Demographics" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ @@ -21206,17 +21206,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://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://open.epic.com/Interface/FHIR" } @@ -21253,14 +21253,14 @@ }, "criteriaMet": [ { - "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 54, @@ -21268,19 +21268,14 @@ "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 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": 180, @@ -21288,19 +21283,14 @@ "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 35, @@ -21308,14 +21298,19 @@ "title": "End-User Device Encryption" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 52, @@ -21323,45 +21318,25 @@ "title": "Safety-Enhanced Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "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": 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": 3, "number": "170.315 (a)(3)", @@ -21373,9 +21348,34 @@ "title": "Transmission to Immunization Registries" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 9, @@ -21383,19 +21383,19 @@ "title": "Clinical Decision Support" }, { - "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 2, @@ -21403,44 +21403,44 @@ "title": "CPOE - Laboratory" }, { - "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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ @@ -21454,17 +21454,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://open.epic.com/Interface/FHIR" } @@ -21500,60 +21500,115 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, - { - "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": 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": 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": 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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 180, @@ -21561,19 +21616,19 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 166, @@ -21581,19 +21636,19 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 3, @@ -21601,44 +21656,14 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "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" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 53, @@ -21646,65 +21671,40 @@ "title": "Quality Management System" }, { - "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": 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, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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://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" }, @@ -21749,19 +21749,29 @@ }, "criteriaMet": [ { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 32, @@ -21769,29 +21779,44 @@ "title": "Amendments" }, { - "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 26, @@ -21799,49 +21824,49 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 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": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 173, @@ -21849,24 +21874,24 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 59, @@ -21874,19 +21899,19 @@ "title": "Direct Project" }, { - "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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 166, @@ -21894,14 +21919,9 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 176, @@ -21909,50 +21929,30 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 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" } ], "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" }, @@ -21997,39 +21997,39 @@ }, "criteriaMet": [ { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 181, @@ -22037,44 +22037,49 @@ "title": "Application Access - All Data Request" }, { - "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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 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": 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": 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": 165, @@ -22082,19 +22087,29 @@ "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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 34, @@ -22102,39 +22117,39 @@ "title": "Emergency Access" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 167, @@ -22142,75 +22157,60 @@ "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": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://open.epic.com/Interface/FHIR" }, @@ -22255,14 +22255,29 @@ }, "criteriaMet": [ { - "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "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": 29, @@ -22270,9 +22285,34 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 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": 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": 34, @@ -22285,19 +22325,9 @@ "title": "Trusted Connection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 165, @@ -22305,39 +22335,34 @@ "title": "Transitions of Care" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 182, @@ -22345,19 +22370,19 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 3, @@ -22365,44 +22390,39 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 172, @@ -22410,39 +22430,19 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" } ], "apiDocumentation": [ @@ -22456,17 +22456,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://open.epic.com/Interface/FHIR" } @@ -22503,24 +22503,24 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 181, @@ -22528,34 +22528,49 @@ "title": "Application Access - All Data Request" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 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": 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": 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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 56, @@ -22563,150 +22578,135 @@ "title": "Application Access - Patient Selection" }, { - "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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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, + "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - } - ], - "apiDocumentation": [ + } + ], + "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" }, @@ -22751,114 +22751,109 @@ }, "criteriaMet": [ { - "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": 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": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 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": 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": 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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 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": 21, + "number": "170.315 (b)(6)", + "title": "Data 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 172, @@ -22866,69 +22861,74 @@ "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "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": 52, @@ -22936,17 +22936,17 @@ "title": "Safety-Enhanced Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "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" }, @@ -22960,9 +22960,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://open.epic.com/Interface/FHIR" } @@ -22999,39 +22999,19 @@ }, "criteriaMet": [ { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 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, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 52, @@ -23039,34 +23019,19 @@ "title": "Safety-Enhanced Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 180, @@ -23074,9 +23039,14 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 5, @@ -23084,24 +23054,9 @@ "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 51, @@ -23109,19 +23064,19 @@ "title": "Automated Measure Calculation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 181, @@ -23129,9 +23084,19 @@ "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 35, @@ -23139,9 +23104,29 @@ "title": "End-User Device Encryption" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 171, @@ -23149,14 +23134,19 @@ "title": "Electronic Health Information Export" }, { - "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": 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": 173, @@ -23164,14 +23154,19 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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, @@ -23179,30 +23174,35 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" } ], "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" }, @@ -23247,145 +23247,155 @@ }, "criteriaMet": [ { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and 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": 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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, { "id": 36, "number": "170.315 (d)(8)", @@ -23397,60 +23407,50 @@ "title": "End-User Device Encryption" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 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": 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" }, @@ -23495,19 +23495,29 @@ }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 171, + "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 173, @@ -23515,9 +23525,9 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 43, @@ -23525,34 +23535,34 @@ "title": "Transmission to Immunization Registries" }, { - "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": 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": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 2, @@ -23560,69 +23570,49 @@ "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": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 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": 42, @@ -23630,19 +23620,14 @@ "title": "Patient Health Information Capture" }, { - "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": 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": 177, @@ -23650,24 +23635,29 @@ "title": "Multi-Factor Authentication" }, { - "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 172, @@ -23675,22 +23665,32 @@ "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": 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": 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://open.epic.com/Interface/FHIR" }, @@ -23704,9 +23704,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://open.epic.com/Interface/FHIR" } @@ -23743,24 +23743,39 @@ }, "criteriaMet": [ { - "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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 32, @@ -23768,19 +23783,19 @@ "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 43, @@ -23788,54 +23803,39 @@ "title": "Transmission to Immunization Registries" }, { - "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": 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": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 181, @@ -23843,49 +23843,54 @@ "title": "Application Access - All Data Request" }, { - "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 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": 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": 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": 33, @@ -23893,52 +23898,47 @@ "title": "Automatic Access Time-out" }, { - "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": 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": 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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "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" }, @@ -23952,9 +23952,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" } @@ -23991,34 +23991,34 @@ }, "criteriaMet": [ { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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, @@ -24026,49 +24026,59 @@ "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": 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": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 165, @@ -24076,79 +24086,74 @@ "title": "Transitions of Care" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 180, @@ -24156,14 +24161,9 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 36, @@ -24171,30 +24171,30 @@ "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://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" }, @@ -24239,29 +24239,24 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 34, + "number": "170.315 (d)(6)", + "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": 33, @@ -24269,49 +24264,49 @@ "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 59, @@ -24319,29 +24314,19 @@ "title": "Direct Project" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 12, @@ -24354,69 +24339,79 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 2, + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 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": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 29, @@ -24424,19 +24419,24 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" + }, + { + "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": [ @@ -24502,44 +24502,34 @@ }, "criteriaMet": [ { - "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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization 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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 9, @@ -24547,34 +24537,34 @@ "title": "Clinical Decision Support" }, { - "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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 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": 171, @@ -24582,34 +24572,29 @@ "title": "Electronic Health Information 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 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": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 32, @@ -24617,19 +24602,9 @@ "title": "Amendments" }, { - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 34, @@ -24637,19 +24612,24 @@ "title": "Emergency Access" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 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": 33, @@ -24657,14 +24637,34 @@ "title": "Automatic Access Time-out" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ @@ -24678,17 +24678,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://datalinksoftware.com/DataLink-FHIR-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://datalinksoftware.com/DataLink-FHIR-API-Documentation.html" } @@ -24698,7 +24698,7 @@ ] }, { - "listSourceURL": "https://fhir.myeyecarerecords.com/fhir-endpoints", + "listSourceURL": "https://smartonfhir.myeyecarerecords.com/fhir/Endpoint?_format=application/fhir+json\u0026status=active", "softwareProducts": [ { "id": 9988, @@ -24730,64 +24730,64 @@ }, "criteriaMet": [ { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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": 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": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 178, @@ -24795,29 +24795,34 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 5, @@ -24825,24 +24830,29 @@ "title": "Demographics" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 9, @@ -24850,65 +24860,47 @@ "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": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "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" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://fhir.myeyecarerecords.com/api" - }, { "criterion": { "id": 181, @@ -24924,6 +24916,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://fhir.myeyecarerecords.com/api" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://fhir.myeyecarerecords.com/api" } ], "acb": "Drummond Group" @@ -24962,6 +24962,21 @@ "name": "Active" }, "criteriaMet": [ + { + "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, { "id": 29, "number": "170.315 (d)(1)", @@ -24973,14 +24988,9 @@ "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 177, @@ -24993,22 +25003,12 @@ "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - } - ], - "apiDocumentation": [ + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + } + ], + "apiDocumentation": [ { "criterion": { "id": 182, @@ -25055,74 +25055,49 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 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": 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": 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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 177, @@ -25130,19 +25105,19 @@ "title": "Multi-Factor Authentication" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 56, @@ -25150,29 +25125,24 @@ "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 2, @@ -25180,9 +25150,9 @@ "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 36, @@ -25190,24 +25160,34 @@ "title": "Integrity" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 178, @@ -25215,19 +25195,29 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 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": 54, @@ -25235,32 +25225,50 @@ "title": "Accessibility-Centered 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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "http://academy.practicesuite.com/mu-api/" + }, { "criterion": { "id": 182, @@ -25276,14 +25284,6 @@ "title": "Application Access - Patient Selection" }, "value": "http://academy.practicesuite.com/mu-api/" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "http://academy.practicesuite.com/mu-api/" } ], "acb": "SLI Compliance" @@ -25318,19 +25318,19 @@ }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 53, @@ -25338,74 +25338,59 @@ "title": "Quality Management System" }, { - "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": 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": 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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 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": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 4, @@ -25413,44 +25398,49 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 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": 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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "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": 52, @@ -25458,39 +25448,34 @@ "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 35, @@ -25498,39 +25483,54 @@ "title": "End-User Device Encryption" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 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" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://academy.practicesuite.com/practicesuite-ehr-fhir-api/" + "value": "http://academy.practicesuite.com/mu-api/" }, { "criterion": { @@ -25542,11 +25542,11 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "http://academy.practicesuite.com/mu-api/" + "value": "https://academy.practicesuite.com/practicesuite-ehr-fhir-api/" } ], "acb": "SLI Compliance" @@ -25586,24 +25586,24 @@ }, "criteriaMet": [ { - "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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 42, @@ -25611,29 +25611,54 @@ "title": "Patient Health Information Capture" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 176, @@ -25645,20 +25670,40 @@ "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 54, @@ -25666,19 +25711,19 @@ "title": "Accessibility-Centered 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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 165, @@ -25686,59 +25731,14 @@ "title": "Transitions of Care" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 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": 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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" } ], "apiDocumentation": [ @@ -25752,17 +25752,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://careconnect-uat.netsmartcloud.com/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://careconnect-uat.netsmartcloud.com/" } @@ -25799,14 +25799,14 @@ }, "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": 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, @@ -25814,19 +25814,14 @@ "title": "Trusted Connection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 167, @@ -25834,9 +25829,19 @@ "title": "Electronic Prescribing" }, { - "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 182, @@ -25844,74 +25849,79 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, { "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 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": 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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 32, @@ -25919,19 +25929,19 @@ "title": "Amendments" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 44, @@ -25939,39 +25949,44 @@ "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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, + "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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 54, @@ -25979,32 +25994,17 @@ "title": "Accessibility-Centered Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 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" } ], "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/" }, @@ -26018,9 +26018,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://careconnect-uat.netsmartcloud.com/" } @@ -26057,34 +26057,64 @@ }, "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": 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": 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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 5, @@ -26092,59 +26122,54 @@ "title": "Demographics" }, { - "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": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 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": 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": 59, @@ -26157,9 +26182,9 @@ "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": 167, @@ -26167,29 +26192,9 @@ "title": "Electronic Prescribing" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 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, @@ -26197,24 +26202,19 @@ "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" + "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": 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, @@ -26222,9 +26222,9 @@ "title": "Family Health History" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 2, @@ -26235,11 +26235,11 @@ "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://careconnect.netsmartcloud.com/" + "value": "https://careconnect-uat.netsmartcloud.com/" }, { "criterion": { @@ -26251,11 +26251,11 @@ }, { "criterion": { - "id": 181, - "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/" + "value": "https://careconnect.netsmartcloud.com/" } ], "acb": "Drummond Group" @@ -26290,24 +26290,24 @@ }, "criteriaMet": [ { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 9, @@ -26315,29 +26315,24 @@ "title": "Clinical Decision Support" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "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": 166, @@ -26350,44 +26345,69 @@ "title": "Consolidated CDA Creation Performance" }, { - "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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 12, @@ -26395,29 +26415,39 @@ "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 181, @@ -26425,9 +26455,9 @@ "title": "Application Access - All Data Request" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 56, @@ -26435,52 +26465,30 @@ "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": 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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://careconnect-uat.netsmartcloud.com/" + }, { "criterion": { "id": 182, @@ -26496,14 +26504,6 @@ "title": "Application Access - All Data Request" }, "value": "https://careconnect-uat.netsmartcloud.com/" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://careconnect-uat.netsmartcloud.com/" } ], "acb": "Drummond Group" @@ -26543,19 +26543,19 @@ }, "criteriaMet": [ { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 42, @@ -26568,44 +26568,19 @@ "title": "End-User Device Encryption" }, { - "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": 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": 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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 41, @@ -26613,9 +26588,14 @@ "title": "Secure Messaging" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 173, @@ -26623,84 +26603,84 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "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": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 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": 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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 5, @@ -26708,19 +26688,24 @@ "title": "Demographics" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 51, @@ -26728,37 +26713,44 @@ "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "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://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" + "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" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 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": "http://medinfo-fhir-api-documentation.s3-website-us-west-2.amazonaws.com/" + "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" }, { "criterion": { @@ -26767,6 +26759,14 @@ "title": "Application Access - All Data Request" }, "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://medinfo-fhir-api-documentation.s3-website-us-west-2.amazonaws.com/" } ], "acb": "Drummond Group" @@ -26801,19 +26801,14 @@ }, "criteriaMet": [ { - "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 181, @@ -26821,19 +26816,29 @@ "title": "Application Access - All Data Request" }, { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 177, @@ -26841,19 +26846,24 @@ "title": "Multi-Factor Authentication" }, { - "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 39, @@ -26861,39 +26871,44 @@ "title": "Accounting of Disclosures" }, { - "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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 174, @@ -26901,9 +26916,14 @@ "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { "id": 29, @@ -26911,24 +26931,29 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 54, @@ -26936,9 +26961,9 @@ "title": "Accessibility-Centered Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 166, @@ -26946,44 +26971,19 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ @@ -26995,14 +26995,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": 181, @@ -27010,6 +27002,14 @@ "title": "Application Access - All Data Request" }, "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://medinfo-fhir-api-documentation.s3-website-us-west-2.amazonaws.com/" } ], "acb": "Drummond Group" @@ -27044,39 +27044,9 @@ }, "criteriaMet": [ { - "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 54, @@ -27084,14 +27054,14 @@ "title": "Accessibility-Centered Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 29, @@ -27104,24 +27074,34 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 32, @@ -27129,9 +27109,9 @@ "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 173, @@ -27144,14 +27124,24 @@ "title": "Accounting of Disclosures" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { "id": 181, @@ -27159,9 +27149,14 @@ "title": "Application Access - All Data Request" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 14, @@ -27169,64 +27164,69 @@ "title": "Implantable Device List" }, { - "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": 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": 176, - "number": "170.315 (d)(12)", - "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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ @@ -27292,14 +27292,19 @@ }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 9, @@ -27307,19 +27312,19 @@ "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 4, @@ -27327,24 +27332,24 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 56, @@ -27352,114 +27357,109 @@ "title": "Application Access - Patient Selection" }, { - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 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": 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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ @@ -27525,94 +27525,94 @@ }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 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": 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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 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": 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": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 166, @@ -27620,69 +27620,69 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 3, @@ -27690,69 +27690,69 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 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": 181, + "number": "170.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": 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": 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": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ @@ -27817,35 +27817,20 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 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, @@ -27853,14 +27838,9 @@ "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 4, @@ -27868,9 +27848,24 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "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": 43, @@ -27878,24 +27873,29 @@ "title": "Transmission to Immunization Registries" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 32, @@ -27903,24 +27903,24 @@ "title": "Amendments" }, { - "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 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": 52, @@ -27928,24 +27928,14 @@ "title": "Safety-Enhanced Design" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 166, @@ -27953,34 +27943,34 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 54, @@ -27988,24 +27978,34 @@ "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ @@ -28066,19 +28066,9 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 29, @@ -28086,24 +28076,24 @@ "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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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, @@ -28111,14 +28101,14 @@ "title": "Audit Report(s)" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 173, @@ -28126,29 +28116,44 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 44, @@ -28156,34 +28161,39 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "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": 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, @@ -28191,14 +28201,19 @@ "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": 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": 4, @@ -28206,29 +28221,29 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "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": 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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 172, @@ -28236,35 +28251,12 @@ "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" - }, { "criterion": { "id": 181, @@ -28280,6 +28272,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.sevocity.com/api-terms-fhir-api-cures-technical-documentation/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" } ], "acb": "Drummond Group" @@ -28313,30 +28313,15 @@ "name": "Active" }, "criteriaMet": [ - { - "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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 34, @@ -28344,39 +28329,34 @@ "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 181, @@ -28384,9 +28364,9 @@ "title": "Application Access - All Data Request" }, { - "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, @@ -28394,14 +28374,34 @@ "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 29, @@ -28414,105 +28414,97 @@ "title": "Integrity" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 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": 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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 25, + "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": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" - }, { "criterion": { "id": 182, @@ -28521,6 +28513,14 @@ }, "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/" + }, { "criterion": { "id": 56, @@ -28567,29 +28567,24 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 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, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 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": 9, @@ -28597,44 +28592,39 @@ "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": 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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 26, @@ -28642,29 +28632,29 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 177, @@ -28672,44 +28662,39 @@ "title": "Multi-Factor Authentication" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 53, @@ -28717,42 +28702,65 @@ "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 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": 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://www.sevocity.com/api-terms-g7g9-technical-documentation/" + }, { "criterion": { "id": 182, @@ -28768,14 +28776,6 @@ "title": "Application Access - Patient Selection" }, "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/" } ], "acb": "Drummond Group" @@ -28814,50 +28814,35 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, { "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": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 32, @@ -28865,39 +28850,29 @@ "title": "Amendments" }, { - "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 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": 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": 3, @@ -28905,44 +28880,49 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 54, @@ -28950,34 +28930,29 @@ "title": "Accessibility-Centered Design" }, { - "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": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 44, @@ -28985,54 +28960,54 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 60, @@ -29040,36 +29015,61 @@ "title": "Direct Project, Edge Protocol, and XDR/XDM" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "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" - } - ], - "apiDocumentation": [ + }, { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://api.glaceemr.com/documentation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "criterion": { - "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 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://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" }, { @@ -29118,34 +29118,34 @@ }, "criteriaMet": [ { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 42, @@ -29153,19 +29153,14 @@ "title": "Patient Health Information Capture" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 52, @@ -29173,34 +29168,34 @@ "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 39, @@ -29208,34 +29203,34 @@ "title": "Accounting of Disclosures" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 12, @@ -29243,29 +29238,24 @@ "title": "Family Health History" }, { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 180, @@ -29273,29 +29263,39 @@ "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" } ], "apiDocumentation": [ @@ -29309,17 +29309,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://developers.greenwayhealth.com/developer-platform" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://developers.greenwayhealth.com/developer-platform" } @@ -29356,54 +29356,34 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 165, @@ -29411,39 +29391,39 @@ "title": "Transitions of Care" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 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": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 15, @@ -29451,24 +29431,34 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 56, + "number": "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 54, @@ -29476,24 +29466,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 9, @@ -29501,24 +29486,34 @@ "title": "Clinical Decision Support" }, { - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 4, @@ -29526,22 +29521,35 @@ "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "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": "http://dms.greenwayhealth.com/ApplicationAccess/GreenwayApplicationAccess.pdf" + }, { "criterion": { "id": 181, @@ -29557,14 +29565,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://developers.greenwayhealth.com/developer-platform" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://dms.greenwayhealth.com/ApplicationAccess/GreenwayApplicationAccess.pdf" } ], "acb": "Drummond Group" @@ -29599,29 +29599,44 @@ }, "criteriaMet": [ { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, + { + "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 166, @@ -29629,34 +29644,34 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 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": 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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 54, @@ -29664,14 +29679,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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, @@ -29679,24 +29699,29 @@ "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 29, @@ -29704,39 +29729,29 @@ "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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 21, @@ -29744,24 +29759,19 @@ "title": "Data Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 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": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 37, @@ -29769,19 +29779,9 @@ "title": "Trusted Connection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" } ], "apiDocumentation": [ @@ -29842,39 +29842,44 @@ }, "criteriaMet": [ { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 173, @@ -29882,24 +29887,39 @@ "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 180, @@ -29907,24 +29927,24 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 176, @@ -29932,29 +29952,14 @@ "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": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 53, @@ -29967,19 +29972,19 @@ "title": "Amendments" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 167, @@ -29987,39 +29992,34 @@ "title": "Electronic Prescribing" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" } ], "apiDocumentation": [ @@ -30085,59 +30085,64 @@ }, "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 29, + "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 53, @@ -30145,44 +30150,34 @@ "title": "Quality Management System" }, { - "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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 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": 180, @@ -30190,14 +30185,19 @@ "title": "Consolidated CDA Creation Performance" }, { - "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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 165, @@ -30205,54 +30205,39 @@ "title": "Transitions of Care" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 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": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { "id": 4, @@ -30260,9 +30245,14 @@ "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" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 54, @@ -30270,69 +30260,79 @@ "title": "Accessibility-Centered Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ @@ -30346,17 +30346,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://hcswebportal.corporate.hcsinc.net/HCSClinicals_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://hcswebportal.corporate.hcsinc.net/HCSClinicals_FHIR" } @@ -30393,39 +30393,39 @@ }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 37, @@ -30433,54 +30433,54 @@ "title": "Trusted Connection" }, { - "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "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": 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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 166, @@ -30488,84 +30488,64 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 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": 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": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "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": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 168, @@ -30573,59 +30553,59 @@ "title": "Security Tags - Summary of Care - Send" }, { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 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": 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": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 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": 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, @@ -30633,14 +30613,34 @@ "title": "Clinical Quality Measures - Report" }, { - "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": 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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" } ], "apiDocumentation": [ @@ -30706,14 +30706,9 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 9, @@ -30721,44 +30716,39 @@ "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 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, @@ -30766,9 +30756,14 @@ "title": "Audit Report(s)" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 44, @@ -30776,24 +30771,24 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 176, @@ -30801,44 +30796,39 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 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": 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": 36, @@ -30846,80 +30836,90 @@ "title": "Integrity" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 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": 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": 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": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 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" } ], "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://harrisambulatory.com/caretracker-api-documentation/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://harrisambulatory.com/caretracker-api-documentation/" }, @@ -30969,94 +30969,94 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 165, + "number": "170.315 (b)(1)", + "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": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "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, @@ -31064,24 +31064,24 @@ "title": "CPOE - Diagnostic Imaging" }, { - "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": 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": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 52, @@ -31089,9 +31089,9 @@ "title": "Safety-Enhanced Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 178, @@ -31099,49 +31099,49 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 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": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ @@ -31155,17 +31155,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://cmpl.aidbox.app/documentation" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://cmpl.aidbox.app/documentation" } @@ -31207,19 +31207,9 @@ }, "criteriaMet": [ { - "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 182, @@ -31232,9 +31222,34 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 181, @@ -31242,14 +31257,9 @@ "title": "Application Access - All Data Request" }, { - "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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 33, @@ -31257,29 +31267,29 @@ "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 51, @@ -31287,64 +31297,69 @@ "title": "Automated Measure Calculation" }, { - "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 2, @@ -31352,14 +31367,24 @@ "title": "CPOE - Laboratory" }, { - "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 174, @@ -31367,52 +31392,27 @@ "title": "Audit Report(s)" }, { - "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://amsemr.com/wp-content/uploads/2021/03/APIDirect.pdf" }, @@ -31426,9 +31426,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://amsemr.com/wp-content/uploads/2021/03/APIDirect.pdf" } @@ -31470,59 +31470,69 @@ }, "criteriaMet": [ { - "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": 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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 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": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 54, @@ -31530,79 +31540,79 @@ "title": "Accessibility-Centered Design" }, { - "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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 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": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { "id": 41, @@ -31610,14 +31620,9 @@ "title": "Secure Messaging" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { "id": 7, @@ -31630,97 +31635,100 @@ "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy 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": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, { "id": 11, "number": "170.315 (a)(11)", "title": "Smoking Status" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 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": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "http://ipclinical.com/documentation/IPClinical-api-documentation.pdf" + }, { "criterion": { "id": 56, @@ -31736,14 +31744,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.ipclinical.com/mu-disclosure.html" - }, - { - "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" @@ -31783,104 +31783,104 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 32, - "number": "170.315 (d)(4)", - "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": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 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": 5, @@ -31888,24 +31888,34 @@ "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "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": 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": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 180, @@ -31913,69 +31923,74 @@ "title": "Consolidated CDA Creation Performance" }, { - "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 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": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 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": 53, @@ -31983,40 +31998,17 @@ "title": "Quality Management System" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://ipsemrapi.inpracsys.com/App/web.html#jsintroduction" - }, { "criterion": { "id": 56, @@ -32032,6 +32024,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://inpracsys.com/fhir" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://ipsemrapi.inpracsys.com/App/web.html#jsintroduction" } ], "acb": "SLI Compliance" @@ -32071,9 +32071,14 @@ }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 14, @@ -32081,109 +32086,94 @@ "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 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": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 182, @@ -32191,9 +32181,14 @@ "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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 173, @@ -32201,29 +32196,34 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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, - "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 165, @@ -32231,64 +32231,64 @@ "title": "Transitions of Care" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://qualifacts.com/api-page/platform/insync/insync-fhir.html" + "value": "https://www.qualifacts.com/api-documentation/" }, { "criterion": { @@ -32300,11 +32300,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://www.qualifacts.com/api-documentation/" + "value": "https://qualifacts.com/api-page/platform/insync/insync-fhir.html" } ], "acb": "SLI Compliance" @@ -32343,75 +32343,35 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 54, @@ -32419,34 +32379,29 @@ "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 51, @@ -32454,14 +32409,9 @@ "title": "Automated Measure Calculation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 12, @@ -32469,24 +32419,24 @@ "title": "Family Health History" }, { - "id": 182, - "number": "170.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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 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": 167, @@ -32494,35 +32444,77 @@ "title": "Electronic Prescribing" }, { - "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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" - } - ], - "apiDocumentation": [ + }, { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://integraconnectcms.mwe.cloud/app/uploads/2022/11/FHIR-API-guide.pdf" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + } + ], + "apiDocumentation": [ { "criterion": { "id": 181, @@ -32538,6 +32530,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://integraconnectcms.mwe.cloud/app/uploads/2022/11/FHIR-API-guide.pdf" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://integraconnectcms.mwe.cloud/app/uploads/2022/11/FHIR-API-guide.pdf" } ], "acb": "Drummond Group" @@ -32576,20 +32576,20 @@ "name": "Active" }, "criteriaMet": [ + { + "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": 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, @@ -32597,34 +32597,34 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 42, @@ -32632,9 +32632,9 @@ "title": "Patient Health Information Capture" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 32, @@ -32642,9 +32642,14 @@ "title": "Amendments" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 176, @@ -32652,39 +32657,39 @@ "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 36, @@ -32692,29 +32697,24 @@ "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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ @@ -32728,17 +32728,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://onc.chntechsolutions.com/ic-ehr-fhir-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://onc.chntechsolutions.com/ic-ehr-fhir-api/" } @@ -32779,25 +32779,40 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 182, @@ -32805,29 +32820,24 @@ "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": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 29, @@ -32835,9 +32845,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 32, @@ -32845,42 +32855,32 @@ "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "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" }, @@ -32894,9 +32894,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" } @@ -32933,39 +32933,39 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 180, @@ -32978,62 +32978,62 @@ "title": "Multi-Factor Authentication" }, { - "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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://openapitest.intelichart.com/Help" }, @@ -33047,9 +33047,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://openapitest.intelichart.com/Help" } @@ -33059,11 +33059,11 @@ ] }, { - "listSourceURL": "https://www.nextech.com/developers-portal", + "listSourceURL": "https://www.meditab.com/fhir/endpoints", "softwareProducts": [ { - "id": 11027, - "chplProductNumber": "15.04.04.2051.Inte.08.01.0.221121", + "id": 9739, + "chplProductNumber": "15.99.04.2804.Inte.SP.01.1.181113", "edition": { "id": 3, "name": "2015" @@ -33073,27 +33073,32 @@ "name": "" }, "developer": { - "id": 1052, - "name": "Nextech" + "id": 1805, + "name": "MedPharm Services LLC" }, "product": { - "id": 3655, - "name": "IntelleChartPRO" + "id": 2978, + "name": "Intelligent Medical Software (IMS)" }, "version": { - "id": 8618, - "name": "8" + "id": 7535, + "name": "14.0 SP 1" }, - "certificationDate": "2022-11-21", + "certificationDate": "2018-11-13", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 181, @@ -33101,34 +33106,29 @@ "title": "Application Access - All Data Request" }, { - "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 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": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 54, @@ -33136,19 +33136,19 @@ "title": "Accessibility-Centered Design" }, { - "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": 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": 182, @@ -33156,267 +33156,89 @@ "title": "Standardized API for Patient and Population Services" }, { - "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "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": 165, - "number": "170.315 (b)(1)", - "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": 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": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" - } - ], - "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://nextechsystems.github.io/intellechartapidocspub/r4.html#introduction" }, { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://nextechsystems.github.io/intellechartapidocspub/r4.html#introduction" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://nextechsystems.github.io/intellechartapidocspub/r4.html#introduction" - } - ], - "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://www.meditab.com/fhir/endpoints", - "softwareProducts": [ - { - "id": 9739, - "chplProductNumber": "15.99.04.2804.Inte.SP.01.1.181113", - "edition": { - "id": 3, - "name": "2015" - }, - "practiceType": { - "id": 0, - "name": "" - }, - "developer": { - "id": 1805, - "name": "MedPharm Services LLC" - }, - "product": { - "id": 2978, - "name": "Intelligent Medical Software (IMS)" - }, - "version": { - "id": 7535, - "name": "14.0 SP 1" - }, - "certificationDate": "2018-11-13", - "certificationStatus": { - "id": 1, - "name": "Active" - }, - "criteriaMet": [ { "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, { "id": 46, "number": "170.315 (f)(4)", "title": "Transmission to Cancer Registries" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 56, @@ -33424,44 +33246,9 @@ "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 4, @@ -33469,80 +33256,57 @@ "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": 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": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, { "id": 170, "number": "170.315 (b)(9)", "title": "Care Plan" }, { - "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": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://www.meditab.com/api/" - }, { "criterion": { "id": 182, @@ -33558,6 +33322,14 @@ "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" @@ -33596,26 +33368,31 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, { "id": 175, "number": "170.315 (d)(10)", "title": "Auditing Actions on Health Information" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, { "id": 37, "number": "170.315 (d)(9)", @@ -33626,11 +33403,6 @@ "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": 29, "number": "170.315 (d)(1)", @@ -33684,24 +33456,9 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 173, @@ -33709,74 +33466,59 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "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": 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": 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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 165, @@ -33784,43 +33526,57 @@ "title": "Transitions of Care" }, { - "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" - } - ], - "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://fhirjuno-prod-web.dssinc.com/communityhealthhospitals/01ho/r4/Home/ApiDocumentation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://fhirjuno-prod-web.dssinc.com/communityhealthhospitals/01ho/r4/Home/ApiDocumentation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "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" + } + ], + "apiDocumentation": [ { "criterion": { "id": 182, @@ -33828,6 +33584,22 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://fhirjuno-prod-web.dssinc.com/communityhealthhospitals/01ho/r4/Home/ApiDocumentation" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://fhirjuno-prod-web.dssinc.com/communityhealthhospitals/01ho/r4/Home/ApiDocumentation" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://fhirjuno-prod-web.dssinc.com/communityhealthhospitals/01ho/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -33862,149 +33634,154 @@ }, "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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 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, + "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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 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": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, - { - "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": 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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 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": 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": 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": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 166, @@ -34012,19 +33789,14 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ @@ -34074,39 +33846,24 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 59, @@ -34114,29 +33871,39 @@ "title": "Direct Project" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 42, @@ -34144,39 +33911,34 @@ "title": "Patient Health Information Capture" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "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": 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": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 33, @@ -34184,50 +33946,52 @@ "title": "Automatic Access Time-out" }, { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" - }, { "criterion": { "id": 182, @@ -34243,6 +34007,14 @@ "title": "Application Access - All Data Request" }, "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" @@ -34282,80 +34054,110 @@ }, "criteriaMet": [ { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 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": 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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced 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": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, { "id": 5, "number": "170.315 (a)(5)", @@ -34367,24 +34169,19 @@ "title": "Trusted Connection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 1, @@ -34392,59 +34189,34 @@ "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 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": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ @@ -34494,14 +34266,14 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 182, @@ -34509,29 +34281,29 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered 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": 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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 37, @@ -34539,25 +34311,25 @@ "title": "Trusted Connection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "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.kodjin.com/getting-started-with-standartized-api" }, { "criterion": { - "id": 182, - "number": "170.315 (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" } @@ -34598,40 +34370,35 @@ "name": "Active" }, "criteriaMet": [ - { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 26, @@ -34639,19 +34406,19 @@ "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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, @@ -34659,19 +34426,29 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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": 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": 25, @@ -34684,14 +34461,14 @@ "title": "Demographics" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 51, @@ -34699,74 +34476,69 @@ "title": "Automated Measure Calculation" }, { - "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, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "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": 3, - "number": "170.315 (a)(3)", - "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": 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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 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": 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": 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, @@ -34774,12 +34546,20 @@ "title": "Integrity" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.mdlogic.com/solutions/api-documentation" + }, { "criterion": { "id": 181, @@ -34795,14 +34575,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.mdlogic.com/solutions/api-documentation" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.mdlogic.com/solutions/api-documentation" } ], "acb": "Drummond Group" @@ -34837,34 +34609,24 @@ }, "criteriaMet": [ { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 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": 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": 32, @@ -34872,14 +34634,19 @@ "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 35, @@ -34887,19 +34654,9 @@ "title": "End-User Device Encryption" }, { - "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 25, @@ -34907,44 +34664,34 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 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": 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": 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": 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": 3, @@ -34952,24 +34699,24 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 181, @@ -34977,55 +34724,72 @@ "title": "Application Access - All Data Request" }, { - "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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 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": 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": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - } - ], - "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.mdlogic.com/solutions/api-documentation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + } + ], + "apiDocumentation": [ { "criterion": { "id": 181, @@ -35034,6 +34798,14 @@ }, "value": "https://www.mdlogic.com/solutions/api-documentation" }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.mdlogic.com/solutions/api-documentation" + }, { "criterion": { "id": 56, @@ -35080,59 +34852,74 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 2, @@ -35140,9 +34927,9 @@ "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 174, @@ -35150,77 +34937,70 @@ "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 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, - "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, - "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 170, "number": "170.315 (b)(9)", "title": "Care Plan" }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, - { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" + }, + { + "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://connect.mdops.com/mdlogsdk/smartfhir/apiDocumentation.html" + }, { "criterion": { "id": 181, @@ -35236,14 +35016,6 @@ "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" @@ -35283,39 +35055,34 @@ }, "criteriaMet": [ { - "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 173, @@ -35323,29 +35090,34 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 43, @@ -35353,19 +35125,29 @@ "title": "Transmission to Immunization Registries" }, { - "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 33, @@ -35373,114 +35155,114 @@ "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": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 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": 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": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, { "id": 26, "number": "170.315 (c)(2)", "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 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": 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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 166, @@ -35488,34 +35270,24 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "http://www.mdrhythm.com/MDRWebAPI.pdf" + "value": "http://www.mdrhythm.com/onc-compliance.html" }, { "criterion": { @@ -35527,11 +35299,11 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "http://www.mdrhythm.com/onc-compliance.html" + "value": "http://www.mdrhythm.com/MDRWebAPI.pdf" } ], "acb": "Drummond Group" @@ -35571,24 +35343,19 @@ }, "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 26, @@ -35596,69 +35363,74 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 59, @@ -35666,24 +35438,19 @@ "title": "Direct Project" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 37, @@ -35691,29 +35458,34 @@ "title": "Trusted Connection" }, { - "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 14, @@ -35721,9 +35493,14 @@ "title": "Implantable Device List" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 181, @@ -35731,19 +35508,9 @@ "title": "Application Access - All Data Request" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 35, @@ -35756,17 +35523,22 @@ "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": 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" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.hc2000inc.com/Pages/MDVita_API_Interoperability.htm" }, @@ -35780,9 +35552,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.hc2000inc.com/Pages/MDVita_API_Interoperability.htm" } @@ -35824,14 +35596,19 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 173, @@ -35839,79 +35616,79 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 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": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 174, @@ -35919,34 +35696,29 @@ "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": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 181, @@ -35954,85 +35726,85 @@ "title": "Application Access - All Data Request" }, { - "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 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": 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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 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://emr.ehiconnect.com/Data%20Interop-EHI-Api.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://emr.ehiconnect.com/Data%20Interop-EHI-Api.pdf" }, @@ -36082,44 +35854,34 @@ }, "criteriaMet": [ { - "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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 177, @@ -36127,69 +35889,89 @@ "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 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": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 26, @@ -36197,19 +35979,19 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 5, @@ -36217,19 +35999,19 @@ "title": "Demographics" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 4, @@ -36237,14 +36019,14 @@ "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 182, @@ -36252,14 +36034,9 @@ "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": 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, @@ -36267,39 +36044,34 @@ "title": "Application Access - All Data Request" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 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": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ @@ -36360,49 +36132,49 @@ }, "criteriaMet": [ { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 165, @@ -36410,49 +36182,59 @@ "title": "Transitions of Care" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 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": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 53, @@ -36460,54 +36242,54 @@ "title": "Quality Management System" }, { - "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 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": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 172, @@ -36515,49 +36297,44 @@ "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": 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": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 42, @@ -36565,35 +36342,30 @@ "title": "Patient Health Information Capture" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.medent.com/onc/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.medent.com/onc/" }, @@ -36643,14 +36415,9 @@ }, "criteriaMet": [ { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 166, @@ -36658,29 +36425,24 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "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": 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": 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, @@ -36693,29 +36455,39 @@ "title": "Family Health History" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 14, @@ -36723,14 +36495,19 @@ "title": "Implantable Device List" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 9, @@ -36738,54 +36515,59 @@ "title": "Clinical Decision Support" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 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": 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": 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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 36, @@ -36793,24 +36575,14 @@ "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ @@ -36824,17 +36596,17 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.yourcareinteract.com/documentation" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://developer.yourcareinteract.com/documentation" } @@ -36870,31 +36642,6 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, { "id": 176, "number": "170.315 (d)(12)", @@ -36906,19 +36653,29 @@ "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": 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": 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": 1, @@ -36926,39 +36683,34 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 43, @@ -36966,19 +36718,14 @@ "title": "Transmission to Immunization Registries" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 174, @@ -36986,24 +36733,34 @@ "title": "Audit Report(s)" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 181, @@ -37011,9 +36768,9 @@ "title": "Application Access - All Data Request" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 166, @@ -37021,9 +36778,24 @@ "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": 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": 45, @@ -37031,14 +36803,14 @@ "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ @@ -37104,39 +36876,24 @@ }, "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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 176, @@ -37144,44 +36901,49 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 29, @@ -37189,24 +36951,19 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 56, @@ -37214,24 +36971,24 @@ "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 53, @@ -37239,9 +36996,19 @@ "title": "Quality Management System" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 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": 26, @@ -37249,34 +37016,39 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 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": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ @@ -37337,44 +37109,44 @@ }, "criteriaMet": [ { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 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": 35, @@ -37382,24 +37154,19 @@ "title": "End-User Device Encryption" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 26, @@ -37407,24 +37174,19 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 32, @@ -37432,14 +37194,29 @@ "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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 174, @@ -37447,85 +37224,80 @@ "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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "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" }, { "criterion": { - "id": 56, - "number": "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" }, @@ -37570,9 +37342,24 @@ }, "criteriaMet": [ { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 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, @@ -37580,54 +37367,49 @@ "title": "Safety-Enhanced Design" }, { - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 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": 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": 180, @@ -37635,34 +37417,34 @@ "title": "Consolidated CDA Creation Performance" }, { - "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 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": 28, @@ -37670,44 +37452,34 @@ "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 32, @@ -37715,9 +37487,9 @@ "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": 26, @@ -37725,19 +37497,19 @@ "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ @@ -37798,14 +37570,9 @@ }, "criteriaMet": [ { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 12, @@ -37813,64 +37580,64 @@ "title": "Family Health History" }, { - "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 34, @@ -37878,39 +37645,49 @@ "title": "Emergency Access" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 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": 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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 172, @@ -37923,24 +37700,14 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 1, @@ -37953,32 +37720,37 @@ "title": "Electronic Prescribing" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -37992,9 +37764,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } @@ -38030,85 +37802,50 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, { "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "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, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 39, @@ -38116,19 +37853,14 @@ "title": "Accounting of Disclosures" }, { - "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 2, @@ -38136,44 +37868,79 @@ "title": "CPOE - Laboratory" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, + { + "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": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 181, @@ -38181,29 +37948,34 @@ "title": "Application Access - All Data Request" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" } ], "apiDocumentation": [ @@ -38264,19 +38036,19 @@ }, "criteriaMet": [ { - "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 176, @@ -38284,9 +38056,14 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 1, @@ -38294,104 +38071,104 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 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": 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": 172, @@ -38399,47 +38176,50 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 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": 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" } ], "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, @@ -38455,14 +38235,6 @@ "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" @@ -38497,44 +38269,39 @@ }, "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": 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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 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": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { "id": 5, @@ -38542,34 +38309,34 @@ "title": "Demographics" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 3, @@ -38577,59 +38344,69 @@ "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 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": 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": 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": 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": 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": 2, @@ -38637,47 +38414,42 @@ "title": "CPOE - Laboratory" }, { - "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 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" }, @@ -38691,9 +38463,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://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } @@ -38730,19 +38502,34 @@ }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 172, @@ -38750,69 +38537,54 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 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": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 52, @@ -38820,24 +38592,9 @@ "title": "Safety-Enhanced Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 174, @@ -38845,64 +38602,79 @@ "title": "Audit Report(s)" }, { - "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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": 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" } ], "apiDocumentation": [ @@ -38916,17 +38688,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" } @@ -38963,89 +38735,59 @@ }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "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": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 35, @@ -39053,24 +38795,24 @@ "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 176, @@ -39078,24 +38820,24 @@ "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 2, @@ -39103,42 +38845,72 @@ "title": "CPOE - Laboratory" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -39152,9 +38924,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" } @@ -39191,29 +38963,29 @@ }, "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 182, @@ -39221,9 +38993,14 @@ "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 167, @@ -39231,49 +39008,44 @@ "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 52, @@ -39281,34 +39053,39 @@ "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": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 34, @@ -39316,19 +39093,24 @@ "title": "Emergency Access" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 174, @@ -39336,45 +39118,35 @@ "title": "Audit Report(s)" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -39419,14 +39191,9 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 52, @@ -39434,39 +39201,44 @@ "title": "Safety-Enhanced 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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 181, @@ -39474,34 +39246,19 @@ "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": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 180, @@ -39509,24 +39266,14 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 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": 48, @@ -39534,49 +39281,74 @@ "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, { "id": 26, "number": "170.315 (c)(2)", "title": "Clinical Quality Measures - Import and Calculate" }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 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": 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": 14, @@ -39584,22 +39356,22 @@ "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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" } ], "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" }, @@ -39613,9 +39385,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://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } @@ -39652,14 +39424,14 @@ }, "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": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 167, @@ -39667,9 +39439,14 @@ "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 26, @@ -39677,64 +39454,49 @@ "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": 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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 176, @@ -39742,14 +39504,14 @@ "title": "Encrypt Authentication Credentials" }, { - "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 181, @@ -39757,14 +39519,9 @@ "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 180, @@ -39772,52 +39529,75 @@ "title": "Consolidated CDA Creation Performance" }, { - "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + }, { "criterion": { "id": 182, @@ -39833,14 +39613,6 @@ "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" @@ -39875,24 +39647,14 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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, @@ -39900,29 +39662,24 @@ "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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 3, @@ -39930,39 +39687,24 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 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": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 12, @@ -39970,59 +39712,59 @@ "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 48, @@ -40030,27 +39772,65 @@ "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 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://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + }, { "criterion": { "id": 182, @@ -40066,14 +39846,6 @@ "title": "Application Access - All Data Request" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" @@ -40107,25 +39879,25 @@ "name": "Active" }, "criteriaMet": [ - { - "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 54, @@ -40133,34 +39905,34 @@ "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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, @@ -40168,34 +39940,14 @@ "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 182, @@ -40203,14 +39955,9 @@ "title": "Standardized API for Patient and Population Services" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 42, @@ -40218,9 +39965,9 @@ "title": "Patient Health Information Capture" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 53, @@ -40228,49 +39975,49 @@ "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": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, { - "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 25, @@ -40278,12 +40025,45 @@ "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" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "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://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + }, { "criterion": { "id": 56, @@ -40299,14 +40079,6 @@ "title": "Application Access - All Data Request" }, "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" @@ -40341,34 +40113,29 @@ }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 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": 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": 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": 54, @@ -40376,29 +40143,29 @@ "title": "Accessibility-Centered Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 51, @@ -40406,24 +40173,14 @@ "title": "Automated Measure Calculation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 5, @@ -40431,54 +40188,59 @@ "title": "Demographics" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 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": 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" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 36, @@ -40486,19 +40248,19 @@ "title": "Integrity" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { "id": 9, @@ -40506,14 +40268,24 @@ "title": "Clinical Decision Support" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ @@ -40574,39 +40346,29 @@ }, "criteriaMet": [ { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 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": 180, @@ -40614,40 +40376,55 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, { "id": 181, "number": "170.315 (g)(9)", @@ -40664,9 +40441,9 @@ "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 172, @@ -40674,49 +40451,34 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 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": 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": 36, @@ -40724,19 +40486,19 @@ "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 173, @@ -40744,9 +40506,19 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ @@ -40760,17 +40532,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" } @@ -40806,45 +40578,70 @@ "name": "Active" }, "criteriaMet": [ + { + "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "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": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 52, @@ -40852,14 +40649,29 @@ "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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 1, @@ -40867,19 +40679,14 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 2, @@ -40892,29 +40699,34 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 174, @@ -40926,60 +40738,20 @@ "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": 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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" } ], "apiDocumentation": [ @@ -40993,17 +40765,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://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" } @@ -41040,54 +40812,29 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "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": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "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": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, { - "id": 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": 174, @@ -41095,39 +40842,54 @@ "title": "Audit Report(s)" }, { - "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": 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": 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": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 5, @@ -41135,35 +40897,50 @@ "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "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": 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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, { "id": 181, "number": "170.315 (g)(9)", @@ -41175,19 +40952,14 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 53, @@ -41195,22 +40967,22 @@ "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -41224,9 +40996,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } @@ -41268,29 +41040,24 @@ }, "criteriaMet": [ { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 36, @@ -41298,24 +41065,14 @@ "title": "Integrity" }, { - "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 176, @@ -41323,29 +41080,34 @@ "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 2, @@ -41353,107 +41115,117 @@ "title": "CPOE - Laboratory" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 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": 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": 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": 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": 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": 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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, { "id": 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": 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" - } - ], - "apiDocumentation": [ + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + } + ], + "apiDocumentation": [ { "criterion": { "id": 181, @@ -41516,54 +41288,49 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 42, @@ -41571,9 +41338,14 @@ "title": "Patient Health Information Capture" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 56, @@ -41581,69 +41353,64 @@ "title": "Application Access - Patient Selection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "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, @@ -41651,19 +41418,14 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "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": 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": 54, @@ -41671,37 +41433,47 @@ "title": "Accessibility-Centered Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 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" } ], "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/" }, @@ -41715,9 +41487,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/" } @@ -41758,50 +41530,40 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 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": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 14, @@ -41809,24 +41571,24 @@ "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": 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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 182, @@ -41834,39 +41596,44 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 53, @@ -41874,19 +41641,24 @@ "title": "Quality Management System" }, { - "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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 181, @@ -41894,69 +41666,69 @@ "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ @@ -41970,17 +41742,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://customer.first-insight.com/downloads/forms/MaximEyes-FHIR-API-Documentation.pdf" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://customer.first-insight.com/downloads/forms/MaximEyes-FHIR-API-Documentation.pdf" } @@ -42017,34 +41789,19 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 166, @@ -42052,19 +41809,19 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 33, @@ -42072,39 +41829,24 @@ "title": "Automatic Access Time-out" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 51, @@ -42112,14 +41854,19 @@ "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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 181, @@ -42127,49 +41874,54 @@ "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 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": 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": 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": 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": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 54, @@ -42177,35 +41929,55 @@ "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" } ], "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.first-insight.com/certifications/" }, { "criterion": { - "id": 56, - "number": "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.first-insight.com/certifications/" }, @@ -42255,59 +42027,84 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "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": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, { - "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": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 45, @@ -42315,14 +42112,14 @@ "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 4, @@ -42330,69 +42127,69 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 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": 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": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 26, @@ -42400,14 +42197,9 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 37, @@ -42415,19 +42207,14 @@ "title": "Trusted Connection" }, { - "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": 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": 1, @@ -42435,32 +42222,25 @@ "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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://documents.maximus.care" + }, { "criterion": { "id": 182, @@ -42476,14 +42256,6 @@ "title": "Application Access - Patient Selection" }, "value": "http://documents.maximus.care/" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://documents.maximus.care" } ], "acb": "SLI Compliance" @@ -42523,39 +42295,34 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 56, @@ -42563,19 +42330,14 @@ "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 54, @@ -42583,24 +42345,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 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": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 3, @@ -42608,9 +42365,29 @@ "title": "CPOE - Diagnostic Imaging" }, { - "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 2, @@ -42623,24 +42400,24 @@ "title": "Audit Report(s)" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { "id": 4, @@ -42648,9 +42425,14 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 36, @@ -42658,60 +42440,50 @@ "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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 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": 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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://fhir.mhealthaz.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://fhir.mhealthaz.com" } @@ -42753,39 +42525,19 @@ }, "criteriaMet": [ { - "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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, @@ -42798,39 +42550,34 @@ "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": 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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 2, @@ -42838,19 +42585,29 @@ "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 14, + "number": "170.315 (a)(14)", + "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 5, @@ -42858,19 +42615,24 @@ "title": "Demographics" }, { - "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": 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": 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": 178, @@ -42878,14 +42640,9 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 29, @@ -42893,29 +42650,29 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 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": 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": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { "id": 26, @@ -42923,14 +42680,24 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 53, @@ -42938,30 +42705,27 @@ "title": "Quality Management System" }, { - "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "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://api.medconnecthealth.com/medconnect/basepractice/r4/Home/ApiDocumentation" - }, { "criterion": { "id": 56, @@ -42977,6 +42741,14 @@ "title": "Application Access - All Data Request" }, "value": "https://api.medconnecthealth.com/medconnect/basepractice/r4/Home/ApiDocumentation" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://api.medconnecthealth.com/medconnect/basepractice/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -43016,19 +42788,9 @@ }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 25, @@ -43036,39 +42798,39 @@ "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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 181, @@ -43076,69 +42838,104 @@ "title": "Application Access - All Data Request" }, { - "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 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": 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": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 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": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, + { + "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 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": 32, @@ -43146,9 +42943,9 @@ "title": "Amendments" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 174, @@ -43156,34 +42953,29 @@ "title": "Audit Report(s)" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 15, @@ -43191,50 +42983,30 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 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": "http://www.viewmymed.com/api/usage.php" }, { "criterion": { - "id": 181, - "number": "170.315 (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.viewmymed.com/api/usage.php" }, @@ -43284,24 +43056,34 @@ }, "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": 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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 12, @@ -43309,34 +43091,34 @@ "title": "Family Health History" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 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": 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": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 177, @@ -43344,79 +43126,49 @@ "title": "Multi-Factor Authentication" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, { - "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": 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": 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": 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, @@ -43429,44 +43181,44 @@ "title": "Application Access - All Data Request" }, { - "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 4, @@ -43474,9 +43226,19 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 43, @@ -43484,17 +43246,27 @@ "title": "Transmission to Immunization Registries" }, { - "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://portal.medgenehr.com/medgenweb/guides/MedgenFHIRDeveloperGuide.pdf" }, @@ -43508,9 +43280,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://portal.medgenehr.com/medgenweb/guides/MedgenFHIRDeveloperGuide.pdf" } @@ -43552,9 +43324,19 @@ }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 166, @@ -43562,39 +43344,34 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 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": 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": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 165, @@ -43602,49 +43379,49 @@ "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" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 59, @@ -43652,9 +43429,14 @@ "title": "Direct Project" }, { - "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 56, @@ -43662,24 +43444,29 @@ "title": "Application Access - Patient Selection" }, { - "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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 29, @@ -43687,19 +43474,14 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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, @@ -43707,24 +43489,14 @@ "title": "Amendments" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 9, @@ -43732,9 +43504,9 @@ "title": "Clinical Decision Support" }, { - "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": 35, @@ -43742,30 +43514,30 @@ "title": "End-User Device Encryption" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 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" } ], "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://medi-ehr.com/compliance" }, { "criterion": { - "id": 56, - "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://medi-ehr.com/compliance" }, @@ -43815,54 +43587,54 @@ }, "criteriaMet": [ { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 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": 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": 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": 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": 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": 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": 172, @@ -43870,19 +43642,14 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "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": 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": 168, @@ -43890,9 +43657,9 @@ "title": "Security Tags - Summary of Care - Send" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 45, @@ -43900,64 +43667,64 @@ "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information 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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 180, @@ -43965,19 +43732,29 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "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": 177, @@ -43985,14 +43762,14 @@ "title": "Multi-Factor Authentication" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 4, @@ -44000,19 +43777,14 @@ "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": 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": 176, @@ -44020,25 +43792,17 @@ "title": "Encrypt Authentication Credentials" }, { - "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": 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" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://medifusion.com/public-documentation-for-the-medifusion-patient-access-api/" - }, { "criterion": { "id": 182, @@ -44047,6 +43811,14 @@ }, "value": "https://docs.medifusion.com/" }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://medifusion.com/public-documentation-for-the-medifusion-patient-access-api/" + }, { "criterion": { "id": 181, @@ -44093,44 +43865,54 @@ }, "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": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 37, @@ -44138,69 +43920,64 @@ "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 35, @@ -44208,39 +43985,39 @@ "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 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": 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": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 44, @@ -44248,64 +44025,59 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 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": 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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 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": 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" } ], "apiDocumentation": [ @@ -44319,17 +44091,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://staging.medicscloud.com/MCExtAPI/Home/Help" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://staging.medicscloud.com/MCExtAPI/Home/Help" } @@ -44371,39 +44143,34 @@ }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "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": 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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 4, @@ -44411,94 +44178,94 @@ "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": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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, - "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": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "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": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 166, @@ -44506,14 +44273,9 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 3, @@ -44521,19 +44283,34 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 1, @@ -44541,60 +44318,47 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information 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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "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" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://staging.medicscloud.com/MedicsDAExtAPI/Home/Help" - }, { "criterion": { "id": 56, @@ -44610,6 +44374,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://staging.medicscloud.com/MedicsDAExtAPI/FHIRMedicsDocAssistant.htm" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://staging.medicscloud.com/MedicsDAExtAPI/Home/Help" } ], "acb": "SLI Compliance" @@ -44649,49 +44421,44 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 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": 32, - "number": "170.315 (d)(4)", - "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 56, @@ -44699,64 +44466,69 @@ "title": "Application Access - Patient Selection" }, { - "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 173, @@ -44764,19 +44536,24 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 171, @@ -44784,75 +44561,62 @@ "title": "Electronic Health Information Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://fhirpresentation.assertus.com/npp/1619131398/r4/Home/ApiDocumentation" - }, { "criterion": { "id": 56, @@ -44868,6 +44632,14 @@ "title": "Application Access - All Data Request" }, "value": "https://fhirpresentation.assertus.com/npp/1619131398/r4/Home/ApiDocumentation" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhirpresentation.assertus.com/npp/1619131398/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -44906,55 +44678,55 @@ "name": "Active" }, "criteriaMet": [ - { - "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": 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": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ @@ -45004,34 +44776,34 @@ }, "criteriaMet": [ { - "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 4, @@ -45039,9 +44811,34 @@ "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": 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": 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": 182, @@ -45049,19 +44846,19 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 9, @@ -45069,49 +44866,54 @@ "title": "Clinical Decision Support" }, { - "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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "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": 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": 172, @@ -45119,14 +44921,9 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { "id": 33, @@ -45134,24 +44931,24 @@ "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": 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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "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, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 14, @@ -45159,9 +44956,9 @@ "title": "Implantable Device List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 44, @@ -45169,50 +44966,17 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "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": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" - }, { "criterion": { "id": 181, @@ -45228,6 +44992,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -45262,14 +45034,9 @@ }, "criteriaMet": [ { - "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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 12, @@ -45277,29 +45044,34 @@ "title": "Family Health History" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 33, @@ -45307,19 +45079,19 @@ "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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 52, @@ -45327,29 +45099,34 @@ "title": "Safety-Enhanced Design" }, { - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 1, @@ -45357,19 +45134,24 @@ "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": 35, - "number": "170.315 (d)(7)", - "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": 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": 177, @@ -45377,89 +45159,79 @@ "title": "Multi-Factor Authentication" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "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" } ], "apiDocumentation": [ @@ -45524,90 +45296,75 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, { - "id": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "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": 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": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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, @@ -45615,39 +45372,39 @@ "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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 1, @@ -45655,39 +45412,54 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ @@ -45752,35 +45524,15 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 176, @@ -45788,9 +45540,9 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 37, @@ -45798,24 +45550,44 @@ "title": "Trusted Connection" }, { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 180, @@ -45823,20 +45595,20 @@ "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, + { + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" + }, { "id": 181, "number": "170.315 (g)(9)", @@ -45906,39 +45678,29 @@ }, "criteriaMet": [ { - "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": 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": 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": 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": 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": 2, @@ -45946,19 +45708,14 @@ "title": "CPOE - Laboratory" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 181, @@ -45966,14 +45723,9 @@ "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 36, @@ -45981,44 +45733,44 @@ "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": 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": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 170, @@ -46026,44 +45778,44 @@ "title": "Care Plan" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 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": 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": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { "id": 53, @@ -46071,34 +45823,49 @@ "title": "Quality Management System" }, { - "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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 52, @@ -46106,22 +45873,27 @@ "title": "Safety-Enhanced Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 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" } ], "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://openapi.modulemd.com" }, @@ -46135,9 +45907,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://openapi.modulemd.com" } @@ -46179,29 +45951,24 @@ }, "criteriaMet": [ { - "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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 173, @@ -46209,64 +45976,64 @@ "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": 56, "number": "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 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": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 14, @@ -46274,14 +46041,14 @@ "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 33, @@ -46289,22 +46056,27 @@ "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 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" }, @@ -46318,9 +46090,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" } @@ -46356,40 +46128,35 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ - { - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 34, @@ -46402,14 +46169,19 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 9, @@ -46417,14 +46189,9 @@ "title": "Clinical Decision Support" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 14, @@ -46432,19 +46199,19 @@ "title": "Implantable Device List" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 173, @@ -46452,45 +46219,50 @@ "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 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" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 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" }, @@ -46540,9 +46312,19 @@ }, "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 56, @@ -46550,30 +46332,15 @@ "title": "Application Access - Patient Selection" }, { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" - }, - { - "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": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered 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": 174, "number": "170.315 (d)(3)", @@ -46584,35 +46351,45 @@ "number": "170.315 (d)(6)", "title": "Emergency Access" }, + { + "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": 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": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 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": 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, @@ -46620,22 +46397,25 @@ "title": "End-User Device Encryption" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 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" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.navigatingcancer.com/requirements-incentives/" + }, { "criterion": { "id": 182, @@ -46651,14 +46431,6 @@ "title": "Application Access - All Data Request" }, "value": "https://www.navigatingcancer.com/requirements-incentives/" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.navigatingcancer.com/requirements-incentives/" } ], "acb": "Drummond Group" @@ -46698,34 +46470,14 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 26, @@ -46733,64 +46485,54 @@ "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": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 59, @@ -46798,14 +46540,9 @@ "title": "Direct Project" }, { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 177, @@ -46813,14 +46550,9 @@ "title": "Multi-Factor Authentication" }, { - "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": 5, @@ -46828,67 +46560,115 @@ "title": "Demographics" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 9, + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "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": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "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.nethealth.com/fhir-api-app-registration-terms-and-conditions/" + }, { "criterion": { "id": 181, @@ -46904,14 +46684,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://nethealthapis.nhsinc.com/?__hstc=109635226.56ed3d94bc2b08f7a9854f9a87442b14.1569593004031.1569593004031.1570556123920.2\u0026__hssc=109635226.1.1570556123920\u0026__hsfp=154593434" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.nethealth.com/fhir-api-app-registration-terms-and-conditions/" } ], "acb": "Drummond Group" @@ -46946,19 +46718,19 @@ }, "criteriaMet": [ { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 180, + "number": "170.315 (g)(6)", + "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 32, @@ -46966,79 +46738,74 @@ "title": "Amendments" }, { - "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 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": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 34, @@ -47046,34 +46813,34 @@ "title": "Emergency Access" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 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": 29, @@ -47081,29 +46848,29 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 165, @@ -47111,29 +46878,39 @@ "title": "Transitions of Care" }, { - "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { "id": 14, @@ -47141,45 +46918,32 @@ "title": "Implantable Device List" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "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://nethealthapis-integration.nhsinc.com/index.html" - }, { "criterion": { "id": 182, @@ -47188,6 +46952,14 @@ }, "value": "https://www.nethealth.com/fhir-api-app-registration-terms-and-conditions/" }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://nethealthapis-integration.nhsinc.com/index.html" + }, { "criterion": { "id": 181, @@ -47234,104 +47006,84 @@ }, "criteriaMet": [ { - "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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "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": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 52, @@ -47339,39 +47091,39 @@ "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 51, @@ -47379,102 +47131,122 @@ "title": "Automated Measure Calculation" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 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": 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": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 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": 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": 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": 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": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "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": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 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": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.nextgen.com/api" }, @@ -47488,9 +47260,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.nextgen.com/api" } @@ -47527,54 +47299,69 @@ }, "criteriaMet": [ { - "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": 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": 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": 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": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 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": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { "id": 3, @@ -47582,59 +47369,59 @@ "title": "CPOE - Diagnostic Imaging" }, { - "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "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": 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": 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": 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": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 167, @@ -47642,29 +47429,24 @@ "title": "Electronic Prescribing" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 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": 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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 177, @@ -47672,19 +47454,19 @@ "title": "Multi-Factor Authentication" }, { - "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": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 178, @@ -47697,24 +47479,19 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 52, @@ -47722,55 +47499,42 @@ "title": "Safety-Enhanced Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.nextgen.com/api" - }, { "criterion": { "id": 56, @@ -47786,6 +47550,14 @@ "title": "Application Access - All Data Request" }, "value": "https://www.nextgen.com/api" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.nextgen.com/api" } ], "acb": "Drummond Group" @@ -47820,19 +47592,14 @@ }, "criteriaMet": [ { - "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 174, @@ -47840,19 +47607,19 @@ "title": "Audit Report(s)" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 25, @@ -47860,19 +47627,9 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 49, @@ -47880,159 +47637,144 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 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": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 5, @@ -48040,9 +47782,9 @@ "title": "Demographics" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 46, @@ -48050,20 +47792,42 @@ "title": "Transmission to Cancer Registries" }, { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "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": 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": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.nextgen.com/api" - }, { "criterion": { "id": 182, @@ -48079,6 +47843,14 @@ "title": "Application Access - All Data Request" }, "value": "https://www.nextgen.com/api" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.nextgen.com/api" } ], "acb": "Drummond Group" @@ -48118,44 +47890,24 @@ }, "criteriaMet": [ { - "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": 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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 14, @@ -48163,39 +47915,19 @@ "title": "Implantable Device List" }, { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 37, @@ -48208,9 +47940,9 @@ "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": 167, @@ -48218,14 +47950,9 @@ "title": "Electronic Prescribing" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 4, @@ -48233,29 +47960,39 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 56, @@ -48263,9 +48000,24 @@ "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "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": 42, @@ -48273,19 +48025,34 @@ "title": "Patient Health Information Capture" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 180, @@ -48293,37 +48060,42 @@ "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": 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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "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://www.nextgen.com/api" }, @@ -48337,9 +48109,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" } @@ -48349,11 +48121,11 @@ ] }, { - "listSourceURL": "https://www.nextech.com/hubfs/Nextech%20FHIR%20Base%20URL.csv", + "listSourceURL": "https://www.nextech.com/developers-portal", "softwareProducts": [ { - "id": 11028, - "chplProductNumber": "15.04.04.2051.Ntec.17.09.1.221121", + "id": 11027, + "chplProductNumber": "15.04.04.2051.Inte.08.01.0.221121", "edition": { "id": 3, "name": "2015" @@ -48367,12 +48139,12 @@ "name": "Nextech" }, "product": { - "id": 3538, - "name": "Nextech" + "id": 3655, + "name": "Nextech EHR (ICP)" }, "version": { - "id": 8619, - "name": "17" + "id": 8618, + "name": "8" }, "certificationDate": "2022-11-21", "certificationStatus": { @@ -48381,34 +48153,39 @@ }, "criteriaMet": [ { - "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": 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": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 166, @@ -48416,19 +48193,9 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 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": 3, @@ -48436,99 +48203,104 @@ "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 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": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 9, @@ -48536,37 +48308,24 @@ "title": "Clinical Decision Support" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.nextech.com/developers-portal" - }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.nextech.com/developers-portal" + "value": "https://nextechsystems.github.io/intellechartapidocspub/r4.html#introduction" }, { "criterion": { @@ -48574,14 +48333,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.nextech.com/developers-portal" + "value": "https://nextechsystems.github.io/intellechartapidocspub/r4.html#introduction" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://nextechsystems.github.io/intellechartapidocspub/r4.html#introduction" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://www.nextech.com/hubfs/Nextech%20FHIR%20Base%20URL.csv", + "softwareProducts": [ { - "id": 11029, - "chplProductNumber": "15.04.04.2051.Next.17.08.1.221121", + "id": 11028, + "chplProductNumber": "15.04.04.2051.Ntec.17.09.1.221121", "edition": { "id": 3, "name": "2015" @@ -48595,11 +48367,11 @@ "name": "Nextech" }, "product": { - "id": 3358, - "name": "Nextech with NewCropRx" + "id": 3538, + "name": "Nextech Select and NexCloud" }, "version": { - "id": 8620, + "id": 8619, "name": "17" }, "certificationDate": "2022-11-21", @@ -48609,39 +48381,34 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 25, @@ -48649,49 +48416,54 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 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": 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": 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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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, @@ -48699,34 +48471,39 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 35, @@ -48734,64 +48511,44 @@ "title": "End-User Device Encryption" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, - { - "id": 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": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ @@ -48821,15 +48578,10 @@ } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://www.nexusclinical.net/nexusehr-fhirapi-base-urls.csv", - "softwareProducts": [ + }, { - "id": 11130, - "chplProductNumber": "15.04.04.2989.Nexu.07.03.1.221227", + "id": 11029, + "chplProductNumber": "15.04.04.2051.Next.17.08.1.221121", "edition": { "id": 3, "name": "2015" @@ -48839,92 +48591,77 @@ "name": "" }, "developer": { - "id": 1990, - "name": "Nexus Clinical LLC" + "id": 1052, + "name": "Nextech" }, "product": { - "id": 3360, - "name": "Nexus EHR" + "id": 3358, + "name": "Nextech Select and NexCloud with NewCropRx" }, "version": { - "id": 8700, - "name": "7.3" + "id": 8620, + "name": "17" }, - "certificationDate": "2022-12-27", + "certificationDate": "2022-11-21", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 178, @@ -48932,89 +48669,84 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "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": 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": 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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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": 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": 54, @@ -49022,44 +48754,62 @@ "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.nextech.com/developers-portal" + }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.nexusclinical.com/wp-content/uploads/2017/07/Nexus_Open_API.pdf" + "value": "https://www.nextech.com/developers-portal" }, { "criterion": { @@ -49067,15 +48817,7 @@ "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.nexusclinical.com/wp-content/uploads/2017/07/Nexus_Open_API.pdf" - }, - { - "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" + "value": "https://www.nextech.com/developers-portal" } ], "acb": "Drummond Group" @@ -49083,11 +48825,11 @@ ] }, { - "listSourceURL": "https://www.novomedici.com/api-documents/", + "listSourceURL": "https://www.nexusclinical.net/nexusehr-fhirapi-base-urls.csv", "softwareProducts": [ { - "id": 10805, - "chplProductNumber": "15.02.05.3015.Novo.01.01.1.220131", + "id": 11130, + "chplProductNumber": "15.04.04.2989.Nexu.07.03.1.221227", "edition": { "id": 3, "name": "2015" @@ -49097,122 +48839,107 @@ "name": "" }, "developer": { - "id": 2016, - "name": "NovoMedici, LLC" + "id": 1990, + "name": "Nexus Clinical LLC" }, "product": { - "id": 2872, - "name": "NovoClinical" + "id": 3360, + "name": "Nexus EHR" }, "version": { - "id": 7257, - "name": "1.0" + "id": 8700, + "name": "7.3" }, - "certificationDate": "2022-01-31", + "certificationDate": "2022-12-27", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 33, @@ -49220,39 +48947,24 @@ "title": "Automatic Access Time-out" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 3, @@ -49260,19 +48972,24 @@ "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 12, @@ -49280,9 +48997,9 @@ "title": "Family Health History" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 43, @@ -49290,37 +49007,67 @@ "title": "Transmission to Immunization Registries" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 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": 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" } ], "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.novomedici.com/api-documents/" + "value": "https://www.nexusclinical.com/wp-content/uploads/2017/07/Nexus_Open_API.pdf" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "http://www.novomedici.com/meaningful-use/" + "value": "https://www.nexusclinical.com/wp-content/uploads/2017/07/Nexus_Open_API.pdf" }, { "criterion": { @@ -49328,19 +49075,19 @@ "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, - "value": "http://www.novomedici.com/meaningful-use/" + "value": "https://www.nexusclinical.com/wp-content/uploads/2017/07/Nexus_Open_API.pdf" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://objectivemedicalsystems.com/products/electronic-health-record/fhir-endpoints/", + "listSourceURL": "https://www.novomedici.com/api-documents/", "softwareProducts": [ { - "id": 11146, - "chplProductNumber": "15.04.04.2086.OMSE.04.03.1.221227", + "id": 10805, + "chplProductNumber": "15.02.05.3015.Novo.01.01.1.220131", "edition": { "id": 3, "name": "2015" @@ -49350,21 +49097,21 @@ "name": "" }, "developer": { - "id": 1087, - "name": "Objective Medical Systems, LLC" + "id": 2016, + "name": "NovoMedici, LLC" }, "product": { - "id": 1823, - "name": "OMS EHR" + "id": 2872, + "name": "NovoClinical" }, "version": { - "id": 8715, - "name": "4.4.0.00" + "id": 7257, + "name": "1.0" }, - "certificationDate": "2022-12-27", + "certificationDate": "2022-01-31", "certificationStatus": { - "id": 3, - "name": "Withdrawn by Developer" + "id": 1, + "name": "Active" }, "criteriaMet": [ { @@ -49373,89 +49120,49 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 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": 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": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 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, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 9, @@ -49463,14 +49170,14 @@ "title": "Clinical Decision Support" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 32, @@ -49478,14 +49185,14 @@ "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 176, @@ -49493,14 +49200,9 @@ "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 14, @@ -49508,54 +49210,99 @@ "title": "Implantable Device List" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "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": 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": 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": 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": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ @@ -49565,7 +49312,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://c3.omshealth.com/apiaccess/FHIR/apidocment" + "value": "http://www.novomedici.com/meaningful-use/" }, { "criterion": { @@ -49573,7 +49320,7 @@ "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - "value": "https://c3.omshealth.com/apiaccess/FHIR/apidocment" + "value": "https://www.novomedici.com/api-documents/" }, { "criterion": { @@ -49581,14 +49328,19 @@ "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, - "value": "https://c3.omshealth.com/apiaccess/FHIR/apidocment" + "value": "http://www.novomedici.com/meaningful-use/" } ], - "acb": "Drummond Group" - }, + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://objectivemedicalsystems.com/products/electronic-health-record/fhir-endpoints/", + "softwareProducts": [ { - "id": 11381, - "chplProductNumber": "15.04.04.2086.OMSE.05.04.1.231128", + "id": 11146, + "chplProductNumber": "15.04.04.2086.OMSE.04.03.1.221227", "edition": { "id": 3, "name": "2015" @@ -49606,39 +49358,34 @@ "name": "OMS EHR" }, "version": { - "id": 8892, - "name": "5.0.0.00" + "id": 8715, + "name": "4.4.0.00" }, - "certificationDate": "2023-11-28", + "certificationDate": "2022-12-27", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 2, @@ -49646,34 +49393,39 @@ "title": "CPOE - Laboratory" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered 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": 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": 9, @@ -49681,59 +49433,64 @@ "title": "Clinical Decision Support" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 166, @@ -49741,9 +49498,14 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 172, @@ -49751,75 +49513,65 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "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": 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": 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": 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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "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://c3.omshealth.com/apiaccess/FHIR/apidocment" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://c3.omshealth.com/apiaccess/FHIR/apidocment" }, @@ -49833,15 +49585,10 @@ } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://fhir-documentation.patientmedrecords.com/endpoints", - "softwareProducts": [ + }, { - "id": 11049, - "chplProductNumber": "15.04.04.3048.Offi.21.02.1.221121", + "id": 11381, + "chplProductNumber": "15.04.04.2086.OMSE.05.04.1.231128", "edition": { "id": 3, "name": "2015" @@ -49851,37 +49598,42 @@ "name": "" }, "developer": { - "id": 2049, - "name": "Office Practicum" + "id": 1087, + "name": "Objective Medical Systems, LLC" }, "product": { - "id": 3090, - "name": "Office Practicum" + "id": 1823, + "name": "OMS EHR" }, "version": { - "id": 8636, - "name": "21" + "id": 8892, + "name": "5.0.0.00" }, - "certificationDate": "2022-11-21", + "certificationDate": "2023-11-28", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 165, @@ -49889,44 +49641,44 @@ "title": "Transitions of Care" }, { - "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)", - "title": "Demographics" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 37, @@ -49934,19 +49686,19 @@ "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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, @@ -49954,44 +49706,39 @@ "title": "Electronic Prescribing" }, { - "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 34, @@ -50003,37 +49750,98 @@ "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, { "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": [ + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.officepracticum.com/op/fhir-documentation" - } - ], - "acb": "Drummond Group" - } - ] - }, + "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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 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://c3.omshealth.com/apiaccess/FHIR/apidocment" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://c3.omshealth.com/apiaccess/FHIR/apidocment" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://c3.omshealth.com/apiaccess/FHIR/apidocment" + } + ], + "acb": "Drummond Group" + } + ] + }, { - "listSourceURL": "https://isalus-fhirpresentation.everhealthsoftware.com/fhir/r4/endpoints", + "listSourceURL": "https://fhir-documentation.patientmedrecords.com/endpoints", "softwareProducts": [ { - "id": 10914, - "chplProductNumber": "15.04.04.2629.Offi.21.02.1.220606", + "id": 11049, + "chplProductNumber": "15.04.04.3048.Offi.21.02.1.221121", "edition": { "id": 3, "name": "2015" @@ -50043,47 +49851,47 @@ "name": "" }, "developer": { - "id": 1630, - "name": "iSALUS Healthcare" + "id": 2049, + "name": "Office Practicum" }, "product": { - "id": 2566, - "name": "OfficeEMR" + "id": 3090, + "name": "Office Practicum" }, "version": { - "id": 8511, - "name": "2021" + "id": 8636, + "name": "21" }, - "certificationDate": "2022-06-06", + "certificationDate": "2022-11-21", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 12, @@ -50091,29 +49899,49 @@ "title": "Family Health History" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 37, @@ -50121,9 +49949,49 @@ "title": "Trusted Connection" }, { - "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 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": 166, @@ -50131,34 +49999,106 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 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" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.officepracticum.com/op/fhir-documentation" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://isalus-fhirpresentation.everhealthsoftware.com/fhir/r4/endpoints", + "softwareProducts": [ + { + "id": 10914, + "chplProductNumber": "15.04.04.2629.Offi.21.02.1.220606", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1630, + "name": "iSALUS Healthcare" + }, + "product": { + "id": 2566, + "name": "OfficeEMR" + }, + "version": { + "id": 8511, + "name": "2021" + }, + "certificationDate": "2022-06-06", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "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": 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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 56, @@ -50166,19 +50106,29 @@ "title": "Application Access - Patient Selection" }, { - "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 3, @@ -50186,39 +50136,79 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 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": 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": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 9, @@ -50226,9 +50216,9 @@ "title": "Clinical Decision Support" }, { - "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": 180, @@ -50236,24 +50226,34 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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" } ], "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.isalushealthcare.com/" + "value": "https://isalus-fhirpresentation.everhealthsoftware.com/isalus/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { @@ -50265,11 +50265,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://isalus-fhirpresentation.everhealthsoftware.com/isalus/basepractice/r4/Home/ApiDocumentation" + "value": "https://docs.isalushealthcare.com/" } ], "acb": "Drummond Group" @@ -50309,44 +50309,54 @@ }, "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 51, @@ -50354,14 +50364,24 @@ "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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 42, @@ -50373,35 +50393,50 @@ "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 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": 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": 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": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 35, @@ -50409,19 +50444,19 @@ "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 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": 46, @@ -50429,24 +50464,14 @@ "title": "Transmission to Cancer Registries" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 179, @@ -50454,34 +50479,19 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "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": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 166, @@ -50489,24 +50499,24 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 176, @@ -50514,35 +50524,17 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://fhirregistration.omnimd.com/#/specification" - }, { "criterion": { "id": 181, @@ -50551,6 +50543,14 @@ }, "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" + }, { "criterion": { "id": 56, @@ -50591,35 +50591,25 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, { "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 4, @@ -50627,59 +50617,54 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 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": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 174, @@ -50687,24 +50672,29 @@ "title": "Audit Report(s)" }, { - "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": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 54, @@ -50712,14 +50702,9 @@ "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 12, @@ -50727,44 +50712,54 @@ "title": "Family Health History" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "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": 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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 181, + "number": "170.315 (g)(9)", + "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": 37, @@ -50772,9 +50767,19 @@ "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": 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": 43, @@ -50782,42 +50787,45 @@ "title": "Transmission to Immunization Registries" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.omnimd.com/open-api/" + }, { "criterion": { "id": 182, @@ -50833,14 +50841,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://www.omnimd.com/open-api/" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.omnimd.com/open-api/" } ], "acb": "SLI Compliance" @@ -50880,44 +50880,49 @@ }, "criteriaMet": [ { - "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": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "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": 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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 29, @@ -50925,49 +50930,34 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 182, @@ -50975,9 +50965,9 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 174, @@ -50985,19 +50975,29 @@ "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 35, @@ -51005,77 +51005,77 @@ "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://flatiron.force.com/FHIR/s/" }, @@ -51089,9 +51089,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://flatiron.force.com/FHIR/s/" } @@ -51133,24 +51133,14 @@ }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 25, @@ -51162,30 +51152,20 @@ "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": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 33, @@ -51193,9 +51173,9 @@ "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": 32, @@ -51203,19 +51183,24 @@ "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 173, @@ -51223,24 +51208,24 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 181, @@ -51248,27 +51233,42 @@ "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 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" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.medonehp.com/wp-content/uploads/2023/11/SmartOnFHIR-API.pdf" }, @@ -51282,9 +51282,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.medonehp.com/wp-content/uploads/2023/11/SmartOnFHIR-API.pdf" } @@ -51326,14 +51326,14 @@ }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 53, @@ -51341,64 +51341,59 @@ "title": "Quality Management System" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 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": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 171, @@ -51406,19 +51401,34 @@ "title": "Electronic Health Information 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": 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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 167, @@ -51430,30 +51440,30 @@ "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 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": 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": 32, @@ -51461,39 +51471,24 @@ "title": "Amendments" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 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": 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": 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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 39, @@ -51501,29 +51496,34 @@ "title": "Accounting of Disclosures" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "apiDocumentation": [ @@ -51537,17 +51537,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.onetouchemr.com/development/OT-API-Documentation.pdf" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.onetouchemr.com/development/OT-API-Documentation.pdf" } @@ -51589,39 +51589,44 @@ }, "criteriaMet": [ { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 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": 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": 181, @@ -51629,69 +51634,84 @@ "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "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": 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": 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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 5, @@ -51699,62 +51719,42 @@ "title": "Demographics" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(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.open-emr.org/wiki/index.php/OpenEMR_7.0.0_API" }, @@ -51768,9 +51768,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.open-emr.org/wiki/index.php/OpenEMR_7.0.0_API" } @@ -51812,64 +51812,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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 34, @@ -51877,19 +51867,9 @@ "title": "Emergency Access" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 37, @@ -51897,49 +51877,44 @@ "title": "Trusted Connection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 46, @@ -51947,9 +51922,14 @@ "title": "Transmission to Cancer Registries" }, { - "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, @@ -51957,39 +51937,44 @@ "title": "Automatic Access Time-out" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 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": 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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 32, @@ -51997,17 +51982,32 @@ "title": "Amendments" }, { - "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, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "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" } ], "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://orthoplex.mkoss.com/swagger/ui/index#/ExternalApiPatients" }, @@ -52021,9 +52021,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://orthoplex.mkoss.com/swagger/ui/index#/ExternalApiPatients" } @@ -52064,26 +52064,6 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, { "id": 52, "number": "170.315 (g)(3)", @@ -52095,49 +52075,54 @@ "title": "Security Tags - Summary of Care - Send" }, { - "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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 54, @@ -52145,14 +52130,14 @@ "title": "Accessibility-Centered Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 56, @@ -52160,9 +52145,9 @@ "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 42, @@ -52170,24 +52155,9 @@ "title": "Patient Health Information Capture" }, { - "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "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": 34, @@ -52195,14 +52165,9 @@ "title": "Emergency Access" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 59, @@ -52210,19 +52175,19 @@ "title": "Direct Project" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 165, @@ -52230,9 +52195,9 @@ "title": "Transitions of Care" }, { - "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, @@ -52240,37 +52205,72 @@ "title": "Family Health History" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 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": 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": 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": 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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "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": "http://www.qrshs.info/" }, @@ -52284,9 +52284,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://www.qrshs.info/" } @@ -52328,49 +52328,54 @@ }, "criteriaMet": [ { - "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced 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": 43, @@ -52378,14 +52383,34 @@ "title": "Transmission to Immunization Registries" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 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": 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": 39, @@ -52393,69 +52418,79 @@ "title": "Accounting of Disclosures" }, { - "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": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 5, @@ -52463,34 +52498,19 @@ "title": "Demographics" }, { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "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": 36, @@ -52498,49 +52518,29 @@ "title": "Integrity" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 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": 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" } ], "apiDocumentation": [ @@ -52554,17 +52554,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.pcesystems.com/g10APIInfo.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.pcesystems.com/g10APIInfo.html" } @@ -52606,29 +52606,9 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 44, @@ -52636,29 +52616,29 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 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": 36, @@ -52666,139 +52646,159 @@ "title": "Integrity" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 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": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 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": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ @@ -52830,118 +52830,53 @@ "acb": "Drummond Group" } ] - }, - { - "listSourceURL": "https://smart.mdsuite.com/Endpoints", - "softwareProducts": [ - { - "id": 9347, - "chplProductNumber": "15.04.04.2688.PDSM.08.00.1.180202", - "edition": { - "id": 3, - "name": "2015" - }, - "practiceType": { - "id": 0, - "name": "" - }, - "developer": { - "id": 1689, - "name": "Azalea Health" - }, - "product": { - "id": 2867, - "name": "PDS MDSuite" - }, - "version": { - "id": 7241, - "name": "Version 8" - }, - "certificationDate": "2018-02-02", - "certificationStatus": { - "id": 3, - "name": "Withdrawn by Developer" - }, - "criteriaMet": [ - { - "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, + }, + { + "listSourceURL": "https://smart.mdsuite.com/Endpoints", + "softwareProducts": [ + { + "id": 9347, + "chplProductNumber": "15.04.04.2688.PDSM.08.00.1.180202", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1689, + "name": "Azalea Health" + }, + "product": { + "id": 2867, + "name": "PDS MDSuite" + }, + "version": { + "id": 7241, + "name": "Version 8" + }, + "certificationDate": "2018-02-02", + "certificationStatus": { + "id": 3, + "name": "Withdrawn by Developer" + }, + "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 29, @@ -52949,15 +52884,30 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, { "id": 36, "number": "170.315 (d)(8)", @@ -52969,24 +52919,29 @@ "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 21, @@ -52994,14 +52949,14 @@ "title": "Data Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 182, @@ -53009,44 +52964,49 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 25, @@ -53054,22 +53014,70 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 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": 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://developer.mdsuite.com/api/help" + }, { "criterion": { "id": 181, @@ -53085,14 +53093,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.mdsuite.com/api/help/index" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://developer.mdsuite.com/api/help" } ], "acb": "Drummond Group" @@ -53137,44 +53137,44 @@ "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": 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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ @@ -53226,20 +53226,30 @@ "name": "Active" }, "criteriaMet": [ + { + "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 182, @@ -53247,9 +53257,9 @@ "title": "Standardized API for Patient and Population Services" }, { - "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, @@ -53257,19 +53267,9 @@ "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 177, @@ -53332,9 +53332,14 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 173, @@ -53342,9 +53347,14 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 33, @@ -53352,122 +53362,112 @@ "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 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": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 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": 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": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.thesnfist.com/cures-update" }, @@ -53481,9 +53481,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.thesnfist.com/cures-update" } @@ -53525,64 +53525,34 @@ }, "criteriaMet": [ { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 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": 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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 33, @@ -53590,54 +53560,34 @@ "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 177, - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, { "id": 51, "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 56, @@ -53645,24 +53595,24 @@ "title": "Application Access - Patient Selection" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 35, @@ -53670,9 +53620,44 @@ "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 36, @@ -53680,14 +53665,9 @@ "title": "Integrity" }, { - "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 14, @@ -53695,27 +53675,55 @@ "title": "Implantable Device List" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "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://developer.allscripts.com/Fhir/Introduction" + }, { "criterion": { "id": 181, @@ -53731,14 +53739,6 @@ "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" @@ -53772,105 +53772,100 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, { "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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 39, @@ -53878,74 +53873,79 @@ "title": "Accounting of Disclosures" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 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": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 178, @@ -53958,17 +53958,17 @@ "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" } ], "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://developer.allscripts.com/Fhir/Introduction" }, @@ -53982,9 +53982,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://developer.allscripts.com/Fhir/Introduction" } @@ -54021,34 +54021,29 @@ }, "criteriaMet": [ { - "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 52, @@ -54056,29 +54051,64 @@ "title": "Safety-Enhanced Design" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "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": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 5, @@ -54086,89 +54116,59 @@ "title": "Demographics" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, { "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": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 32, @@ -54176,24 +54176,24 @@ "title": "Amendments" }, { - "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 56, @@ -54201,22 +54201,22 @@ "title": "Application Access - Patient Selection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://developer.allscripts.com/Fhir/Introduction" }, @@ -54230,9 +54230,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://developer.allscripts.com/Fhir/Introduction" } @@ -54268,70 +54268,55 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "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": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 52, @@ -54339,19 +54324,14 @@ "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": 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": 54, @@ -54359,34 +54339,39 @@ "title": "Accessibility-Centered Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 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": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 182, @@ -54394,14 +54379,24 @@ "title": "Standardized API for Patient and Population Services" }, { - "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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 166, @@ -54409,39 +54404,34 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 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": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 21, @@ -54449,27 +54439,37 @@ "title": "Data 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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "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://developer.allscripts.com/Fhir/Introduction" }, @@ -54483,9 +54483,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" } @@ -54522,14 +54522,14 @@ }, "criteriaMet": [ { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 176, @@ -54537,74 +54537,74 @@ "title": "Encrypt Authentication Credentials" }, { - "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": 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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "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": 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": 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": 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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 59, @@ -54612,109 +54612,109 @@ "title": "Direct Project" }, { - "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" } ], "apiDocumentation": [ @@ -54775,164 +54775,154 @@ }, "criteriaMet": [ { - "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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, + { + "id": 53, + "number": "170.315 (g)(4)", + "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 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": 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": 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": 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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 2, @@ -54940,47 +54930,57 @@ "title": "CPOE - Laboratory" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (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" }, @@ -54994,9 +54994,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" } @@ -55033,29 +55033,34 @@ }, "criteriaMet": [ { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 172, @@ -55063,24 +55068,14 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 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": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 34, @@ -55088,29 +55083,34 @@ "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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 48, @@ -55118,152 +55118,152 @@ "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 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": 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": 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": 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": 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": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" } ], "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://developer.allscripts.com/" }, @@ -55277,9 +55277,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://developer.allscripts.com/" } @@ -55316,29 +55316,24 @@ }, "criteriaMet": [ { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { "id": 25, @@ -55346,14 +55341,39 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 26, @@ -55361,29 +55381,24 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 173, @@ -55391,114 +55406,109 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 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": 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" }, { - "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, { - "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": 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": 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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 33, - "number": "170.315 (d)(5)", - "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": 5, @@ -55506,24 +55516,14 @@ "title": "Demographics" }, { - "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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 172, @@ -55531,25 +55531,17 @@ "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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://developer.allscripts.com/" - }, { "criterion": { "id": 182, @@ -55565,6 +55557,14 @@ "title": "Application Access - Patient Selection" }, "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" @@ -55599,24 +55599,19 @@ }, "criteriaMet": [ { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 32, @@ -55624,44 +55619,44 @@ "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { "id": 21, @@ -55669,24 +55664,24 @@ "title": "Data Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 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": 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": 172, @@ -55694,24 +55689,24 @@ "title": "Clinical Quality Measures - Report" }, { - "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": 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": 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": 49, @@ -55719,9 +55714,14 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "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" }, { "id": 179, @@ -55729,84 +55729,79 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "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": 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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 51, @@ -55814,14 +55809,19 @@ "title": "Automated Measure Calculation" }, { - "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": 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" } ], "apiDocumentation": [ @@ -55835,17 +55835,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.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/" } @@ -55882,24 +55882,19 @@ }, "criteriaMet": [ { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 178, @@ -55907,19 +55902,19 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 45, @@ -55927,64 +55922,59 @@ "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 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)", - "title": "Accessibility-Centered Design" + "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 53, @@ -55992,9 +55982,9 @@ "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 29, @@ -56002,24 +55992,39 @@ "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 2, @@ -56027,84 +56032,79 @@ "title": "CPOE - Laboratory" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 35, + "number": "170.315 (d)(7)", + "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": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 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": 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": 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": 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": 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": 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": 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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ @@ -56165,49 +56165,59 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 34, @@ -56215,144 +56225,144 @@ "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 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": 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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 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": 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": 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": 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": 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": 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": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 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": 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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 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": 173, @@ -56360,24 +56370,14 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "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": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ @@ -56391,17 +56391,17 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.allscripts.com/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://developer.allscripts.com/" } @@ -56438,74 +56438,44 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "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": 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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 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": 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": 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": 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": 9, @@ -56513,19 +56483,14 @@ "title": "Clinical Decision Support" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 166, @@ -56533,14 +56498,24 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 3, @@ -56548,14 +56523,19 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 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": 25, @@ -56563,19 +56543,9 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 173, @@ -56583,29 +56553,34 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 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": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 43, @@ -56613,24 +56588,44 @@ "title": "Transmission to Immunization Registries" }, { - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 12, @@ -56638,19 +56633,24 @@ "title": "Family Health History" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ @@ -56664,17 +56664,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.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/" } @@ -56711,222 +56711,230 @@ }, "criteriaMet": [ { - "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 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": 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": 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": 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": 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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://developer.veradigm.com/" + }, { "criterion": { "id": 56, @@ -56942,14 +56950,6 @@ "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" @@ -56984,54 +56984,49 @@ }, "criteriaMet": [ { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 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": 182, - "number": "170.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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 9, @@ -57039,9 +57034,9 @@ "title": "Clinical Decision Support" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 51, @@ -57049,94 +57044,99 @@ "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": 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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 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": 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": 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": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 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": 180, @@ -57144,39 +57144,39 @@ "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": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 14, @@ -57184,19 +57184,19 @@ "title": "Implantable Device List" }, { - "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": 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" } ], "apiDocumentation": [ @@ -57256,30 +57256,25 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 35, @@ -57287,19 +57282,9 @@ "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 36, @@ -57307,24 +57292,29 @@ "title": "Integrity" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" }, { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 182, @@ -57332,14 +57322,9 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 177, @@ -57347,25 +57332,40 @@ "title": "Multi-Factor Authentication" }, { - "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": 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" + "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/" } @@ -57401,40 +57401,40 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 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": 35, - "number": "170.315 (d)(7)", - "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 174, @@ -57442,9 +57442,9 @@ "title": "Audit Report(s)" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 182, @@ -57452,14 +57452,14 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" }, { - "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, @@ -57467,45 +57467,45 @@ "title": "Trusted Connection" }, { - "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 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/" } @@ -57542,74 +57542,69 @@ }, "criteriaMet": [ { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 56, @@ -57617,40 +57612,45 @@ "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 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": 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://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/" } @@ -57692,49 +57692,44 @@ }, "criteriaMet": [ { - "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": 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": 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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 14, @@ -57742,69 +57737,59 @@ "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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 52, @@ -57812,29 +57797,29 @@ "title": "Safety-Enhanced Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 43, @@ -57842,39 +57827,39 @@ "title": "Transmission to Immunization Registries" }, { - "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": 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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 42, @@ -57882,9 +57867,24 @@ "title": "Patient Health Information Capture" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" } ], "apiDocumentation": [ @@ -57898,17 +57898,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://patagoniahealth.com/wp-content/uploads/2022/12/SmartOnFHIR-API-Documentation.pdf" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://patagoniahealth.com/wp-content/uploads/2022/12/SmartOnFHIR-API-Documentation.pdf" } @@ -57950,19 +57950,19 @@ }, "criteriaMet": [ { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 171, @@ -57970,54 +57970,64 @@ "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "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": 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": 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": 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": 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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 51, @@ -58025,19 +58035,24 @@ "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 35, @@ -58045,24 +58060,14 @@ "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 174, @@ -58070,24 +58075,34 @@ "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 3, @@ -58095,67 +58110,60 @@ "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": 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": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 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": 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": 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": 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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhirpresentation.pcsdataxchg.com/dhit/basepractice/r4/Home/ApiDocumentation" + }, { "criterion": { "id": 56, @@ -58171,14 +58179,6 @@ "title": "Application Access - All Data Request" }, "value": "https://www.primeclinical.net/ws/rest/help/help.pdf" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://fhirpresentation.pcsdataxchg.com/dhit/basepractice/r4/Home/ApiDocumentation" } ], "acb": "SLI Compliance" @@ -58218,19 +58218,14 @@ }, "criteriaMet": [ { - "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": 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": 2, @@ -58238,34 +58233,29 @@ "title": "CPOE - Laboratory" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 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": 165, @@ -58273,14 +58263,14 @@ "title": "Transitions of Care" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 32, @@ -58288,34 +58278,44 @@ "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 174, @@ -58323,24 +58323,24 @@ "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 29, @@ -58348,25 +58348,25 @@ "title": "Authentication, Access Control, Authorization" }, { - "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" } ], "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://patientpattern-static.s3.us-west-2.amazonaws.com/static/documents/FHIR+API+Documentation.pdf" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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" }, @@ -58416,19 +58416,19 @@ }, "criteriaMet": [ { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 54, @@ -58441,14 +58441,9 @@ "title": "Consolidated CDA Creation Performance" }, { - "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 176, @@ -58456,9 +58451,9 @@ "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": 29, @@ -58466,19 +58461,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 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": 171, @@ -58486,22 +58471,45 @@ "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 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.willowgladetechnologies.com/requirements" + }, { "criterion": { "id": 56, @@ -58517,14 +58525,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.willowgladetechnologies.com/requirements" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.willowgladetechnologies.com/requirements" } ], "acb": "Leidos" @@ -58564,14 +58564,24 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 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, @@ -58579,134 +58589,134 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 182, @@ -58714,54 +58724,44 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 174, @@ -58772,17 +58772,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://mraemr.com:47102/api/help_document.asp" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://mraemr.com:47102/api/help_document.asp" }, @@ -58832,84 +58832,84 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 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": 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": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 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": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 180, @@ -58917,59 +58917,59 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 181, @@ -58977,44 +58977,34 @@ "title": "Application Access - All Data Request" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "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": 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": 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": 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": 44, @@ -59022,19 +59012,14 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 3, @@ -59042,9 +59027,14 @@ "title": "CPOE - Diagnostic Imaging" }, { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 5, @@ -59052,9 +59042,24 @@ "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 176, @@ -59062,25 +59067,12 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://mraemr.com:47102/api/help_document.asp" - }, { "criterion": { "id": 181, @@ -59096,6 +59088,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "http://mraemr.com:47102/api/help_document.asp" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://mraemr.com:47102/api/help_document.asp" } ], "acb": "ICSA Labs" @@ -59135,34 +59135,19 @@ }, "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 59, @@ -59170,34 +59155,24 @@ "title": "Direct Project" }, { - "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": 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": 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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 37, @@ -59205,14 +59180,14 @@ "title": "Trusted Connection" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 2, @@ -59220,24 +59195,29 @@ "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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 51, @@ -59245,34 +59225,49 @@ "title": "Automated Measure Calculation" }, { - "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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 165, @@ -59280,67 +59275,72 @@ "title": "Transitions of Care" }, { - "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 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://harrisambulatory.com/picasso-api-documentation/" }, @@ -59354,9 +59354,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://harrisambulatory.com/picasso-api-documentation/" } @@ -59392,55 +59392,55 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 51, @@ -59448,24 +59448,24 @@ "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 176, @@ -59473,130 +59473,122 @@ "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 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" - }, - "value": "https://harrisambulatory.com/picasso-api-documentation/" - }, { "criterion": { "id": 181, @@ -59612,6 +59604,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" @@ -59646,9 +59646,9 @@ }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 4, @@ -59656,69 +59656,49 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "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": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 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": 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": 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": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 5, @@ -59726,79 +59706,74 @@ "title": "Demographics" }, { - "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, - { - "id": 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": 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": 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": 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": 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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 36, @@ -59806,55 +59781,80 @@ "title": "Integrity" }, { - "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 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": 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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://harrisambulatory.com/picasso-api-documentation/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://harrisambulatory.com/picasso-api-documentation/" }, @@ -59904,24 +59904,14 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 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": 54, @@ -59929,34 +59919,29 @@ "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 166, @@ -59968,30 +59953,50 @@ "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 33, @@ -59999,29 +60004,29 @@ "title": "Automatic Access Time-out" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 29, @@ -60029,39 +60034,34 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 32, @@ -60069,20 +60069,12 @@ "title": "Amendments" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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://fhir-qa.pcc-labs.com/PointClickCare.html" - }, { "criterion": { "id": 181, @@ -60098,6 +60090,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://fhir-qa.pcc-labs.com/PointClickCare.html" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://fhir-qa.pcc-labs.com/PointClickCare.html" } ], "acb": "Drummond Group" @@ -60137,39 +60137,29 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 4, @@ -60177,69 +60167,74 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 42, @@ -60247,29 +60242,34 @@ "title": "Patient Health Information Capture" }, { - "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": 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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 1, @@ -60282,34 +60282,34 @@ "title": "Transitions of Care" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 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, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "apiDocumentation": [ @@ -60323,17 +60323,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://apicert.practiceehr.com/Resources/data-api-documentation.pdf" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://apicert.practiceehr.com/Resources/data-api-documentation.pdf" } @@ -60375,9 +60375,19 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 182, @@ -60385,44 +60395,69 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 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": 178, @@ -60430,14 +60465,24 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 173, @@ -60445,19 +60490,19 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 32, @@ -60465,104 +60510,59 @@ "title": "Amendments" }, { - "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ @@ -60574,14 +60574,6 @@ }, "value": "https://cal-med.com/onc.html" }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://cal-med.com/Calmed_API_Document.pdf" - }, { "criterion": { "id": 181, @@ -60589,6 +60581,14 @@ "title": "Application Access - All Data Request" }, "value": "https://cal-med.com/onc.html" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://cal-med.com/Calmed_API_Document.pdf" } ], "acb": "Drummond Group" @@ -60628,44 +60628,39 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "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": 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": 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": 15, @@ -60673,9 +60668,9 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "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": 174, @@ -60683,19 +60678,24 @@ "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "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, - "number": "170.315 (a)(6)", - "title": "Problem List" + "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": 43, @@ -60703,114 +60703,119 @@ "title": "Transmission to Immunization Registries" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 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": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "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": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 53, @@ -60818,60 +60823,47 @@ "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "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, @@ -60887,6 +60879,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://www.practicefusion.com/pds-api/developer-guide/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.practicefusion.com/pds-api/developer-guide/" } ], "acb": "Drummond Group" @@ -60925,35 +60925,20 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 29, @@ -60961,59 +60946,44 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 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": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 3, @@ -61021,114 +60991,129 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 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": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 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": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "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": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 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": 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": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 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": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 33, @@ -61136,14 +61121,29 @@ "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 178, @@ -61152,14 +61152,6 @@ } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://oauth.patientwebportal.com/Fhir/Documentation" - }, { "criterion": { "id": 56, @@ -61175,6 +61167,14 @@ "title": "Application Access - All Data Request" }, "value": "https://oauth.patientwebportal.com/Fhir/Documentation" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://oauth.patientwebportal.com/Fhir/Documentation" } ], "acb": "Drummond Group" @@ -61214,49 +61214,64 @@ }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 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": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, { "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 51, @@ -61264,24 +61279,9 @@ "title": "Automated Measure Calculation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 42, @@ -61289,14 +61289,19 @@ "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 25, @@ -61304,64 +61309,59 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 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": 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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 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": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 53, @@ -61374,45 +61374,45 @@ "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.praxisemr.com/applicationaccess/api/help/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.praxisemr.com/applicationaccess/api/help/" }, @@ -61462,19 +61462,9 @@ }, "criteriaMet": [ { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 165, @@ -61482,34 +61472,39 @@ "title": "Transitions of Care" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 9, @@ -61517,39 +61512,34 @@ "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 14, @@ -61557,34 +61547,49 @@ "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": 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": 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": 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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 12, @@ -61592,44 +61597,39 @@ "title": "Family Health History" }, { - "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, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 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" } ], "apiDocumentation": [ @@ -61678,35 +61678,55 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 32, @@ -61714,9 +61734,9 @@ "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 174, @@ -61724,94 +61744,74 @@ "title": "Audit Report(s)" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 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": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 167, @@ -61819,49 +61819,49 @@ "title": "Electronic Prescribing" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" } ], "apiDocumentation": [ @@ -61922,94 +61922,49 @@ }, "criteriaMet": [ { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, { "id": 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": 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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 180, @@ -62017,9 +61972,9 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 176, @@ -62032,24 +61987,29 @@ "title": "Direct Project" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 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": 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": 174, @@ -62057,65 +62017,105 @@ "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 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": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, { "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "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://harrisambulatory.com/pulse-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://harrisambulatory.com/pulse-api-documentation/" }, @@ -62163,51 +62163,46 @@ "id": 1, "name": "Active" }, - "criteriaMet": [ - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, + "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 35, @@ -62215,14 +62210,9 @@ "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 33, @@ -62230,29 +62220,29 @@ "title": "Automatic Access Time-out" }, { - "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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 25, @@ -62260,19 +62250,19 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 52, @@ -62285,40 +62275,42 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://pureehr.com/images/PureehrApiDocumentation.pdf" - }, { "criterion": { "id": 182, @@ -62334,6 +62326,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://pureehr.com/images/PureehrApiDocumentation.pdf" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://pureehr.com/images/PureehrApiDocumentation.pdf" } ], "acb": "Drummond Group" @@ -62373,24 +62373,24 @@ }, "criteriaMet": [ { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 42, @@ -62398,34 +62398,14 @@ "title": "Patient Health Information Capture" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 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": 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": 59, @@ -62433,64 +62413,39 @@ "title": "Direct Project" }, { - "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": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 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": 175, "number": "170.315 (d)(10)", "title": "Auditing Actions on Health Information" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 33, @@ -62498,19 +62453,19 @@ "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": 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, @@ -62523,19 +62478,39 @@ "title": "Electronic Prescribing" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 165, @@ -62543,19 +62518,19 @@ "title": "Transitions of Care" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 177, @@ -62563,9 +62538,34 @@ "title": "Multi-Factor Authentication" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 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" } ], "apiDocumentation": [ @@ -62631,34 +62631,79 @@ }, "criteriaMet": [ { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 54, @@ -62666,9 +62711,9 @@ "title": "Accessibility-Centered Design" }, { - "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": 180, @@ -62676,54 +62721,49 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { "id": 36, @@ -62731,39 +62771,34 @@ "title": "Integrity" }, { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 165, @@ -62771,19 +62806,9 @@ "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { "id": 9, @@ -62791,24 +62816,19 @@ "title": "Clinical Decision Support" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 174, @@ -62816,59 +62836,39 @@ "title": "Audit Report(s)" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "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": 42, - "number": "170.315 (e)(3)", - "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ @@ -62933,11 +62933,46 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ + { + "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, { "id": 172, "number": "170.315 (c)(3)", @@ -62949,9 +62984,14 @@ "title": "CPOE - Laboratory" }, { - "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": 21, @@ -62959,29 +62999,29 @@ "title": "Data Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 176, @@ -62989,24 +63029,24 @@ "title": "Encrypt Authentication Credentials" }, { - "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 36, @@ -63014,69 +63054,39 @@ "title": "Integrity" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 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": 42, @@ -63084,39 +63094,29 @@ "title": "Patient Health Information Capture" }, { - "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ @@ -63182,24 +63182,29 @@ }, "criteriaMet": [ { - "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 3, @@ -63207,54 +63212,64 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 33, @@ -63262,54 +63277,49 @@ "title": "Automatic Access Time-out" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 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": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "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": 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": 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": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "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": 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": 34, @@ -63317,44 +63327,49 @@ "title": "Emergency Access" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 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": 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": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 32, @@ -63362,55 +63377,40 @@ "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 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": 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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://ehr.cutecharts.com/radytestmu3/Document/ApplicationAccessTermsandCondition.pdf" }, @@ -63460,44 +63460,54 @@ }, "criteriaMet": [ { - "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 3, @@ -63505,24 +63515,19 @@ "title": "CPOE - Diagnostic Imaging" }, { - "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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 176, @@ -63530,79 +63535,74 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 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": 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": 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": 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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 52, @@ -63610,29 +63610,24 @@ "title": "Safety-Enhanced Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 25, @@ -63640,30 +63635,27 @@ "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 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": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://help.relimedsolutions.com/fhir/SmartOnFHIR-API-Documentation.pdf" - }, { "criterion": { "id": 181, @@ -63679,6 +63671,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://help.relimedsolutions.com/fhir/SmartOnFHIR-API-Documentation.pdf" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://help.relimedsolutions.com/fhir/SmartOnFHIR-API-Documentation.pdf" } ], "acb": "Drummond Group" @@ -63718,29 +63718,9 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "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": 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, @@ -63748,39 +63728,34 @@ "title": "Safety-Enhanced Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 45, @@ -63788,64 +63763,64 @@ "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 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": 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": 35, @@ -63858,24 +63833,34 @@ "title": "Transmission to Immunization Registries" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 56, @@ -63883,44 +63868,44 @@ "title": "Application Access - Patient Selection" }, { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 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": 174, @@ -63928,27 +63913,34 @@ "title": "Audit Report(s)" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "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" + "value": "https://www.ihs.gov/directmessaging/resources/phr/?p=phr%5CIHS-Rest-API_Application-Access.pdf\u0026flname=IHS-Rest-API_Application-Access.pdf\u0026download=1" }, { "criterion": { @@ -63956,7 +63948,15 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.ihs.gov/rpmsdirect/resources/phr/?p=phr%5CIHS-Rest-API_Application-Access.pdf\u0026flname=IHS-Rest-API_Application-Access.pdf\u0026download=1" + "value": "https://www.ihs.gov/directmessaging/resources/phr/?p=phr%5CIHS-Rest-API_Application-Access.pdf\u0026flname=IHS-Rest-API_Application-Access.pdf\u0026download=1" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.ihs.gov/cis/" } ], "acb": "SLI Compliance" @@ -63996,39 +63996,39 @@ }, "criteriaMet": [ { - "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 54, @@ -64036,19 +64036,34 @@ "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 176, @@ -64056,34 +64071,29 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, { "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 171, @@ -64091,44 +64101,49 @@ "title": "Electronic Health Information Export" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 42, @@ -64136,19 +64151,9 @@ "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": 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, @@ -64156,19 +64161,14 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" } ], "apiDocumentation": [ @@ -64234,14 +64234,14 @@ }, "criteriaMet": [ { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 12, @@ -64249,59 +64249,59 @@ "title": "Family Health History" }, { - "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": 33, + "number": "170.315 (d)(5)", + "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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, - { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" - }, { "id": 13, "number": "170.315 (a)(13)", "title": "Patient-Specific Education Resources" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 29, + "number": "170.315 (d)(1)", + "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": 3, @@ -64309,19 +64309,19 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 4, @@ -64329,74 +64329,74 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 180, @@ -64467,29 +64467,29 @@ }, "criteriaMet": [ { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 4, @@ -64497,29 +64497,34 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 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": 32, @@ -64527,14 +64532,14 @@ "title": "Amendments" }, { - "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 9, @@ -64542,84 +64547,79 @@ "title": "Clinical Decision Support" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 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": 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": 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": 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": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 171, @@ -64627,19 +64627,19 @@ "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 33, @@ -64647,25 +64647,25 @@ "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" } ], "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://mu3.isequelmedasp.com/MU3API/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://mu3.isequelmedasp.com/MU3API/index.html" }, @@ -64715,24 +64715,19 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { "id": 14, @@ -64740,74 +64735,64 @@ "title": "Implantable Device List" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication 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": 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": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 176, @@ -64815,19 +64800,19 @@ "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": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 173, @@ -64835,59 +64820,59 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 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": 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, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 5, @@ -64895,40 +64880,47 @@ "title": "Demographics" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 56, + "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://genensys.com/api/" - }, { "criterion": { "id": 56, @@ -64944,6 +64936,14 @@ "title": "Application Access - All Data Request" }, "value": "https://genensys.com/api/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://genensys.com/api/" } ], "acb": "SLI Compliance" @@ -64951,7 +64951,7 @@ ] }, { - "listSourceURL": "https://dhfhirpresentation.smartcarenet.com/fhir/r4/endpoints", + "listSourceURL": "https://dhfhirpresentation.smartcarenet.com/", "softwareProducts": [ { "id": 10987, @@ -64983,19 +64983,24 @@ }, "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": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 179, @@ -65003,34 +65008,34 @@ "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 172, @@ -65038,34 +65043,24 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 4, @@ -65073,24 +65068,24 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 165, @@ -65098,69 +65093,74 @@ "title": "Transitions of Care" }, { - "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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 15, @@ -65168,34 +65168,34 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ @@ -65207,14 +65207,6 @@ }, "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, @@ -65222,10 +65214,23 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://dhfhirpresentation.smartcarenet.com/streamline/basepractice/r4/Home/ApiDocumentation" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://dev.smartcarenet.com/SmartCareEHRAPIMUStage3/swagger/ui/index" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://dhfhirpresentation.smartcarenet.com/fhir/r4/endpoints", + "softwareProducts": [ { "id": 9303, "chplProductNumber": "15.04.04.2855.Smar.05.00.1.171231", @@ -65256,29 +65261,34 @@ }, "criteriaMet": [ { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 21, @@ -65286,200 +65296,187 @@ "title": "Data Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, - { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" - }, { "id": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 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": 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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://dev.smartcarenet.com/SmartCareEHRAPIMUStage3/swagger/ui/index" - }, { "criterion": { "id": 182, @@ -65495,6 +65492,14 @@ "title": "Application Access - All Data Request" }, "value": "https://dhfhirpresentation.smartcarenet.com/streamline/basepractice/r4/Home/ApiDocumentation" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://dev.smartcarenet.com/SmartCareEHRAPIMUStage3/swagger/ui/index" } ], "acb": "Drummond Group" @@ -65534,30 +65539,20 @@ }, "criteriaMet": [ { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, { "id": 182, "number": "170.315 (g)(10)", @@ -65569,30 +65564,40 @@ "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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "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://cms.smilecdr.com/fhir-request/api-docs" }, { "criterion": { - "id": 56, - "number": "170.315 (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" } @@ -65629,14 +65634,9 @@ }, "criteriaMet": [ { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 53, @@ -65644,14 +65644,9 @@ "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 177, @@ -65663,31 +65658,33 @@ "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "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://cms.smilecdr.com/fhir-request/api-docs" - }, { "criterion": { "id": 56, @@ -65695,6 +65692,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://cms.smilecdr.com/fhir-request/api-docs" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://cms.smilecdr.com/fhir-request/api-docs" } ], "acb": "Drummond Group" @@ -65734,59 +65739,54 @@ }, "criteriaMet": [ { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 36, @@ -65794,14 +65794,9 @@ "title": "Integrity" }, { - "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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 173, @@ -65809,9 +65804,14 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 43, @@ -65819,114 +65819,119 @@ "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 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": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" } ], "apiDocumentation": [ @@ -65940,17 +65945,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://fhir.cerner.com/soarian/overview/" }, { "criterion": { - "id": 181, - "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/" } @@ -65992,19 +65997,24 @@ }, "criteriaMet": [ { - "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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 53, @@ -66012,29 +66022,34 @@ "title": "Quality Management System" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 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": 56, @@ -66042,69 +66057,54 @@ "title": "Application Access - Patient Selection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 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": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 35, @@ -66112,29 +66112,34 @@ "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 12, @@ -66142,75 +66147,75 @@ "title": "Family Health History" }, { - "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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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" }, { - "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)", - "title": "Multi-Factor Authentication" + "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, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "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://solidpractice.com/cost-limitation.php" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://solidpractice.com/cost-limitation.php" }, @@ -66260,14 +66265,14 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 37, @@ -66275,14 +66280,14 @@ "title": "Trusted Connection" }, { - "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 173, @@ -66290,9 +66295,9 @@ "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": 53, @@ -66300,9 +66305,9 @@ "title": "Quality Management System" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 54, @@ -66315,60 +66320,60 @@ "title": "Automated Numerator Recording" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 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": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" } ], "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-docs.practicegateway.net" }, { "criterion": { - "id": 182, - "number": "170.315 (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" }, @@ -66418,104 +66423,109 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, + { + "id": 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": 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": 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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 9, @@ -66523,29 +66533,19 @@ "title": "Clinical Decision Support" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 10, @@ -66553,9 +66553,9 @@ "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "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, @@ -66563,14 +66563,19 @@ "title": "Emergency Access" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 180, @@ -66578,14 +66583,14 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ @@ -66599,17 +66604,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.correctek.com/cost-disclosure-and-transparency/" }, { "criterion": { - "id": 181, - "number": "170.315 (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/" } @@ -66651,9 +66656,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, @@ -66661,49 +66666,49 @@ "title": "Demographics" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 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, - "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 165, @@ -66711,9 +66716,9 @@ "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": 2, @@ -66721,24 +66726,34 @@ "title": "CPOE - Laboratory" }, { - "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 29, @@ -66746,24 +66761,19 @@ "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 9, @@ -66771,14 +66781,19 @@ "title": "Clinical Decision Support" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 3, @@ -66786,50 +66801,40 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "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://strateqhealth.com/wp-content/uploads/2023/12/Strateq-SmartOnFHIR-API.pdf" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://strateqhealth.com/wp-content/uploads/2023/12/Strateq-SmartOnFHIR-API.pdf" }, @@ -66879,79 +66884,24 @@ }, "criteriaMet": [ { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 56, @@ -66959,9 +66909,9 @@ "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": 26, @@ -66969,9 +66919,9 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 54, @@ -66979,14 +66929,19 @@ "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": 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": 39, @@ -66994,14 +66949,9 @@ "title": "Accounting of Disclosures" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 182, @@ -67009,19 +66959,19 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 51, @@ -67029,19 +66979,24 @@ "title": "Automated Measure Calculation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 1, @@ -67049,32 +67004,90 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 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" } ], "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": 181, @@ -67090,14 +67103,6 @@ "title": "Application Access - Patient Selection" }, "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" @@ -67137,39 +67142,19 @@ }, "criteriaMet": [ { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 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": 5, @@ -67177,14 +67162,19 @@ "title": "Demographics" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 33, @@ -67192,19 +67182,19 @@ "title": "Automatic Access Time-out" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 182, @@ -67212,45 +67202,75 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, { "id": 37, "number": "170.315 (d)(9)", @@ -67261,60 +67281,40 @@ "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": 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": 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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 173, @@ -67322,24 +67322,29 @@ "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": 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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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" } ], "apiDocumentation": [ @@ -67404,65 +67409,70 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ + { + "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": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, { "id": 59, "number": "170.315 (h)(1)", "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": 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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 34, @@ -67470,84 +67480,84 @@ "title": "Emergency Access" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 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": 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": 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": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 29, @@ -67559,30 +67569,25 @@ "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ @@ -67648,74 +67653,69 @@ }, "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": 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": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 173, @@ -67723,9 +67723,14 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 51, @@ -67733,24 +67738,24 @@ "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 4, @@ -67758,29 +67763,24 @@ "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { "id": 36, @@ -67788,37 +67788,50 @@ "title": "Integrity" }, { - "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": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://ulrichmedicalconcepts.com/home/the-ehr/meaningful-use/cost-disclosure-and-transparency/" + }, { "criterion": { "id": 182, @@ -67834,14 +67847,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://ulrichmedicalconcepts.com/home/the-ehr/meaningful-use/cost-disclosure-and-transparency/" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://ulrichmedicalconcepts.com/home/the-ehr/meaningful-use/cost-disclosure-and-transparency/" } ], "acb": "SLI Compliance" @@ -67881,49 +67886,24 @@ }, "criteriaMet": [ { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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, @@ -67935,50 +67915,65 @@ "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": 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": 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": 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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 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, @@ -67986,34 +67981,39 @@ "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 165, @@ -68021,24 +68021,29 @@ "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 34, @@ -68046,25 +68051,25 @@ "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" } ], "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.kareo.com/macra-mips" }, { "criterion": { - "id": 181, - "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.kareo.com/macra-mips" }, @@ -68113,16 +68118,6 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, { "id": 32, "number": "170.315 (d)(4)", @@ -68134,19 +68129,9 @@ "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 25, @@ -68154,49 +68139,49 @@ "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 173, @@ -68204,19 +68189,19 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 9, @@ -68224,34 +68209,49 @@ "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, { - "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 171, @@ -68259,9 +68259,14 @@ "title": "Electronic Health Information Export" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ @@ -68327,29 +68332,24 @@ }, "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": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 14, @@ -68357,59 +68357,39 @@ "title": "Implantable Device List" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "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": 178, @@ -68417,9 +68397,14 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 173, @@ -68427,39 +68412,69 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, { - "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, + { + "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": 42, @@ -68467,44 +68482,44 @@ "title": "Patient Health Information Capture" }, { - "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": 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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 28, @@ -68512,54 +68527,44 @@ "title": "Clinical Quality Measures - Filter" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "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": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 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": 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": 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": 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" } ], "apiDocumentation": [ @@ -68625,19 +68630,19 @@ }, "criteriaMet": [ { - "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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 53, @@ -68645,19 +68650,24 @@ "title": "Quality Management System" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { "id": 35, @@ -68665,44 +68675,44 @@ "title": "End-User Device Encryption" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 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" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 173, @@ -68710,84 +68720,99 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 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": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "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": 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": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 59, @@ -68795,112 +68820,100 @@ "title": "Direct Project" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 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": 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": 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": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" + }, + { + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { "id": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, { "id": 169, "number": "170.315 (b)(8)", "title": "Security Tags - Summary of Care - Receive" }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "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": 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": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.trimedtech.com/Documentation/FHIRAPI/FHIRAPI.html" + }, { "criterion": { "id": 181, @@ -68916,14 +68929,6 @@ "title": "Application Access - Patient Selection" }, "value": "http://www.trimedtech.com/Documentation/PatientAPI/PatientAPI.html" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.trimedtech.com/Documentation/FHIRAPI/FHIRAPI.html" } ], "acb": "SLI Compliance" @@ -68963,45 +68968,30 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, { "id": 171, "number": "170.315 (b)(10)", @@ -69013,29 +69003,44 @@ "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 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": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ @@ -69085,59 +69090,59 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 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": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 51, @@ -69145,24 +69150,19 @@ "title": "Automated Measure Calculation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 59, @@ -69170,29 +69170,19 @@ "title": "Direct Project" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 37, @@ -69200,14 +69190,9 @@ "title": "Trusted Connection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "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": 56, @@ -69215,27 +69200,47 @@ "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://lmdmzprodws.landmarkhealth.org/docs/SmartOnFHIR%20API%20Documentation%20template.pdf" }, @@ -69249,9 +69254,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://lmdmzprodws.landmarkhealth.org/docs/SmartOnFHIR%20API%20Documentation%20template.pdf" } @@ -69292,70 +69297,85 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "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": 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": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 12, @@ -69363,14 +69383,29 @@ "title": "Family Health History" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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, @@ -69378,59 +69413,59 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 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": 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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 178, @@ -69438,70 +69473,40 @@ "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "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://www.interopengine.com/2017/open-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.interopengine.com/2017/open-api-documentation.html" }, @@ -69551,54 +69556,69 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 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": 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": 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": 37, @@ -69606,29 +69626,34 @@ "title": "Trusted Connection" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 5, @@ -69636,14 +69661,19 @@ "title": "Demographics" }, { - "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 35, @@ -69651,14 +69681,19 @@ "title": "End-User Device Encryption" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 3, @@ -69666,44 +69701,34 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 56, @@ -69711,34 +69736,14 @@ "title": "Application Access - Patient Selection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 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": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ @@ -69804,9 +69809,19 @@ }, "criteriaMet": [ { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 53, @@ -69814,34 +69829,44 @@ "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 182, + "number": "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": 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": 33, @@ -69849,160 +69874,132 @@ "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "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": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" - }, { "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 171, + "number": "170.315 (b)(10)", + "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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://emr.vohrawoundteam.com/SmartOnFHIR_API_Doc_g7910.pdf" - }, { "criterion": { "id": 56, @@ -70018,6 +70015,14 @@ "title": "Application Access - All Data Request" }, "value": "https://emr.vohrawoundteam.com/SmartOnFHIR_API_Doc_g7910.pdf" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://emr.vohrawoundteam.com/SmartOnFHIR_API_Doc_g7910.pdf" } ], "acb": "Drummond Group" @@ -70057,39 +70062,19 @@ }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 52, @@ -70097,64 +70082,64 @@ "title": "Safety-Enhanced Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 165, @@ -70167,59 +70152,79 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "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": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, { "id": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 1, @@ -70227,29 +70232,29 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "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" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 25, @@ -70258,14 +70263,6 @@ } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://allegiancemd.com/fhir-api-documentation" - }, { "criterion": { "id": 181, @@ -70274,6 +70271,14 @@ }, "value": "https://allegiancemd.com/developer-guide-api-help/" }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://allegiancemd.com/fhir-api-documentation" + }, { "criterion": { "id": 56, @@ -70320,54 +70325,34 @@ }, "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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 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": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer 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": 53, @@ -70375,44 +70360,44 @@ "title": "Quality Management System" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 25, @@ -70420,24 +70405,24 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 44, @@ -70445,39 +70430,44 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 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": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 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": 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": 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": 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, @@ -70485,14 +70475,24 @@ "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 14, @@ -70500,24 +70500,39 @@ "title": "Implantable Device List" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 172, @@ -70525,37 +70540,27 @@ "title": "Clinical Quality Measures - Report" }, { - "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://developer.veradigm.com/" }, @@ -70569,9 +70574,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.veradigm.com/" } @@ -70608,64 +70613,64 @@ }, "criteriaMet": [ { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 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": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "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": 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": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 35, @@ -70673,24 +70678,19 @@ "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 182, @@ -70698,59 +70698,64 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 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": 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": 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": 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": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 181, @@ -70758,84 +70763,84 @@ "title": "Application Access - All Data Request" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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" } ], "apiDocumentation": [ @@ -70896,29 +70901,29 @@ }, "criteriaMet": [ { - "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": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 43, @@ -70926,109 +70931,129 @@ "title": "Transmission to Immunization Registries" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 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": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, { "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 12, @@ -71036,39 +71061,44 @@ "title": "Family Health History" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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, - "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": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 42, @@ -71076,14 +71106,9 @@ "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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 56, @@ -71091,42 +71116,30 @@ "title": "Application Access - Patient Selection" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://developer.veradigm.com/" + }, { "criterion": { "id": 181, @@ -71142,14 +71155,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.veradigm.com/" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://developer.veradigm.com/" } ], "acb": "Drummond Group" @@ -71184,99 +71189,104 @@ }, "criteriaMet": [ { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 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": 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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 59, @@ -71284,39 +71294,49 @@ "title": "Direct Project" }, { - "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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 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": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 181, @@ -71324,54 +71344,54 @@ "title": "Application Access - All Data Request" }, { - "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": 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": 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": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 179, @@ -71379,50 +71399,27 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://developer.veradigm.com/" - }, { "criterion": { "id": 182, @@ -71438,6 +71435,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" @@ -71477,34 +71482,34 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 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, @@ -71512,44 +71517,24 @@ "title": "Trusted Connection" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" - }, - { - "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 43, @@ -71562,49 +71547,39 @@ "title": "Implantable Device List" }, { - "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": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 59, @@ -71612,14 +71587,19 @@ "title": "Direct Project" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 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, @@ -71627,39 +71607,39 @@ "title": "Demographics" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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": 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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 172, @@ -71667,14 +71647,14 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 177, @@ -71682,14 +71662,19 @@ "title": "Multi-Factor Authentication" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 12, @@ -71697,9 +71682,29 @@ "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "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": 1, @@ -71708,14 +71713,6 @@ } ], "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": 56, @@ -71731,6 +71728,14 @@ "title": "Standardized API for Patient and Population Services" }, "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" @@ -71769,25 +71774,70 @@ "name": "Active" }, "criteriaMet": [ + { + "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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 25, @@ -71795,24 +71845,29 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, + { + "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 166, @@ -71820,24 +71875,39 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 12, @@ -71845,105 +71915,40 @@ "title": "Family Health History" }, { - "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": 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" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.vision-works.com/cert/FHIR/FHIRDocumentation.pdf" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.vision-works.com/cert/FHIR/FHIRDocumentation.pdf" }, @@ -71993,39 +71998,34 @@ }, "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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 43, @@ -72033,54 +72033,54 @@ "title": "Transmission to Immunization Registries" }, { - "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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 167, @@ -72088,14 +72088,24 @@ "title": "Electronic Prescribing" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 37, @@ -72103,24 +72113,34 @@ "title": "Trusted Connection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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": 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": 173, @@ -72133,9 +72153,14 @@ "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 3, @@ -72143,65 +72168,37 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 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": 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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, - { - "id": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" - }, { "criterion": { "id": 56, @@ -72217,6 +72214,14 @@ "title": "Application Access - All Data Request" }, "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" } ], "acb": "Drummond Group" @@ -72251,9 +72256,14 @@ }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 172, @@ -72261,9 +72271,9 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 42, @@ -72271,9 +72281,14 @@ "title": "Patient Health Information Capture" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 174, @@ -72281,19 +72296,9 @@ "title": "Audit Report(s)" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 53, @@ -72301,34 +72306,19 @@ "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": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 54, @@ -72336,14 +72326,14 @@ "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 14, @@ -72351,9 +72341,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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 43, @@ -72361,19 +72356,24 @@ "title": "Transmission to Immunization Registries" }, { - "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 37, @@ -72381,14 +72381,14 @@ "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 5, @@ -72396,57 +72396,70 @@ "title": "Demographics" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 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": 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": 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": 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" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" + }, { "criterion": { "id": 56, @@ -72462,14 +72475,6 @@ "title": "Application Access - All Data Request" }, "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" } ], "acb": "Leidos" @@ -72509,109 +72514,149 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 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": 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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, { "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 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": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 33, @@ -72619,14 +72664,14 @@ "title": "Automatic Access Time-out" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 171, @@ -72638,113 +72683,73 @@ "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" - }, - { - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 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": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, { "id": 13, "number": "170.315 (a)(13)", "title": "Patient-Specific Education Resources" }, { - "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer 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://api.wrshealth.com/api/docs/mu/index.html" }, @@ -72758,9 +72763,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://api.wrshealth.com/api/docs/mu/index.html" } @@ -72802,49 +72807,39 @@ }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 1, @@ -72852,19 +72847,9 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 9, @@ -72872,14 +72857,9 @@ "title": "Clinical Decision Support" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 3, @@ -72887,24 +72867,29 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 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": 53, @@ -72912,79 +72897,74 @@ "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "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": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" - }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, { - "id": 177, - "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 44, @@ -72992,19 +72972,14 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 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": 172, @@ -73012,9 +72987,24 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { "id": 179, @@ -73022,9 +73012,24 @@ "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": 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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ @@ -73038,17 +73043,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://docs.webchartnow.com/resources/system-specifications/fhir-application-programming-interface-api/" }, { "criterion": { - "id": 182, - "number": "170.315 (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.webchartnow.com/resources/system-specifications/fhir-application-programming-interface-api/" } @@ -73090,44 +73095,29 @@ }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 59, @@ -73140,14 +73130,9 @@ "title": "Integrity" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 29, @@ -73155,14 +73140,14 @@ "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 182, @@ -73170,19 +73155,19 @@ "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 173, @@ -73190,50 +73175,62 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 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, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://fhir.qa.welligent.com/dhit/109/r4/Home/ApiDocumentation" - }, { "criterion": { "id": 181, @@ -73249,6 +73246,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://fhir.qa.welligent.com/dhit/109/r4/Home/ApiDocumentation" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://fhir.qa.welligent.com/dhit/109/r4/Home/ApiDocumentation" } ], "acb": "SLI Compliance" @@ -73288,14 +73293,9 @@ }, "criteriaMet": [ { - "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": 37, @@ -73303,24 +73303,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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 174, @@ -73328,9 +73313,14 @@ "title": "Audit Report(s)" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 177, @@ -73338,29 +73328,29 @@ "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": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 180, @@ -73373,24 +73363,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 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": 172, @@ -73403,34 +73388,39 @@ "title": "Amendments" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "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": 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": 36, @@ -73438,12 +73428,35 @@ "title": "Integrity" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 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" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://zoobooksystems.com/api-documentation/" + }, { "criterion": { "id": 182, @@ -73459,14 +73472,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://zoobooksystems.com/disclosures/" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://zoobooksystems.com/api-documentation/" } ], "acb": "Drummond Group" @@ -73506,94 +73511,74 @@ }, "criteriaMet": [ { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "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": 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": 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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 54, @@ -73601,44 +73586,44 @@ "title": "Accessibility-Centered 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": 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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 180, @@ -73646,14 +73631,9 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 9, @@ -73661,19 +73641,44 @@ "title": "Clinical Decision Support" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 176, @@ -73681,40 +73686,32 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.zoommd.com/zoommd-api" - }, { "criterion": { "id": 182, @@ -73730,6 +73727,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://www.zoommd.com/zoommd-api" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.zoommd.com/zoommd-api" } ], "acb": "Drummond Group" @@ -73769,49 +73774,69 @@ }, "criteriaMet": [ { - "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "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": 34, @@ -73819,34 +73844,29 @@ "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": 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": 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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 28, @@ -73854,74 +73874,74 @@ "title": "Clinical Quality Measures - Filter" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 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": 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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 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": 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": 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": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 4, @@ -73929,9 +73949,9 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "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": 9, @@ -73939,34 +73959,19 @@ "title": "Clinical Decision Support" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 174, @@ -73974,32 +73979,32 @@ "title": "Audit Report(s)" }, { - "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": 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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" }, @@ -74013,9 +74018,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" } @@ -74052,39 +74057,49 @@ }, "criteriaMet": [ { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 25, @@ -74092,29 +74107,24 @@ "title": "Clinical Quality Measures - Record and 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 15, @@ -74122,119 +74132,114 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "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": 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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 28, @@ -74242,55 +74247,55 @@ "title": "Clinical Quality Measures - Filter" }, { - "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 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": 182, - "number": "170.315 (g)(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.athenahealth.com/api/resources/complete_list_athena_apis" }, @@ -74335,44 +74340,34 @@ }, "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 182, - "number": "170.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": 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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 165, @@ -74380,84 +74375,89 @@ "title": "Transitions of Care" }, { - "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": 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": 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": 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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "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": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 32, @@ -74465,24 +74465,29 @@ "title": "Amendments" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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": 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": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 36, @@ -74490,14 +74495,9 @@ "title": "Integrity" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 51, @@ -74505,14 +74505,14 @@ "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 33, @@ -74520,24 +74520,29 @@ "title": "Automatic Access Time-out" }, { - "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ @@ -74551,17 +74556,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.athenahealth.com/api/resources/complete_list_athena_apis" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" } @@ -74598,34 +74603,34 @@ }, "criteriaMet": [ { - "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": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 53, @@ -74633,34 +74638,29 @@ "title": "Quality Management System" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "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": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 9, @@ -74668,14 +74668,24 @@ "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 5, @@ -74683,14 +74693,24 @@ "title": "Demographics" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 173, @@ -74698,19 +74718,14 @@ "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 59, @@ -74718,44 +74733,34 @@ "title": "Direct Project" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 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": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 3, @@ -74763,55 +74768,47 @@ "title": "CPOE - Diagnostic Imaging" }, { - "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 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://docs.athenahealth.com/api/resources/complete_list_athena_apis" - }, { "criterion": { "id": 56, @@ -74827,6 +74824,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" @@ -74865,50 +74870,35 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ - { - "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 52, @@ -74916,9 +74906,19 @@ "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "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": 165, @@ -74926,14 +74926,24 @@ "title": "Transitions of Care" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device 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": 167, @@ -74941,9 +74951,14 @@ "title": "Electronic Prescribing" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 25, @@ -74951,24 +74966,19 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 174, @@ -74976,19 +74986,24 @@ "title": "Audit Report(s)" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 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": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 2, @@ -74996,44 +75011,34 @@ "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data 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": 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": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 177, @@ -75041,42 +75046,50 @@ "title": "Multi-Factor Authentication" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "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": 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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://mydata.athenahealth.com/home" + }, { "criterion": { "id": 56, @@ -75092,14 +75105,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" @@ -75134,34 +75139,29 @@ }, "criteriaMet": [ { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 25, @@ -75169,34 +75169,44 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 176, @@ -75204,64 +75214,64 @@ "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": 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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 167, @@ -75269,59 +75279,54 @@ "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 171, @@ -75329,24 +75334,24 @@ "title": "Electronic Health Information Export" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "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": 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" } ], "apiDocumentation": [ @@ -75360,17 +75365,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://mydata.athenahealth.com/home" }, { "criterion": { - "id": 182, - "number": "170.315 (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" } @@ -75407,9 +75412,14 @@ }, "criteriaMet": [ { - "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 179, @@ -75417,79 +75427,64 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 170, @@ -75497,49 +75492,34 @@ "title": "Care Plan" }, { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 36, @@ -75547,9 +75527,14 @@ "title": "Integrity" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 3, @@ -75557,14 +75542,14 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 167, @@ -75572,44 +75557,39 @@ "title": "Electronic Prescribing" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 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": 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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 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": 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": 42, @@ -75620,22 +75600,47 @@ "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://mydata.athenahealth.com/home" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://mydata.athenahealth.com/home" }, @@ -75680,19 +75685,29 @@ }, "criteriaMet": [ { - "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 171, @@ -75700,39 +75715,39 @@ "title": "Electronic Health Information Export" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 35, @@ -75740,29 +75755,19 @@ "title": "End-User Device Encryption" }, { - "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": 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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 14, @@ -75770,29 +75775,14 @@ "title": "Implantable Device List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "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": 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": 182, @@ -75800,14 +75790,14 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 33, @@ -75815,19 +75805,14 @@ "title": "Automatic Access Time-out" }, { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 170, @@ -75835,9 +75820,29 @@ "title": "Care Plan" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 12, @@ -75845,19 +75850,19 @@ "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 34, @@ -75865,42 +75870,42 @@ "title": "Emergency Access" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 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": 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" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://mydata.athenahealth.com/home" }, @@ -75914,9 +75919,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://mydata.athenahealth.com/home" } @@ -75957,170 +75962,175 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, { "id": 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": 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": 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": 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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 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": 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": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, { "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 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": 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": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 51, @@ -76128,34 +76138,29 @@ "title": "Automated Measure Calculation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 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": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, - { - "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ @@ -76221,104 +76226,94 @@ }, "criteriaMet": [ { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, { "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 8, @@ -76326,54 +76321,44 @@ "title": "Medication Allergy List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 10, @@ -76381,49 +76366,49 @@ "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "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": 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": 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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 178, @@ -76431,17 +76416,45 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "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.trimedtech.com/Documentation/PatientAPI/PatientAPI.html" + }, { "criterion": { "id": 182, @@ -76457,14 +76470,6 @@ "title": "Application Access - All Data Request" }, "value": "https://www.trimedtech.com/Documentation/PatientAPI/PatientAPI.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" @@ -76504,39 +76509,14 @@ }, "criteriaMet": [ { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 12, @@ -76544,34 +76524,34 @@ "title": "Family Health History" }, { - "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 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": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 51, @@ -76579,24 +76559,39 @@ "title": "Automated Measure Calculation" }, { - "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": 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": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 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": 5, @@ -76604,9 +76599,9 @@ "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 53, @@ -76614,34 +76609,29 @@ "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 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": 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": 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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 1, @@ -76649,19 +76639,24 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 4, @@ -76669,24 +76664,9 @@ "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 170, @@ -76699,14 +76679,24 @@ "title": "Electronic Prescribing" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 54, @@ -76714,29 +76704,44 @@ "title": "Accessibility-Centered Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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": 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://developer.ipatientcare.net/DeveloperResources/WebHelpFHIR/" + "value": "https://ipatientcare.com/onc-acb-certified-2015-edition/" }, { "criterion": { @@ -76748,11 +76753,11 @@ }, { "criterion": { - "id": 181, - "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://ipatientcare.com/onc-acb-certified-2015-edition/" + "value": "https://developer.ipatientcare.net/DeveloperResources/WebHelpFHIR/" } ], "acb": "Drummond Group" @@ -76792,79 +76797,84 @@ }, "criteriaMet": [ { - "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": 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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 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, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 34, @@ -76872,104 +76882,94 @@ "title": "Emergency Access" }, { - "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": 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": 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": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 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": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 9, @@ -76977,42 +76977,47 @@ "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 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" } ], "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.eclinicalworks.com" }, @@ -77026,9 +77031,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://fhir.eclinicalworks.com" } @@ -77065,34 +77070,34 @@ }, "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 177, @@ -77100,14 +77105,19 @@ "title": "Multi-Factor Authentication" }, { - "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": 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": 49, @@ -77115,44 +77125,44 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "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": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 54, @@ -77160,24 +77170,24 @@ "title": "Accessibility-Centered Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 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": 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": 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": 37, @@ -77185,89 +77195,74 @@ "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 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, @@ -77275,17 +77270,27 @@ "title": "Safety-Enhanced 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "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" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://fhir.eclinicalworks.com/" }, @@ -77299,9 +77304,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://fhir.eclinicalworks.com/" } @@ -77338,19 +77343,14 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 49, @@ -77358,44 +77358,49 @@ "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 37, @@ -77403,89 +77408,69 @@ "title": "Trusted Connection" }, { - "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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 4, @@ -77493,19 +77478,14 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 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": 177, @@ -77513,52 +77493,77 @@ "title": "Multi-Factor Authentication" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "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" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://fhir.eclinicalworks.com" }, @@ -77572,9 +77577,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://fhir.eclinicalworks.com" } @@ -77616,14 +77621,9 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 25, @@ -77631,14 +77631,14 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 34, @@ -77646,130 +77646,127 @@ "title": "Emergency Access" }, { - "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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 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": 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": 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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 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" - }, - "value": "https://www.edermehr.com/ederm-onc-certified" - }, { "criterion": { "id": 182, @@ -77785,6 +77782,14 @@ "title": "Application Access - All Data Request" }, "value": "https://www.edermehr.com/ederm-onc-certified" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.edermehr.com/ederm-onc-certified" } ], "acb": "Drummond Group" @@ -77824,9 +77829,9 @@ }, "criteriaMet": [ { - "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": 52, @@ -77834,14 +77839,9 @@ "title": "Safety-Enhanced Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 5, @@ -77849,9 +77849,24 @@ "title": "Demographics" }, { - "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "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": 15, @@ -77859,24 +77874,24 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "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": 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": 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": 59, @@ -77884,79 +77899,79 @@ "title": "Direct Project" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 25, @@ -77964,19 +77979,24 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 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": 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": 178, @@ -77984,35 +78004,20 @@ "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": 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": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, { "id": 166, "number": "170.315 (b)(2)", @@ -78022,17 +78027,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://mu2014-stage.ehana.com/apidocs" }, { "criterion": { - "id": 181, - "number": "170.315 (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://mu2014-stage.ehana.com/apidocs" }, @@ -78082,19 +78087,14 @@ }, "criteriaMet": [ { - "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": 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, @@ -78102,64 +78102,74 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 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": 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, @@ -78167,54 +78177,54 @@ "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": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "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": 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": 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": 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": 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": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 167, @@ -78222,24 +78232,14 @@ "title": "Electronic Prescribing" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 54, @@ -78247,49 +78247,54 @@ "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ @@ -78355,9 +78360,29 @@ }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 174, @@ -78365,9 +78390,19 @@ "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 53, @@ -78375,14 +78410,14 @@ "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 56, @@ -78390,19 +78425,19 @@ "title": "Application Access - Patient Selection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 2, @@ -78410,89 +78445,59 @@ "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 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": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" } ], "apiDocumentation": [ @@ -78506,17 +78511,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://eph-solutions.com/SmartOnFHIR_API_Doc_g7910_08162022.pdf" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://eph-solutions.com/SmartOnFHIR_API_Doc_g7910_08162022.pdf" } @@ -78558,19 +78563,19 @@ }, "criteriaMet": [ { - "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": 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": 59, @@ -78578,39 +78583,29 @@ "title": "Direct Project" }, { - "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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 42, @@ -78618,14 +78613,19 @@ "title": "Patient Health Information Capture" }, { - "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": 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": 25, @@ -78633,44 +78633,39 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 26, @@ -78678,34 +78673,34 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "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": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 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": 3, @@ -78713,14 +78708,14 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 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, @@ -78728,14 +78723,14 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 12, @@ -78743,19 +78738,29 @@ "title": "Family Health History" }, { - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ @@ -78769,17 +78774,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://dexter-solutions.com/certification" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://dexter-solutions.com/certification" } @@ -78816,9 +78821,24 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "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, @@ -78826,24 +78846,24 @@ "title": "Automated Measure Calculation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 35, @@ -78851,39 +78871,39 @@ "title": "End-User Device Encryption" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 53, @@ -78891,9 +78911,9 @@ "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": 25, @@ -78901,24 +78921,29 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 176, @@ -78926,64 +78951,64 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 52, + "number": "170.315 (g)(3)", + "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" }, { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 42, @@ -78991,32 +79016,20 @@ "title": "Patient Health Information Capture" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "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": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://dexter-solutions.com/certification" + }, { "criterion": { "id": 56, @@ -79032,14 +79045,6 @@ "title": "Application Access - All Data Request" }, "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" } ], "acb": "Drummond Group" @@ -79079,29 +79084,19 @@ }, "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 60, + "number": "170.315 (h)(2)", + "title": "Direct Project, Edge Protocol, and XDR/XDM" }, { - "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": 60, - "number": "170.315 (h)(2)", - "title": "Direct Project, Edge Protocol, and XDR/XDM" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 54, @@ -79109,14 +79104,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 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": 173, @@ -79124,19 +79124,19 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 50, @@ -79144,19 +79144,24 @@ "title": "Automated Numerator Recording" }, { - "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 180, @@ -79164,17 +79169,17 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "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": "http://code.medicasoft.us/fhir_r4.html" }, @@ -79188,9 +79193,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "http://code.medicasoft.us/fhir_r4.html" } @@ -79232,84 +79237,69 @@ }, "criteriaMet": [ { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "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": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, { "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "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": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 51, @@ -79317,49 +79307,49 @@ "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": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "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": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 37, @@ -79367,74 +79357,74 @@ "title": "Trusted Connection" }, { - "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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 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": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "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": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 176, @@ -79442,37 +79432,60 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "http://www.media.geniussolutions.com/ehrTHOMAS/ehrWebApi/Help/html/Index.html" + }, { "criterion": { "id": 181, @@ -79488,14 +79501,6 @@ "title": "Application Access - Patient Selection" }, "value": "http://www.media.geniussolutions.com/ehrTHOMAS/ehrApi/Help/html/fe4e546d-07c0-5cdd-23a2-e855caf111a4.htm" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "http://www.media.geniussolutions.com/ehrTHOMAS/ehrWebApi/Help/html/Index.html" } ], "acb": "SLI Compliance" @@ -79535,94 +79540,104 @@ }, "criteriaMet": [ { - "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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 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": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 14, @@ -79630,54 +79645,49 @@ "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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 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": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 165, @@ -79685,19 +79695,14 @@ "title": "Transitions of Care" }, { - "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": 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": 42, @@ -79705,54 +79710,54 @@ "title": "Patient Health Information Capture" }, { - "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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": 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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" } ], "apiDocumentation": [ @@ -79766,17 +79771,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" } @@ -79818,24 +79823,29 @@ }, "criteriaMet": [ { - "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 32, @@ -79843,24 +79853,14 @@ "title": "Amendments" }, { - "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, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 181, @@ -79868,24 +79868,19 @@ "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 174, @@ -79893,24 +79888,34 @@ "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information 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": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 59, @@ -79918,29 +79923,34 @@ "title": "Direct Project" }, { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 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": 180, @@ -79948,19 +79958,24 @@ "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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 56, @@ -79968,44 +79983,39 @@ "title": "Application Access - Patient Selection" }, { - "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": 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": 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": 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": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 51, @@ -80013,24 +80023,19 @@ "title": "Automated Measure Calculation" }, { - "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": 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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" } ], "apiDocumentation": [ @@ -80044,17 +80049,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "http://www.interopengine.com/open-api-documentation" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "http://www.interopengine.com/open-api-documentation" } @@ -80096,39 +80101,29 @@ }, "criteriaMet": [ { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 33, @@ -80136,54 +80131,79 @@ "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 52, @@ -80191,24 +80211,14 @@ "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 32, @@ -80216,14 +80226,9 @@ "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 34, @@ -80231,47 +80236,55 @@ "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" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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://ehr.escribe.com/ehr/api/fhir/swagger-ui/" + }, { "criterion": { "id": 56, @@ -80287,14 +80300,6 @@ "title": "Application Access - All Data Request" }, "value": "https://www.lillegroup.com/esh.html" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://ehr.escribe.com/ehr/api/fhir/swagger-ui/" } ], "acb": "SLI Compliance" @@ -80333,25 +80338,20 @@ "name": "Active" }, "criteriaMet": [ - { - "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": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 7, @@ -80359,49 +80359,14 @@ "title": "Medication List" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "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": 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": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { "id": 173, @@ -80409,114 +80374,124 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 52, @@ -80524,14 +80499,9 @@ "title": "Safety-Enhanced Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 6, @@ -80539,9 +80509,24 @@ "title": "Problem List" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 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": 36, @@ -80549,14 +80534,19 @@ "title": "Integrity" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" + }, + { + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { "id": 54, @@ -80564,9 +80554,9 @@ "title": "Accessibility-Centered Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 176, @@ -80574,24 +80564,39 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "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": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" } ], "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-api.ethizo.com/" + "value": "https://www.ethizo.com/pda-api/developer-guide/" }, { "criterion": { @@ -80603,11 +80608,11 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.ethizo.com/pda-api/developer-guide/" + "value": "https://fhir-api.ethizo.com/" } ], "acb": "SLI Compliance" @@ -80646,60 +80651,55 @@ "name": "Active" }, "criteriaMet": [ - { - "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": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "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": 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": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { "id": 56, @@ -80707,54 +80707,59 @@ "title": "Application Access - Patient Selection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 15, @@ -80762,69 +80767,69 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 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": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 167, @@ -80832,44 +80837,44 @@ "title": "Electronic Prescribing" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "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": 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": 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": 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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ @@ -80881,14 +80886,6 @@ }, "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" - }, { "criterion": { "id": 56, @@ -80896,6 +80893,14 @@ "title": "Application Access - Patient Selection" }, "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" @@ -80935,29 +80940,24 @@ }, "criteriaMet": [ { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 3, @@ -80965,24 +80965,9 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 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": 177, @@ -80990,44 +80975,59 @@ "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, { - "id": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 12, @@ -81035,9 +81035,14 @@ "title": "Family Health History" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 165, @@ -81045,14 +81050,24 @@ "title": "Transitions of Care" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "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, @@ -81060,34 +81075,24 @@ "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ @@ -81101,17 +81106,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://penn-clinical.com/api-documentation" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://penn-clinical.com/api-documentation" } @@ -81153,99 +81158,94 @@ "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, - { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" - }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 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": 6, - "number": "170.315 (a)(6)", - "title": "Problem 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, { "id": 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": 7, - "number": "170.315 (a)(7)", - "title": "Medication 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": 13, @@ -81253,44 +81253,49 @@ "title": "Patient-Specific Education Resources" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 5, @@ -81298,50 +81303,42 @@ "title": "Demographics" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://lab.penn-clinical.com/ezPracticeAPIDocs/(g)(7)%20API%20Documentation.pdf" - }, { "criterion": { "id": 182, @@ -81350,6 +81347,14 @@ }, "value": "https://penn-clinical.com/api-documentation" }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://lab.penn-clinical.com/ezPracticeAPIDocs/(g)(7)%20API%20Documentation.pdf" + }, { "criterion": { "id": 181, @@ -81396,59 +81401,54 @@ }, "criteriaMet": [ { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 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": 32, @@ -81456,84 +81456,79 @@ "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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 180, @@ -81541,52 +81536,62 @@ "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": 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": 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": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "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.healogics.com/2015-certified-ehr-technology/" }, @@ -81600,9 +81605,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.healogics.com/2015-certified-ehr-technology/" } @@ -81644,19 +81649,9 @@ }, "criteriaMet": [ { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 165, @@ -81664,24 +81659,14 @@ "title": "Transitions of Care" }, { - "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 171, @@ -81689,34 +81674,29 @@ "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 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": 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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 178, @@ -81724,29 +81704,29 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 29, @@ -81754,29 +81734,39 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 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": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 176, @@ -81784,14 +81774,24 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 181, @@ -81799,17 +81799,22 @@ "title": "Application Access - All Data Request" }, { - "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" } ], "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://appstudio.interopengine.com/" }, @@ -81823,9 +81828,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://appstudio.interopengine.com/" } @@ -81862,34 +81867,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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 182, @@ -81897,29 +81887,24 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "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": 174, @@ -81927,54 +81912,54 @@ "title": "Audit Report(s)" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 173, @@ -81982,14 +81967,14 @@ "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": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { "id": 42, @@ -81997,19 +81982,24 @@ "title": "Patient Health Information Capture" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 177, @@ -82017,12 +82007,35 @@ "title": "Multi-Factor Authentication" }, { - "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://documenter.getpostman.com/view/5318713/RWgrzdoe" + }, { "criterion": { "id": 182, @@ -82038,14 +82051,6 @@ "title": "Application Access - All Data Request" }, "value": "https://documenter.getpostman.com/view/5318713/RWgrzdoe" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://documenter.getpostman.com/view/5318713/RWgrzdoe" } ], "acb": "Drummond Group" @@ -82085,9 +82090,24 @@ }, "criteriaMet": [ { - "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 166, @@ -82095,9 +82115,9 @@ "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": 34, @@ -82105,14 +82125,14 @@ "title": "Emergency Access" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 53, @@ -82120,44 +82140,14 @@ "title": "Quality Management System" }, { - "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": 180, - "number": "170.315 (g)(6)", - "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 54, @@ -82165,14 +82155,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 45, @@ -82180,34 +82175,39 @@ "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 12, @@ -82215,9 +82215,14 @@ "title": "Family Health History" }, { - "id": 171, - "number": "170.315 (b)(10)", - "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": 172, @@ -82225,75 +82230,67 @@ "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": 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": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 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": 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": 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": 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": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.icare.com/developers/" - }, { "criterion": { "id": 56, @@ -82309,6 +82306,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.icare.com/developers/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.icare.com/developers/" } ], "acb": "Drummond Group" @@ -82348,99 +82353,89 @@ }, "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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 178, @@ -82453,24 +82448,24 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 2, @@ -82478,80 +82473,82 @@ "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": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://api.mdland.com/Mdland_FHIR_API.html" - }, { "criterion": { "id": 56, @@ -82560,6 +82557,14 @@ }, "value": "https://api.mdland.com/" }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://api.mdland.com/Mdland_FHIR_API.html" + }, { "criterion": { "id": 182, @@ -82606,29 +82611,34 @@ }, "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": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 44, @@ -82636,79 +82646,59 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 37, @@ -82716,69 +82706,64 @@ "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 173, @@ -82786,9 +82771,19 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 167, @@ -82796,12 +82791,30 @@ "title": "Electronic Prescribing" }, { - "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://apiaccess.mckesson.com/apiportal-service/#/developer-docs" + }, { "criterion": { "id": 181, @@ -82817,14 +82830,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://apiaccess.mckesson.com/apiportal-service/#/login" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://apiaccess.mckesson.com/apiportal-service/#/developer-docs" } ], "acb": "Drummond Group" @@ -82864,29 +82869,49 @@ }, "criteriaMet": [ { - "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 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": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 4, @@ -82894,39 +82919,39 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 180, @@ -82934,14 +82959,14 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 174, @@ -82949,14 +82974,14 @@ "title": "Audit Report(s)" }, { - "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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 167, @@ -82969,109 +82994,89 @@ "title": "Clinical Quality Measures - Filter" }, { - "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": 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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ @@ -83085,17 +83090,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://assurecare.com/onc-acb-certified-2015-edition/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://assurecare.com/onc-acb-certified-2015-edition/" } @@ -83132,44 +83137,49 @@ }, "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 173, @@ -83177,24 +83187,24 @@ "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 59, @@ -83202,24 +83212,14 @@ "title": "Direct Project" }, { - "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": 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": 53, @@ -83227,54 +83227,49 @@ "title": "Quality Management System" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 36, @@ -83282,24 +83277,14 @@ "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 9, @@ -83307,14 +83292,14 @@ "title": "Clinical Decision Support" }, { - "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 166, @@ -83322,17 +83307,45 @@ "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "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://assurecare.com/onc-acb-certified-2015-edition/" + }, { "criterion": { "id": 181, @@ -83348,14 +83361,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://assurecare.com/onc-acb-certified-2015-edition/" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://assurecare.com/onc-acb-certified-2015-edition/" } ], "acb": "Drummond Group" @@ -83389,40 +83394,30 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, { "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 52, @@ -83430,9 +83425,14 @@ "title": "Safety-Enhanced Design" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 35, @@ -83440,19 +83440,29 @@ "title": "End-User Device Encryption" }, { - "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": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 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, @@ -83460,64 +83470,79 @@ "title": "Trusted Connection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 43, @@ -83525,19 +83550,19 @@ "title": "Transmission to Immunization Registries" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 34, @@ -83550,34 +83575,14 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { "id": 41, @@ -83585,39 +83590,39 @@ "title": "Secure Messaging" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ @@ -83631,17 +83636,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://assurecare.com/onc-acb-certified-2015-edition/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://assurecare.com/onc-acb-certified-2015-edition/" } @@ -83683,14 +83688,24 @@ }, "criteriaMet": [ { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 171, @@ -83698,34 +83713,34 @@ "title": "Electronic Health Information Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 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": 2, + "number": "170.315 (a)(2)", + "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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 12, @@ -83738,64 +83753,49 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "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": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 56, @@ -83803,24 +83803,24 @@ "title": "Application Access - Patient Selection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 173, @@ -83828,39 +83828,39 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 174, @@ -83868,45 +83868,42 @@ "title": "Audit Report(s)" }, { - "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://careconnect-uat.netsmartcloud.com/" - }, { "criterion": { "id": 56, @@ -83922,6 +83919,14 @@ "title": "Application Access - All Data Request" }, "value": "https://careconnect-uat.netsmartcloud.com/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://careconnect-uat.netsmartcloud.com/" } ], "acb": "Drummond Group" @@ -83956,144 +83961,164 @@ }, "criteriaMet": [ { - "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": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, { - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 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": 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, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 178, @@ -84101,80 +84126,52 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://careconnect-uat.netsmartcloud.com/" - }, { "criterion": { "id": 182, @@ -84190,6 +84187,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://careconnect-uat.netsmartcloud.com/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://careconnect-uat.netsmartcloud.com/" } ], "acb": "Drummond Group" @@ -84229,24 +84234,24 @@ }, "criteriaMet": [ { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 49, @@ -84254,14 +84259,9 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 181, @@ -84269,24 +84269,19 @@ "title": "Application Access - All Data Request" }, { - "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": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 41, @@ -84294,54 +84289,54 @@ "title": "Secure Messaging" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" - }, - { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" - }, - { - "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 11, "number": "170.315 (a)(11)", "title": "Smoking Status" }, + { + "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": 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": 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": 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": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 9, @@ -84349,14 +84344,14 @@ "title": "Clinical Decision Support" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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, @@ -84364,14 +84359,34 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 34, @@ -84379,24 +84394,24 @@ "title": "Emergency Access" }, { - "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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 33, @@ -84404,60 +84419,42 @@ "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 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": 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": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "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": 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": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.myhelo.com/api/#introduction" - }, { "criterion": { "id": 182, @@ -84473,6 +84470,14 @@ "title": "Application Access - All Data Request" }, "value": "https://www.myhelo.com/api/#introduction" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.myhelo.com/api/#introduction" } ], "acb": "SLI Compliance" @@ -84512,24 +84517,19 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 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": 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": 25, @@ -84537,94 +84537,94 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "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": 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": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 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": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 170, - "number": "170.315 (b)(9)", - "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": 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": 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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 4, @@ -84637,9 +84637,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 178, @@ -84647,9 +84647,9 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 1, @@ -84657,29 +84657,29 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 37, @@ -84687,60 +84687,65 @@ "title": "Trusted Connection" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" + }, + { + "id": 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://www.nablemd.com/api_fhir/index.html" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.nablemd.com/api_fhir/index.html" }, diff --git a/resources/dev_resources/MedicaidStateEndpointResourcesList.json b/resources/dev_resources/MedicaidStateEndpointResourcesList.json new file mode 100644 index 000000000..4e76b05b8 --- /dev/null +++ b/resources/dev_resources/MedicaidStateEndpointResourcesList.json @@ -0,0 +1,64 @@ +{ + "Endpoints": [ + { + "URL": "https://api.alaskafhir.com/r4", + "OrganizationName": "Alaska", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.arkansasfhir.com/r4", + "OrganizationName": "Arkansas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api-cdss-prd.safhir.io/v1/api", + "OrganizationName": "Connecticut", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.delawarefhir.com/r4", + "OrganizationName": "Delaware", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.georgiafhir.com/r4", + "OrganizationName": "Georgia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api-idmedicaid.safhir.io/v1/api", + "OrganizationName": "Idaho", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.iowafhir.com/r4", + "OrganizationName": "Iowa", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.kansasfhir.com/r4", + "OrganizationName": "Kansas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.kentuckyfhir.com/r4", + "OrganizationName": "Kentucky", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.louisianafhir.com/r4", + "OrganizationName": "Louisiana", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file diff --git a/resources/prod_resources/AdvancedMD_EndpointSources.json b/resources/prod_resources/AdvancedMD_EndpointSources.json deleted file mode 100644 index 0e3bc63c8..000000000 --- a/resources/prod_resources/AdvancedMD_EndpointSources.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "Endpoints": null -} \ No newline at end of file diff --git a/resources/prod_resources/CHPLEndpointResourcesList.json b/resources/prod_resources/CHPLEndpointResourcesList.json index c840d9c49..c2b1aff46 100644 --- a/resources/prod_resources/CHPLEndpointResourcesList.json +++ b/resources/prod_resources/CHPLEndpointResourcesList.json @@ -1,88 +1,4 @@ [ - { - "FormatType": "Lantern", - "URL": "https://inpracsys.com/fhir", - "EndpointName": "InPracSys", - "FileName": "InPracSys_EndpointSources.json" - }, - { - "FormatType": "Lantern", - "URL": "https://tenzing.docs.apiary.io/#introduction/fhir-endpoints", - "EndpointName": "Tenzing Medical LLC", - "FileName": "Tenzing_Medical_LLC_EndpointSources.json" - }, - { - "FormatType": "Lantern", - "URL": "https://documents.maximus.care", - "EndpointName": "MaxRemind Inc", - "FileName": "MaxRemind_Inc_EndpointSources.json" - }, - { - "FormatType": "Lantern", - "URL": "https://criterions.com/fhir-end-points/", - "EndpointName": "Criterions Software Inc", - "FileName": "Criterions_Software_Inc_EndpointSources.json" - }, - { - "FormatType": "Lantern", - "URL": "https://fhir.thesnfist.com/endpointlist", - "EndpointName": "Saisystems International", - "FileName": "Saisystems_International_EndpointSources.json" - }, - { - "FormatType": "Lantern", - "URL": "https://developers.greenwayhealth.com/developer-platform/page/fhir-base-urls", - "EndpointName": "Greenway Health, LLC", - "FileName": "Greenway_Health_LLC_EndpointSources.json" - }, - { - "FormatType": "Lantern", - "URL": "https://hcswebportal.corporate.hcsinc.net/HCSClinicals_FHIR/api/Endpoint?connection-type=hl7-fhir-rest", - "EndpointName": "Health Care Systems, Inc.", - "FileName": "Health_Care_Systems_Inc_EndpointSources.json" - }, - { - "FormatType": "Lantern", - "URL": "https://fhirjuno-prod-web.dssinc.com/fhir/r4/endpoints", - "EndpointName": "DSS, Inc.", - "FileName": "DSS_Inc_EndpointSources.json" - }, - { - "FormatType": "Lantern", - "URL": "https://fhir.cozeva.com/endpoints", - "EndpointName": "Applied Research Works, Inc.", - "FileName": "Applied_Research_Works_Inc_EndpointSources.json" - }, - { - "FormatType": "Lantern", - "URL": "https://dynamicfhirpresentation.dynamicfhirsandbox.com/", - "EndpointName": "Dynamic Health IT, Inc", - "FileName": "Dynamic_Health_IT_Inc_EndpointSources.json" - }, - { - "FormatType": "Lantern", - "URL": "https://dssjess-dev-web.dssinc.com/fhir/r4/endpoints", - "EndpointName": "DSS, Inc.", - "FileName": "DSS_Inc_2_EndpointSources.json" - }, - { - "FormatType": "Lantern", - "URL": "https://code.medicasoft.us/fhir_r4_endpoints.html", - "EndpointName": "MedicaSoft, LLC", - "FileName": "MedicaSoft_LLC_EndpointSources.json" - }, - { - "FormatType": "Lantern", - "URL": "https://aidbox.cx360.net/service-base-urls", - "EndpointName": "Core Solutions Inc", - "FileName": "Core_Solutions_Inc_EndpointSources.json" - }, - { - "FormatType": "Lantern", - "URL": "https://icom.imedemr.com/icom50/html/emr/mvc/pages/fhir_endpoints.php?format=csv", - "EndpointName": "i3 Healthcare Solutions, LLC", - "FileName": "i3_Healthcare_Solutions_LLC_EndpointSources.json" - }, { "FormatType": "Lantern", "URL": "https://apidocs.onemedical.io/fhir/overview/", @@ -242,8 +158,8 @@ { "FormatType": "Lantern", "URL": "https://unify-developer.chbase.com/?page=FHIRAPI", - "EndpointName": "Get Real Health", - "FileName": "Get_Real_Health_EndpointSources.json" + "EndpointName": "TruBridge, Inc.", + "FileName": "TruBridge_Inc_EndpointSources.json" }, { "FormatType": "Lantern", @@ -353,18 +269,36 @@ "EndpointName": "Compulink Healthcare Solutions", "FileName": "Compulink_Healthcare_Solutions_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://dynamicfhirpresentation.dynamicfhirsandbox.com/", + "EndpointName": "Dynamic Health IT, Inc", + "FileName": "Dynamic_Health_IT_Inc_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://www.dynamichealthit.com/dynamic-fhir-api", "EndpointName": "Dynamic Health IT, Inc", "FileName": "Dynamic_Health_IT_Inc_1_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://fhir.cozeva.com/endpoints", + "EndpointName": "Applied Research Works, Inc.", + "FileName": "Applied_Research_Works_Inc_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://qualifacts.com/api-page/_downloads/credible-fhir-org-list.json", "EndpointName": "Qualifacts Systems, LLC", "FileName": "Qualifacts_Systems_LLC_1_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://criterions.com/fhir-end-points/", + "EndpointName": "Criterions Software Inc", + "FileName": "Criterions_Software_Inc_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://www.crystalpm.com/FHIRServiceURLs.csv", @@ -377,6 +311,12 @@ "EndpointName": "CureMD.com, Inc.", "FileName": "CureMDcom_Inc_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://aidbox.cx360.net/service-base-urls", + "EndpointName": "Core Solutions Inc", + "FileName": "Core_Solutions_Inc_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://app.swaggerhub.com/apis-docs/Cyfluent/ProviderPortalApi/3.3#/FHIR/fhir", @@ -475,7 +415,7 @@ }, { "FormatType": "Lantern", - "URL": "https://fhir.myeyecarerecords.com/fhir-endpoints", + "URL": "https://smartonfhir.myeyecarerecords.com/fhir/Endpoint?_format=application/fhir+json\u0026status=active", "EndpointName": "EyeMD EMR Healthcare Systems, Inc.", "FileName": "EyeMD_EMR_Healthcare_Systems_Inc_EndpointSources.json" }, @@ -527,6 +467,18 @@ "EndpointName": "Glenwood Systems LLC", "FileName": "Glenwood_Systems_LLC_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://developers.greenwayhealth.com/developer-platform/page/fhir-base-urls", + "EndpointName": "Greenway Health, LLC", + "FileName": "Greenway_Health_LLC_EndpointSources.json" + }, + { + "FormatType": "Lantern", + "URL": "https://hcswebportal.corporate.hcsinc.net/HCSClinicals_FHIR/api/Endpoint?connection-type=hl7-fhir-rest", + "EndpointName": "Health Care Systems, Inc.", + "FileName": "Health_Care_Systems_Inc_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://hag-fhir.amazingcharts.com/ct/endpoints", @@ -551,6 +503,12 @@ "EndpointName": "Physicians EMR, LLC", "FileName": "Physicians_EMR_LLC_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://inpracsys.com/fhir", + "EndpointName": "InPracSys", + "FileName": "InPracSys_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://qualifacts.com/api-page/platform/insync/insync-fhir-org-list.html", @@ -575,12 +533,6 @@ "EndpointName": "InteliChart LLC", "FileName": "InteliChart_LLC_EndpointSources.json" }, - { - "FormatType": "Lantern", - "URL": "https://www.nextech.com/developers-portal", - "EndpointName": "Nextech", - "FileName": "Nextech_EndpointSources.json" - }, { "FormatType": "Lantern", "URL": "https://www.meditab.com/fhir/endpoints", @@ -593,12 +545,24 @@ "EndpointName": "InteropX", "FileName": "InteropX_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://fhirjuno-prod-web.dssinc.com/fhir/r4/endpoints", + "EndpointName": "DSS, Inc.", + "FileName": "DSS_Inc_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation#Api_Urls", "EndpointName": "DSS, Inc.", "FileName": "DSS_Inc_1_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://dssjess-dev-web.dssinc.com/fhir/r4/endpoints", + "EndpointName": "DSS, Inc.", + "FileName": "DSS_Inc_2_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://docs.kodjin.com/service-base-urls/", @@ -671,6 +635,12 @@ "EndpointName": "First Insight Corporation", "FileName": "First_Insight_Corporation_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://documents.maximus.care", + "EndpointName": "MaxRemind Inc", + "FileName": "MaxRemind_Inc_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://fhir.mhealthaz.com", @@ -785,6 +755,12 @@ "EndpointName": "NextGen Healthcare", "FileName": "NextGen_Healthcare_1_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://www.nextech.com/developers-portal", + "EndpointName": "Nextech", + "FileName": "Nextech_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://www.nextech.com/hubfs/Nextech%20FHIR%20Base%20URL.csv", @@ -887,6 +863,12 @@ "EndpointName": "CitiusTech, Inc.", "FileName": "CitiusTech_Inc_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://fhir.thesnfist.com/endpointlist", + "EndpointName": "Saisystems International", + "FileName": "Saisystems_International_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://open.allscripts.com/fhirendpoints", @@ -1051,10 +1033,16 @@ }, { "FormatType": "Lantern", - "URL": "https://dhfhirpresentation.smartcarenet.com/fhir/r4/endpoints", + "URL": "https://dhfhirpresentation.smartcarenet.com/", "EndpointName": "Streamline Healthcare Solutions", "FileName": "Streamline_Healthcare_Solutions_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://dhfhirpresentation.smartcarenet.com/fhir/r4/endpoints", + "EndpointName": "Streamline Healthcare Solutions", + "FileName": "Streamline_Healthcare_Solutions_1_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://smilecdr.com/docs/javascript_execution_environment/fhir_rest.html", @@ -1127,6 +1115,12 @@ "EndpointName": "NaphCare, Inc.", "FileName": "NaphCare_Inc_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://tenzing.docs.apiary.io/#introduction/fhir-endpoints", + "EndpointName": "Tenzing Medical LLC", + "FileName": "Tenzing_Medical_LLC_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://www.trimedtech.com/Documentation/FHIRAPI/FHIRAPI.html", @@ -1289,6 +1283,12 @@ "EndpointName": "Dexter Solutions Inc", "FileName": "Dexter_Solutions_Inc_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://code.medicasoft.us/fhir_r4_endpoints.html", + "EndpointName": "MedicaSoft, LLC", + "FileName": "MedicaSoft_LLC_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "http://www.media.geniussolutions.com/ehrTHOMAS/ehrWebApi/Help/html/ServiceUrl.html", @@ -1337,6 +1337,12 @@ "EndpointName": "Healogics, Inc.", "FileName": "Healogics_Inc_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://icom.imedemr.com/icom50/html/emr/mvc/pages/fhir_endpoints.php?format=csv", + "EndpointName": "i3 Healthcare Solutions, LLC", + "FileName": "i3_Healthcare_Solutions_LLC_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://www.icare.com/endpoints.csv", diff --git a/resources/prod_resources/CHPLProductsInfo.json b/resources/prod_resources/CHPLProductsInfo.json index b7e9ad78b..33eee21aa 100644 --- a/resources/prod_resources/CHPLProductsInfo.json +++ b/resources/prod_resources/CHPLProductsInfo.json @@ -31,36 +31,6 @@ "name": "Active" }, "criteriaMet": [ - { - "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": 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, "number": "170.315 (a)(1)", @@ -71,20 +41,20 @@ "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, - { - "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 37, @@ -92,24 +62,19 @@ "title": "Trusted Connection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 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": 181, - "number": "170.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": 12, @@ -117,9 +82,19 @@ "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 53, @@ -127,9 +102,19 @@ "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 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, @@ -137,14 +122,14 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 52, @@ -157,9 +142,24 @@ "title": "Transitions of Care" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ @@ -220,9 +220,19 @@ }, "criteriaMet": [ { - "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 176, @@ -230,49 +240,44 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 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": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 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": 37, @@ -280,29 +285,19 @@ "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 56, @@ -310,19 +305,9 @@ "title": "Application Access - Patient Selection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 33, @@ -330,34 +315,34 @@ "title": "Automatic Access Time-out" }, { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 36, @@ -365,39 +350,54 @@ "title": "Integrity" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, { "id": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://apidocs.chirp.app/" + "value": "https://apidocs.chirp.app/#0" }, { "criterion": { @@ -409,11 +409,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.chirp.app/#0" + "value": "https://apidocs.chirp.app/" } ], "acb": "SLI Compliance" @@ -453,34 +453,44 @@ }, "criteriaMet": [ { - "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": 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": 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": 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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { "id": 178, @@ -488,14 +498,9 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 180, @@ -503,99 +508,74 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, { "id": 26, "number": "170.315 (c)(2)", "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 36, @@ -603,62 +583,82 @@ "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://app.smartemr.com/api/api_client.php" }, @@ -672,9 +672,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://app.smartemr.com/api/api_client.php" } @@ -715,20 +715,30 @@ "name": "Active" }, "criteriaMet": [ + { + "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 12, @@ -736,19 +746,14 @@ "title": "Family Health History" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 176, @@ -756,19 +761,19 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 54, @@ -776,59 +781,39 @@ "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 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": 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" }, { "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": 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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 56, @@ -836,14 +821,29 @@ "title": "Application Access - Patient Selection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 1, @@ -851,55 +851,55 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://varian.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://varian.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" }, @@ -944,34 +944,29 @@ }, "criteriaMet": [ { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 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": 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": 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": 33, @@ -979,9 +974,9 @@ "title": "Automatic Access Time-out" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 9, @@ -989,50 +984,35 @@ "title": "Clinical Decision Support" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, { "id": 166, "number": "170.315 (b)(2)", @@ -1044,74 +1024,94 @@ "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 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": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, { - "id": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ @@ -1177,74 +1177,59 @@ }, "criteriaMet": [ { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 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": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, { - "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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 35, @@ -1252,34 +1237,34 @@ "title": "End-User Device Encryption" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 166, @@ -1287,19 +1272,14 @@ "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 25, @@ -1307,44 +1287,59 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 4, @@ -1352,9 +1347,14 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ @@ -1420,9 +1420,9 @@ }, "criteriaMet": [ { - "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": 36, @@ -1430,34 +1430,29 @@ "title": "Integrity" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 174, @@ -1465,129 +1460,129 @@ "title": "Audit Report(s)" }, { - "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 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": 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": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 1, @@ -1595,12 +1590,25 @@ "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": 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://awards.clickhelp.co/articles/#!administrator-guide/meaningfuluse" + }, { "criterion": { "id": 182, @@ -1616,14 +1624,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://demodb.footholdtechnology.com/help/docs/API_Details_Terms.pdf" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://awards.clickhelp.co/articles/#!administrator-guide/meaningfuluse" } ], "acb": "Drummond Group" @@ -1663,19 +1663,29 @@ }, "criteriaMet": [ { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 54, @@ -1683,24 +1693,39 @@ "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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "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": 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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 9, @@ -1708,74 +1733,79 @@ "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, - { - "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 166, @@ -1783,24 +1813,14 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 34, @@ -1808,32 +1828,20 @@ "title": "Emergency Access" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 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": 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://axeium.net/api/swagger/" + }, { "criterion": { "id": 182, @@ -1849,14 +1857,6 @@ "title": "Application Access - All Data Request" }, "value": "https://axeium.net/api/swagger/" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://axeium.net/api/swagger/" } ], "acb": "SLI Compliance" @@ -1896,19 +1896,24 @@ }, "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 37, @@ -1916,9 +1921,19 @@ "title": "Trusted Connection" }, { - "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 54, @@ -1926,104 +1941,114 @@ "title": "Accessibility-Centered Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 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": 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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 51, @@ -2031,14 +2056,14 @@ "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": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 59, @@ -2046,19 +2071,14 @@ "title": "Direct Project" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 52, @@ -2066,42 +2086,22 @@ "title": "Safety-Enhanced Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 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": 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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.advancedmd.com/fhir/apis" }, @@ -2115,9 +2115,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.advancedmd.com/fhir/apis" } @@ -2154,9 +2154,24 @@ }, "criteriaMet": [ { - "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 25, @@ -2168,11 +2183,31 @@ "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": 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": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, { "id": 59, "number": "170.315 (h)(1)", @@ -2184,89 +2219,89 @@ "title": "Emergency Access" }, { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 5, @@ -2274,24 +2309,14 @@ "title": "Demographics" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 180, @@ -2299,24 +2324,9 @@ "title": "Consolidated CDA Creation Performance" }, { - "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 33, @@ -2324,24 +2334,9 @@ "title": "Automatic Access Time-out" }, { - "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": 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, @@ -2349,12 +2344,25 @@ "title": "Patient Health Information Capture" }, { - "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": 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://developer.advancedmd.com/fhir/apis" + }, { "criterion": { "id": 56, @@ -2370,14 +2378,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.advancedmd.com/fhir/apis" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://developer.advancedmd.com/fhir/apis" } ], "acb": "Drummond Group" @@ -2417,9 +2417,9 @@ }, "criteriaMet": [ { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 178, @@ -2427,19 +2427,9 @@ "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 53, @@ -2447,54 +2437,54 @@ "title": "Quality Management System" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 42, @@ -2502,29 +2492,29 @@ "title": "Patient Health Information Capture" }, { - "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 180, @@ -2532,29 +2522,39 @@ "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "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": 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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 52, @@ -2562,39 +2562,34 @@ "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 1, @@ -2602,24 +2597,29 @@ "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": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" } ], "apiDocumentation": [ @@ -2685,24 +2685,24 @@ }, "criteriaMet": [ { - "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 29, @@ -2710,19 +2710,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 53, @@ -2730,9 +2720,9 @@ "title": "Quality Management System" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 56, @@ -2740,12 +2730,30 @@ "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://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" @@ -2813,24 +2813,29 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 37, @@ -2841,11 +2846,6 @@ "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ @@ -2894,50 +2894,50 @@ "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": 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, - "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "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": 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": 54, @@ -2950,14 +2950,24 @@ "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 3, @@ -2965,14 +2975,19 @@ "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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 51, @@ -2980,94 +2995,84 @@ "title": "Automated Measure Calculation" }, { - "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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, { "id": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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, + "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 12, @@ -3075,22 +3080,17 @@ "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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.mdsynergy.com/AltheaAPIDocumentation.pdf" }, @@ -3104,9 +3104,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.mdsynergy.com/AltheaAPIDocumentation.pdf" } @@ -3148,39 +3148,44 @@ }, "criteriaMet": [ { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 4, @@ -3188,59 +3193,54 @@ "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 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": 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": 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": 25, @@ -3248,14 +3248,19 @@ "title": "Clinical Quality Measures - Record and 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": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 174, @@ -3268,64 +3273,59 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 21, "number": "170.315 (b)(6)", "title": "Data Export" }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ @@ -3339,17 +3339,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://harrisambulatory.com/ac-api-documentation/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://harrisambulatory.com/ac-api-documentation/" } @@ -3386,29 +3386,29 @@ }, "criteriaMet": [ { - "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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 29, @@ -3416,24 +3416,24 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 42, @@ -3441,19 +3441,19 @@ "title": "Patient Health Information Capture" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 173, @@ -3461,24 +3461,29 @@ "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 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": 52, @@ -3486,49 +3491,49 @@ "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": 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": 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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 36, @@ -3536,39 +3541,34 @@ "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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": 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": 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": 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" } ], "apiDocumentation": [ @@ -3582,17 +3582,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://harrisambulatory.com/ac-api-documentation/" }, { "criterion": { - "id": 181, - "number": "170.315 (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://harrisambulatory.com/ac-api-documentation/" } @@ -3629,9 +3629,14 @@ }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 53, @@ -3639,19 +3644,19 @@ "title": "Quality Management System" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 33, @@ -3659,64 +3664,69 @@ "title": "Automatic Access Time-out" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 5, @@ -3724,64 +3734,39 @@ "title": "Demographics" }, { - "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, { "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 26, @@ -3789,9 +3774,9 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 9, @@ -3799,9 +3784,14 @@ "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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 2, @@ -3809,12 +3799,30 @@ "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": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://harrisambulatory.com/ac-api-documentation/" + }, { "criterion": { "id": 56, @@ -3830,14 +3838,6 @@ "title": "Application Access - All Data Request" }, "value": "https://harrisambulatory.com/ac-api-documentation/" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://harrisambulatory.com/ac-api-documentation/" } ], "acb": "Drummond Group" @@ -3877,39 +3877,39 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 2, @@ -3917,34 +3917,34 @@ "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": 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": 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": 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": 14, @@ -3952,34 +3952,34 @@ "title": "Implantable Device List" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 56, @@ -3987,54 +3987,54 @@ "title": "Application Access - Patient Selection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" } ], "apiDocumentation": [ @@ -4046,14 +4046,6 @@ }, "value": "https://astronautehr.com/index.php/disclosures/" }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://astronautehr.com/index.php/disclosures/" - }, { "criterion": { "id": 182, @@ -4061,6 +4053,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://astronautehr.com/index.php/170-315g10-apis/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://astronautehr.com/index.php/disclosures/" } ], "acb": "SLI Compliance" @@ -4100,54 +4100,44 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "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": 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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 34, @@ -4155,19 +4145,14 @@ "title": "Emergency Access" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 166, @@ -4180,34 +4165,49 @@ "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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 5, @@ -4215,24 +4215,29 @@ "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 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": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 52, @@ -4240,34 +4245,29 @@ "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 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" } ], "apiDocumentation": [ @@ -4281,17 +4281,17 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://fhir.pai.healthcare/documentation" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://fhir.pai.healthcare/documentation" } @@ -4333,14 +4333,19 @@ }, "criteriaMet": [ { - "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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 12, @@ -4348,34 +4353,39 @@ "title": "Family Health History" }, { - "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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 37, @@ -4383,14 +4393,14 @@ "title": "Trusted Connection" }, { - "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { "id": 56, @@ -4398,19 +4408,29 @@ "title": "Application Access - Patient Selection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 180, @@ -4423,92 +4443,72 @@ "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": 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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 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": 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": 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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 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" } ], "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-api.hmsfirst.com/documents/index.html" }, @@ -4522,9 +4522,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://fhir-api.hmsfirst.com/documents/index.html" } @@ -4565,50 +4565,25 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 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": 2, @@ -4621,64 +4596,64 @@ "title": "Demographics" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 43, @@ -4686,34 +4661,29 @@ "title": "Transmission to Immunization Registries" }, { - "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 166, @@ -4721,14 +4691,19 @@ "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 173, @@ -4736,14 +4711,14 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 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, @@ -4751,40 +4726,57 @@ "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://dev.azaleahealth.com/" - }, { "criterion": { "id": 181, @@ -4800,6 +4792,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://dev.azaleahealth.com/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://dev.azaleahealth.com/" } ], "acb": "Drummond Group" @@ -4839,44 +4839,54 @@ }, "criteriaMet": [ { - "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": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 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": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 36, @@ -4884,14 +4894,14 @@ "title": "Integrity" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 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": 10, @@ -4899,74 +4909,69 @@ "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 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": 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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 172, @@ -4974,79 +4979,74 @@ "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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 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": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 176, @@ -5054,9 +5054,9 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 33, @@ -5064,14 +5064,14 @@ "title": "Automatic Access Time-out" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" } ], "apiDocumentation": [ @@ -5137,44 +5137,44 @@ }, "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": 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": 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": 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": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 29, @@ -5182,79 +5182,54 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 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": 170, "number": "170.315 (b)(9)", "title": "Care Plan" }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 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": 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": 48, @@ -5262,104 +5237,99 @@ "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 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": 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": 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": 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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 171, @@ -5367,29 +5337,34 @@ "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": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 169, @@ -5397,28 +5372,37 @@ "title": "Security Tags - Summary of Care - Receive" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - } - ], - "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.braintreehealth.com/braintree-onc-certification-2015/" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.braintreehealth.com/braintree-onc-certification-2015/" + "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": 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": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + } + ], + "apiDocumentation": [ { "criterion": { "id": 182, @@ -5426,6 +5410,22 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.braintreehealth.com/braintree-onc-certification-2015/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.braintreehealth.com/braintree-onc-certification-2015/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.braintreehealth.com/braintree-onc-certification-2015/" } ], "acb": "SLI Compliance" @@ -5465,74 +5465,74 @@ }, "criteriaMet": [ { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { "id": 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": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { "id": 181, @@ -5540,44 +5540,44 @@ "title": "Application Access - All Data Request" }, { - "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 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": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 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": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "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, @@ -5585,54 +5585,44 @@ "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 56, @@ -5640,64 +5630,64 @@ "title": "Application Access - Patient Selection" }, { - "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": 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": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 171, @@ -5705,29 +5695,39 @@ "title": "Electronic Health Information 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" } ], "apiDocumentation": [ @@ -5788,54 +5788,34 @@ }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "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": 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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 28, @@ -5843,34 +5823,39 @@ "title": "Clinical Quality Measures - Filter" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 181, - "number": "170.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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 171, @@ -5878,14 +5863,14 @@ "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 177, @@ -5893,34 +5878,24 @@ "title": "Multi-Factor Authentication" }, { - "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": 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": 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": 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": 26, @@ -5928,19 +5903,19 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 49, @@ -5948,29 +5923,24 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 53, @@ -5978,14 +5948,29 @@ "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 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": 29, @@ -5993,30 +5978,45 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://prognocis.com/fhir/FHIRAPIDocuments.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://prognocis.com/fhir/FHIRAPIDocuments.html" }, @@ -6061,59 +6061,74 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, { "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": 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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 14, @@ -6121,24 +6136,24 @@ "title": "Implantable Device List" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 3, @@ -6146,14 +6161,19 @@ "title": "CPOE - Diagnostic Imaging" }, { - "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "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": 1, @@ -6161,135 +6181,115 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 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": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://portal.inmediata.com/wp-content/uploads/2021/05/FHIR_API_DOC_Inmediata.pdf" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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" }, @@ -6339,54 +6339,54 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 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": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 33, @@ -6394,9 +6394,19 @@ "title": "Automatic Access Time-out" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "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, @@ -6404,19 +6414,14 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 173, @@ -6424,14 +6429,19 @@ "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 42, @@ -6439,19 +6449,29 @@ "title": "Patient Health Information Capture" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 9, @@ -6459,57 +6479,37 @@ "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 12, "number": "170.315 (a)(12)", "title": "Family Health History" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://betterdayhealth.net/OpenApiTestClient/Home/Documentation" }, @@ -6523,9 +6523,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://betterdayhealth.net/OpenApiTestClient/Home/Documentation" } @@ -6567,45 +6567,35 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 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": 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": 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": 50, "number": "170.315 (g)(1)", @@ -6617,9 +6607,9 @@ "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": 173, @@ -6627,25 +6617,35 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 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://app.sb.meldrx.com/swagger/index.html" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://app.sb.meldrx.com/swagger/index.html" } @@ -6687,29 +6687,29 @@ }, "criteriaMet": [ { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 44, @@ -6717,64 +6717,64 @@ "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": 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": 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": 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": 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": 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": 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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 34, @@ -6782,24 +6782,34 @@ "title": "Emergency Access" }, { - "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 35, @@ -6807,24 +6817,24 @@ "title": "End-User Device Encryption" }, { - "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": 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": 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": 42, @@ -6832,42 +6842,32 @@ "title": "Patient Health Information Capture" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "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.blueehr.com/wp-content/uploads/2020/04/blueEHR-APIs.pdf" }, @@ -6881,9 +6881,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.blueehr.com/wp-content/uploads/2020/04/blueEHR-APIs.pdf" } @@ -6925,24 +6925,19 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 174, @@ -6950,80 +6945,77 @@ "title": "Audit Report(s)" }, { - "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": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, { "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": 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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, { "id": 41, "number": "170.315 (e)(2)", "title": "Secure Messaging" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 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://bridgepatientportal.docs.apiary.io/#/introduction/fhir-bridge-patient-portal" - }, { "criterion": { "id": 56, @@ -7039,6 +7031,14 @@ "title": "Application Access - All Data Request" }, "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" @@ -7077,40 +7077,35 @@ "name": "Active" }, "criteriaMet": [ - { - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 165, @@ -7118,24 +7113,14 @@ "title": "Transitions of Care" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 29, @@ -7143,29 +7128,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 181, @@ -7177,50 +7142,65 @@ "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": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 173, @@ -7228,19 +7208,19 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 26, @@ -7248,9 +7228,24 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "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": 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": 25, @@ -7258,9 +7253,14 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ @@ -7274,17 +7274,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://broadstreetcare.com/docs" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://broadstreetcare.com/docs" } @@ -7325,105 +7325,105 @@ "name": "Active" }, "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 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": 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": 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": 180, @@ -7431,64 +7431,64 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 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": 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": 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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { "id": 36, @@ -7496,29 +7496,34 @@ "title": "Integrity" }, { - "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 177, @@ -7526,42 +7531,45 @@ "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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://ehealthline.com/dev/pdf/API_TermsOfUse.htm" + }, { "criterion": { "id": 181, @@ -7577,14 +7585,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "http://ehealthline.com/dev/pdf/FHIR%20API%20Documentation.pdf" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://ehealthline.com/dev/pdf/API_TermsOfUse.htm" } ], "acb": "SLI Compliance" @@ -7619,49 +7619,29 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 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": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 3, @@ -7669,39 +7649,44 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 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, @@ -7709,34 +7694,34 @@ "title": "Trusted Connection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 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": 53, @@ -7744,29 +7729,24 @@ "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "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": 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": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 174, @@ -7774,24 +7754,19 @@ "title": "Audit Report(s)" }, { - "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": 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": 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, @@ -7799,70 +7774,87 @@ "title": "Electronic Prescribing" }, { - "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": 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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://ehealthline.com/dev/pdf/API_TermsOfUse.htm" - }, { "criterion": { "id": 182, @@ -7878,6 +7870,14 @@ "title": "Application Access - All Data Request" }, "value": "http://ehealthline.com/dev/pdf/API_TermsOfUse.htm" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://ehealthline.com/dev/pdf/API_TermsOfUse.htm" } ], "acb": "SLI Compliance" @@ -7916,40 +7916,65 @@ "name": "Active" }, "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { "id": 172, @@ -7957,19 +7982,19 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 9, @@ -7977,24 +8002,24 @@ "title": "Clinical Decision Support" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 51, @@ -8002,19 +8027,29 @@ "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": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 25, @@ -8022,14 +8057,14 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 1, @@ -8037,14 +8072,14 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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, @@ -8052,9 +8087,9 @@ "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 33, @@ -8062,44 +8097,24 @@ "title": "Automatic Access Time-out" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 167, @@ -8107,24 +8122,9 @@ "title": "Electronic Prescribing" }, { - "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, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "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" } ], "apiDocumentation": [ @@ -8138,17 +8138,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://emds.com/certifications/" }, { "criterion": { - "id": 181, - "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://emds.com/certifications/" } @@ -8185,9 +8185,9 @@ }, "criteriaMet": [ { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 53, @@ -8195,59 +8195,64 @@ "title": "Quality Management System" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 52, @@ -8255,24 +8260,19 @@ "title": "Safety-Enhanced Design" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 15, @@ -8280,14 +8280,24 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 37, @@ -8300,34 +8310,29 @@ "title": "Care Plan" }, { - "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 4, @@ -8335,42 +8340,37 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "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": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 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" } ], "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://apitest.emds.com/documentation" }, @@ -8384,9 +8384,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://apitest.emds.com/documentation" } @@ -8400,7 +8400,7 @@ "softwareProducts": [ { "id": 10965, - "chplProductNumber": "15.04.04.1533.CHBa.20.03.0.220819", + "chplProductNumber": "15.04.04.3104.CHBa.20.03.0.220819", "edition": { "id": 3, "name": "2015" @@ -8410,8 +8410,8 @@ "name": "" }, "developer": { - "id": 534, - "name": "Get Real Health" + "id": 2105, + "name": "TruBridge, Inc." }, "product": { "id": 3164, @@ -8428,9 +8428,14 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 171, @@ -8438,19 +8443,19 @@ "title": "Electronic Health Information Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 33, @@ -8458,9 +8463,9 @@ "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 54, @@ -8468,55 +8473,50 @@ "title": "Accessibility-Centered Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://unify-developer.chbase.com/?page=FHIRAPI" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://unify-developer.chbase.com/?page=FHIRAPI" }, @@ -8566,29 +8566,19 @@ }, "criteriaMet": [ { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 54, @@ -8596,34 +8586,29 @@ "title": "Accessibility-Centered Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 53, @@ -8631,9 +8616,9 @@ "title": "Quality Management System" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 33, @@ -8641,39 +8626,69 @@ "title": "Automatic Access Time-out" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 4, @@ -8681,44 +8696,44 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 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": 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": 12, @@ -8726,42 +8741,27 @@ "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://docs.canvasmedical.com/api/" }, @@ -8775,9 +8775,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.canvasmedical.com/api/" } @@ -8819,69 +8819,94 @@ }, "criteriaMet": [ { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 174, @@ -8889,19 +8914,19 @@ "title": "Audit Report(s)" }, { - "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": 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": 37, @@ -8909,49 +8934,59 @@ "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": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 170, @@ -8959,77 +8994,50 @@ "title": "Care Plan" }, { - "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": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.acurussolutions.com/Certification.html" + }, { "criterion": { "id": 181, @@ -9045,14 +9053,6 @@ "title": "Application Access - Patient Selection" }, "value": "http://www.acurussolutions.com/Certification.html" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.acurussolutions.com/Certification.html" } ], "acb": "SLI Compliance" @@ -9092,19 +9092,19 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 43, @@ -9112,39 +9112,34 @@ "title": "Transmission to Immunization Registries" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 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": 56, - "number": "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": 34, @@ -9152,19 +9147,14 @@ "title": "Emergency Access" }, { - "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": 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": 53, @@ -9172,9 +9162,19 @@ "title": "Quality Management System" }, { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 33, @@ -9182,24 +9182,29 @@ "title": "Automatic Access Time-out" }, { - "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 26, @@ -9207,49 +9212,49 @@ "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": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 36, @@ -9257,34 +9262,29 @@ "title": "Integrity" }, { - "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": 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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" } ], "apiDocumentation": [ @@ -9298,17 +9298,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://api-datamanager.carecloud.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://api-datamanager.carecloud.com/" } @@ -9345,20 +9345,70 @@ }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "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": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, { "id": 43, "number": "170.315 (f)(1)", @@ -9370,9 +9420,14 @@ "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 45, @@ -9380,14 +9435,9 @@ "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 25, @@ -9395,24 +9445,24 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 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": 167, @@ -9420,29 +9470,29 @@ "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 182, @@ -9450,107 +9500,57 @@ "title": "Standardized API for Patient and Population Services" }, { - "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 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": 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": 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": [ { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://fhirdocumentation.vertexdrweb.com/ApiDocumentation.html" }, { - "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - } - ], - "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://fhirdocumentation.vertexdrweb.com/ApiDocumentation.html" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://fhirdocumentation.vertexdrweb.com/ApiDocumentation.html" + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhirdocumentation.vertexdrweb.com/ApiDocumentation.html" }, { "criterion": { @@ -9593,59 +9593,59 @@ }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "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" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 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": 15, @@ -9653,39 +9653,54 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "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": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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, @@ -9693,64 +9708,54 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 33, @@ -9758,29 +9763,19 @@ "title": "Automatic Access Time-out" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 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": 178, @@ -9788,49 +9783,54 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 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": 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": 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": 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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" } ], "apiDocumentation": [ @@ -9844,17 +9844,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://api-datamanager.carecloud.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://api-datamanager.carecloud.com/" } @@ -9896,9 +9896,9 @@ }, "criteriaMet": [ { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 37, @@ -9906,19 +9906,19 @@ "title": "Trusted Connection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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, @@ -9926,44 +9926,49 @@ "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered 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": 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": 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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 36, @@ -9971,74 +9976,74 @@ "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": 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": 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": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 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": 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": 174, @@ -10046,65 +10051,60 @@ "title": "Audit Report(s)" }, { - "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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 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": 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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://qualifacts.com/api-documentation/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://qualifacts.com/api-documentation/" }, @@ -10153,40 +10153,25 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 14, @@ -10194,99 +10179,89 @@ "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": 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": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, - { - "id": 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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, - { - "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 173, @@ -10294,17 +10269,42 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://carepaths.com/api_documentation/" }, @@ -10318,9 +10318,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://carepaths.com/api_documentation/" } @@ -10362,9 +10362,9 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 37, @@ -10372,9 +10372,14 @@ "title": "Trusted Connection" }, { - "id": 181, - "number": "170.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": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { "id": 177, @@ -10387,24 +10392,24 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 182, - "number": "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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 29, @@ -10412,30 +10417,25 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 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": 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,9 +10485,14 @@ }, "criteriaMet": [ { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 173, @@ -10495,59 +10500,49 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" - }, - { - "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": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 41, @@ -10555,39 +10550,29 @@ "title": "Secure Messaging" }, { - "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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { "id": 3, @@ -10595,104 +10580,104 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 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, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 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": 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": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 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": 13, @@ -10700,19 +10685,34 @@ "title": "Patient-Specific Education Resources" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "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": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" + }, + { + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" } ], "apiDocumentation": [ @@ -10777,180 +10777,190 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 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": 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": 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": 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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 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": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 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": 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": 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": 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": 44, "number": "170.315 (f)(2)", "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, - { - "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 15, @@ -10958,45 +10968,27 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 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": 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://dev.azaleahealth.com/" - }, { "criterion": { "id": 56, @@ -11012,6 +11004,14 @@ "title": "Application Access - All Data Request" }, "value": "https://dev.azaleahealth.com/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://dev.azaleahealth.com/" } ], "acb": "Drummond Group" @@ -11050,40 +11050,25 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" - }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 52, @@ -11091,19 +11076,34 @@ "title": "Safety-Enhanced Design" }, { - "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, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 4, @@ -11111,25 +11111,40 @@ "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 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": 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": 37, "number": "170.315 (d)(9)", @@ -11141,44 +11156,24 @@ "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 177, @@ -11186,14 +11181,14 @@ "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 180, @@ -11201,29 +11196,34 @@ "title": "Consolidated CDA Creation Performance" }, { - "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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ @@ -11237,17 +11237,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.charteasy.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.charteasy.com/" } @@ -11289,69 +11289,44 @@ }, "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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "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": 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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 167, @@ -11359,9 +11334,14 @@ "title": "Electronic Prescribing" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 180, @@ -11369,24 +11349,29 @@ "title": "Consolidated CDA Creation Performance" }, { - "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 172, @@ -11394,34 +11379,44 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 4, @@ -11429,29 +11424,54 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 177, @@ -11459,14 +11479,9 @@ "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 182, @@ -11474,30 +11489,15 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, { "id": 52, "number": "170.315 (g)(3)", @@ -11567,79 +11567,84 @@ }, "criteriaMet": [ { - "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": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 41, "number": "170.315 (e)(2)", "title": "Secure Messaging" }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, { "id": 11, "number": "170.315 (a)(11)", "title": "Smoking Status" }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, { "id": 19, "number": "170.315 (b)(4)", "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "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": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 35, @@ -11647,140 +11652,127 @@ "title": "End-User Device Encryption" }, { - "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": 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": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "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": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "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": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 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": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy 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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem 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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 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" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://beta.afoundria.com/api" - }, { "criterion": { "id": 181, @@ -11796,6 +11788,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://beta.afoundria.com/api" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://beta.afoundria.com/api" } ], "acb": "Drummond Group" @@ -11835,74 +11835,79 @@ }, "criteriaMet": [ { - "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 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, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 5, @@ -11910,29 +11915,24 @@ "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "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": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 171, @@ -11940,34 +11940,34 @@ "title": "Electronic Health Information Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 28, @@ -11975,59 +11975,59 @@ "title": "Clinical Quality Measures - Filter" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" } ], "apiDocumentation": [ @@ -12093,64 +12093,39 @@ }, "criteriaMet": [ { - "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": 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": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" - }, - { - "id": 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": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 51, @@ -12158,44 +12133,44 @@ "title": "Automated Measure Calculation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 32, @@ -12203,9 +12178,9 @@ "title": "Amendments" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 179, @@ -12213,24 +12188,24 @@ "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 178, @@ -12238,59 +12213,84 @@ "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": 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": 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": 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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" } ], "apiDocumentation": [ @@ -12302,14 +12302,6 @@ }, "value": "https://www.sabiamed.com/api-documentation" }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.sabiamed.com/api-documentation" - }, { "criterion": { "id": 56, @@ -12317,6 +12309,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://dev.sabiamed.com:8081/MPIServices/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.sabiamed.com/api-documentation" } ], "acb": "Drummond Group" @@ -12356,49 +12356,49 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 15, @@ -12406,9 +12406,9 @@ "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": 177, @@ -12416,14 +12416,14 @@ "title": "Multi-Factor Authentication" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { "id": 181, @@ -12431,104 +12431,94 @@ "title": "Application Access - All Data Request" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 52, @@ -12536,9 +12526,14 @@ "title": "Safety-Enhanced Design" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 34, @@ -12546,39 +12541,44 @@ "title": "Emergency Access" }, { - "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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 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" } ], "apiDocumentation": [ @@ -12592,19 +12592,19 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://clinicomp.com/wp-content/uploads/2024/01/250-70079_CliniComp_EHR_ONC-API-Rev-D-WO-Rev-History_00.pdf" + "value": "https://clinicomp.com/wp-content/uploads/2024/02/250-70079_CliniComp_EHR_ONC-API_USCDI.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://clinicomp.com/wp-content/uploads/2024/01/250-70079_CliniComp_EHR_ONC-API-Rev-D-WO-Rev-History_00.pdf" + "value": "https://clinicomp.com/wp-content/uploads/2024/02/250-70079_CliniComp_EHR_ONC-API_USCDI.pdf" } ], "acb": "SLI Compliance" @@ -12644,34 +12644,39 @@ }, "criteriaMet": [ { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 14, @@ -12679,29 +12684,34 @@ "title": "Implantable Device List" }, { - "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 59, @@ -12709,74 +12719,79 @@ "title": "Direct Project" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 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": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 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": 21, @@ -12784,19 +12799,14 @@ "title": "Data Export" }, { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 177, @@ -12804,90 +12814,72 @@ "title": "Multi-Factor Authentication" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 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": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 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": 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": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.goldblattsystems.com/apis" - }, { "criterion": { "id": 181, @@ -12896,6 +12888,14 @@ }, "value": "https://www.goldblattsystems.com/apis/" }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.goldblattsystems.com/apis" + }, { "criterion": { "id": 56, @@ -12942,74 +12942,69 @@ }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 42, @@ -13017,39 +13012,19 @@ "title": "Patient Health Information Capture" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 34, @@ -13057,34 +13032,39 @@ "title": "Emergency Access" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 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": 49, @@ -13092,54 +13072,74 @@ "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 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": 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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "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" } ], "apiDocumentation": [ @@ -13205,14 +13205,19 @@ }, "criteriaMet": [ { - "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 29, @@ -13220,14 +13225,24 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 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": 173, @@ -13235,19 +13250,19 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 56, @@ -13260,75 +13275,60 @@ "title": "CPOE - Laboratory" }, { - "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": 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, "number": "170.315 (d)(6)", "title": "Emergency Access" }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, { - "id": 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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "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-dev.cloudmd365.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://fhir-dev.cloudmd365.com/api/documentation" } @@ -13370,9 +13370,9 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 59, @@ -13380,34 +13380,39 @@ "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 36, @@ -13415,14 +13420,19 @@ "title": "Integrity" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 56, @@ -13430,14 +13440,14 @@ "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 29, @@ -13445,24 +13455,14 @@ "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": 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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 2, @@ -13470,9 +13470,9 @@ "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": 172, @@ -13480,39 +13480,34 @@ "title": "Clinical Quality Measures - Report" }, { - "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": 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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 176, @@ -13520,19 +13515,14 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 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": 3, @@ -13540,30 +13530,32 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "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" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.compulinkadvantage.com/compulink-fhir-api-documentation/" - }, { "criterion": { "id": 181, @@ -13579,6 +13571,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://cbsmail2.compulink-software.com/cbsscripts/xe3/api/dataconapi.exe/api/help" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.compulinkadvantage.com/compulink-fhir-api-documentation/" } ], "acb": "Drummond Group" @@ -13618,44 +13618,54 @@ }, "criteriaMet": [ { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 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": 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": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 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": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "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, @@ -13668,39 +13678,34 @@ "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "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": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 168, @@ -13708,9 +13713,14 @@ "title": "Security Tags - Summary of Care - Send" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 171, @@ -13718,9 +13728,9 @@ "title": "Electronic Health Information Export" }, { - "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": 29, @@ -13728,19 +13738,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" - }, - { - "id": 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": 180, @@ -13748,29 +13748,29 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ @@ -13784,17 +13784,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://dynamicfhirpresentation.dynamicfhirsandbox.com/dhithealth/practiceone/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://dynamicfhirpresentation.dynamicfhirsandbox.com/dhithealth/practiceone/r4/Home/ApiDocumentation" } @@ -13836,34 +13836,29 @@ }, "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": 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": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 35, @@ -13871,39 +13866,59 @@ "title": "End-User Device Encryption" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 177, @@ -13911,29 +13926,29 @@ "title": "Multi-Factor Authentication" }, { - "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 44, @@ -13946,34 +13961,24 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "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": 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": 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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 51, @@ -13984,27 +13989,22 @@ "id": 13, "number": "170.315 (a)(13)", "title": "Patient-Specific Education Resources" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://api.dynamicfhir.com/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://api.dynamicfhir.com/Home/ApiDocumentation" }, @@ -14054,85 +14054,77 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 182, "number": "170.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": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, - { - "id": 33, - "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": 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": 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": 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": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://fhir.developers.cozeva.com/" - }, { "criterion": { "id": 181, @@ -14148,6 +14140,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://fhir.developers.cozeva.com/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhir.developers.cozeva.com/" } ], "acb": "Drummond Group" @@ -14187,69 +14187,24 @@ }, "criteriaMet": [ { - "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": 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": 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": 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": 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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 51, @@ -14262,54 +14217,54 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 180, @@ -14317,14 +14272,19 @@ "title": "Consolidated CDA Creation Performance" }, { - "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": 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, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 15, @@ -14332,14 +14292,49 @@ "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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 177, @@ -14347,75 +14342,80 @@ "title": "Multi-Factor Authentication" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, { "id": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.qualifacts.com/api-documentation/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.qualifacts.com/api-documentation/" }, @@ -14465,59 +14465,59 @@ }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 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": 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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 32, @@ -14525,29 +14525,9 @@ "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 4, @@ -14555,34 +14535,39 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 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": 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": 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": 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": 56, @@ -14590,34 +14575,39 @@ "title": "Application Access - Patient Selection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 15, @@ -14625,44 +14615,54 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ @@ -14728,64 +14728,64 @@ }, "criteriaMet": [ { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "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": 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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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": 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": 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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 1, @@ -14798,74 +14798,79 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 173, @@ -14873,14 +14878,19 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 51, @@ -14888,29 +14898,19 @@ "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" } ], "apiDocumentation": [ @@ -14924,17 +14924,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": "http://www.crystalpm.com/APIDocumentation.pdf" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "http://www.crystalpm.com/APIDocumentation.pdf" } @@ -14975,80 +14975,115 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, { "id": 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": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 35, - "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": 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": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, { - "id": 44, - "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": 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": 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": 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": 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": 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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 9, @@ -15056,19 +15091,24 @@ "title": "Clinical Decision Support" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 2, @@ -15076,24 +15116,14 @@ "title": "CPOE - Laboratory" }, { - "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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "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": 52, @@ -15101,29 +15131,29 @@ "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": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 181, @@ -15131,59 +15161,29 @@ "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": 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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 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, @@ -15194,17 +15194,17 @@ "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.curemd.com/developer/fhir-apis.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.curemd.com/developer/fhir-apis.pdf" }, @@ -15253,55 +15253,40 @@ "name": "Withdrawn by ONC-ACB" }, "criteriaMet": [ - { - "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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 11, @@ -15309,14 +15294,14 @@ "title": "Smoking Status" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { "id": 13, @@ -15324,34 +15309,19 @@ "title": "Patient-Specific Education Resources" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 53, @@ -15359,49 +15329,34 @@ "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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 173, @@ -15409,9 +15364,9 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { "id": 54, @@ -15419,14 +15374,39 @@ "title": "Accessibility-Centered Design" }, { - "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { "id": 165, @@ -15434,74 +15414,94 @@ "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 21, "number": "170.315 (b)(6)", "title": "Data Export" }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 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": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ @@ -15567,39 +15567,19 @@ }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 56, @@ -15607,39 +15587,39 @@ "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": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 165, @@ -15647,70 +15627,90 @@ "title": "Transitions of Care" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, + { + "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": 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": 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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 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": 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": 39, "number": "170.315 (d)(11)", "title": "Accounting of Disclosures" }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, { "id": 3, "number": "170.315 (a)(3)", @@ -15722,42 +15722,42 @@ "title": "Clinical Quality Measures - Filter" }, { - "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "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" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.coresolutionsinc.com/web-service-api-documentation/" }, @@ -15771,9 +15771,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.coresolutionsinc.com/web-service-api-documentation/" } @@ -15815,34 +15815,24 @@ }, "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": 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": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "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": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 1, @@ -15850,64 +15840,59 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 169, @@ -15915,14 +15900,9 @@ "title": "Security Tags - Summary of Care - Receive" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 165, @@ -15930,14 +15910,14 @@ "title": "Transitions of Care" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { "id": 167, @@ -15945,19 +15925,24 @@ "title": "Electronic Prescribing" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 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, @@ -15965,9 +15950,14 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { "id": 46, @@ -15975,39 +15965,44 @@ "title": "Transmission to Cancer Registries" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 179, @@ -16015,19 +16010,14 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "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": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "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": 52, @@ -16035,9 +16025,9 @@ "title": "Safety-Enhanced Design" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 15, @@ -16045,25 +16035,27 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 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://app.swaggerhub.com/apis-docs/Cyfluent/ProviderPortalApi/3.3#/FHIR/fhir" - }, { "criterion": { "id": 56, @@ -16079,6 +16071,14 @@ "title": "Application Access - All Data Request" }, "value": "https://app.swaggerhub.com/apis-docs/Cyfluent/ProviderPortalApi/3.3#/FHIR/fhir" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://app.swaggerhub.com/apis-docs/Cyfluent/ProviderPortalApi/3.3#/FHIR/fhir" } ], "acb": "Drummond Group" @@ -16118,24 +16118,14 @@ }, "criteriaMet": [ { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 171, @@ -16143,64 +16133,54 @@ "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" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 29, @@ -16208,14 +16188,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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 33, @@ -16223,9 +16198,29 @@ "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 54, @@ -16233,14 +16228,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 51, @@ -16248,34 +16248,34 @@ "title": "Automated Measure Calculation" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 35, @@ -16283,12 +16283,20 @@ "title": "End-User Device Encryption" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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" + }, + "value": "http://podiatry.doxemr.net/DoxExtAPI/DOXAPI-Application-Access.pdf" + }, { "criterion": { "id": 182, @@ -16304,14 +16312,6 @@ "title": "Application Access - Patient Selection" }, "value": "http://podiatry.doxemr.net/DoxExtAPI/DOXAPI-Application-Access.pdf" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "http://podiatry.doxemr.net/DoxExtAPI/DOXAPI-Application-Access.pdf" } ], "acb": "SLI Compliance" @@ -16351,54 +16351,34 @@ }, "criteriaMet": [ { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" - }, - { - "id": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 33, @@ -16406,169 +16386,159 @@ "title": "Automatic Access Time-out" }, { - "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "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": 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": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 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": 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": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, { "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 39, @@ -16576,17 +16546,55 @@ "title": "Accounting of Disclosures" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, + { + "id": 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": 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://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" + }, { "criterion": { "id": 181, @@ -16602,14 +16610,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" } ], "acb": "Drummond Group" @@ -16644,49 +16644,44 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 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": 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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 2, @@ -16694,84 +16689,94 @@ "title": "CPOE - Laboratory" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 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": 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": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 169, @@ -16779,59 +16784,64 @@ "title": "Security Tags - Summary of Care - Receive" }, { - "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": 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": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 34, @@ -16839,14 +16849,14 @@ "title": "Emergency Access" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 180, @@ -16854,24 +16864,14 @@ "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" } ], "apiDocumentation": [ @@ -16932,99 +16932,99 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 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": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 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": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 21, @@ -17032,24 +17032,24 @@ "title": "Data Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 15, @@ -17057,114 +17057,114 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "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": 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": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ @@ -17178,17 +17178,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://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" } @@ -17230,29 +17230,9 @@ }, "criteriaMet": [ { - "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 42, @@ -17265,14 +17245,19 @@ "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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 44, @@ -17280,24 +17265,34 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 182, @@ -17305,24 +17300,24 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 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": 176, @@ -17330,44 +17325,44 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 53, @@ -17375,69 +17370,74 @@ "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": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ @@ -17449,14 +17449,6 @@ }, "value": "https://docs.drcloudemr.com:9443/display/DRCLOUD/End+User+DrCloudEHR+MU3+API+Documentation" }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://drcloudehr.com/drcloudehr-api-documentation/" - }, { "criterion": { "id": 56, @@ -17464,6 +17456,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://docs.drcloudemr.com:9443/display/DRCLOUD/End+User+DrCloudEHR+MU3+API+Documentation" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://drcloudehr.com/drcloudehr-api-documentation/" } ], "acb": "SLI Compliance" @@ -17503,14 +17503,14 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 33, @@ -17518,19 +17518,59 @@ "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": 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": 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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 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, @@ -17538,24 +17578,19 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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": 181, @@ -17563,14 +17598,9 @@ "title": "Application Access - All Data Request" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 36, @@ -17578,29 +17608,29 @@ "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 177, @@ -17608,9 +17638,19 @@ "title": "Multi-Factor Authentication" }, { - "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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 34, @@ -17623,59 +17663,19 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" } ], "apiDocumentation": [ @@ -17741,49 +17741,39 @@ }, "criteriaMet": [ { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 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": 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": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 35, @@ -17791,39 +17781,34 @@ "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": 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": 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": 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": 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": 166, @@ -17831,64 +17816,69 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 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": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 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": 173, @@ -17896,44 +17886,54 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ @@ -17999,39 +17999,39 @@ }, "criteriaMet": [ { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 174, @@ -18039,9 +18039,49 @@ "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 176, @@ -18049,24 +18089,19 @@ "title": "Encrypt Authentication Credentials" }, { - "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 35, @@ -18074,14 +18109,14 @@ "title": "End-User Device Encryption" }, { - "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 42, @@ -18089,39 +18124,29 @@ "title": "Patient Health Information Capture" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 56, @@ -18129,49 +18154,24 @@ "title": "Application Access - Patient Selection" }, { - "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ @@ -18185,17 +18185,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://openapi.ehnote.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://openapi.ehnote.com/" } @@ -18237,49 +18237,29 @@ }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 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": 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": 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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 181, @@ -18287,59 +18267,64 @@ "title": "Application Access - All Data Request" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 35, @@ -18347,39 +18332,39 @@ "title": "End-User Device Encryption" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 177, @@ -18387,45 +18372,60 @@ "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "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://fhirpt-stage.officeally.com/officeally/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://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" }, @@ -18470,39 +18470,44 @@ }, "criteriaMet": [ { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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": 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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 52, @@ -18510,79 +18515,59 @@ "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 51, @@ -18590,9 +18575,9 @@ "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": 54, @@ -18600,52 +18585,75 @@ "title": "Accessibility-Centered Design" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" + }, { "criterion": { "id": 56, @@ -18661,14 +18669,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -18708,49 +18708,44 @@ }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "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": 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": 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": 53, @@ -18758,9 +18753,14 @@ "title": "Quality Management System" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 29, @@ -18768,29 +18768,24 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 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": 54, @@ -18798,29 +18793,44 @@ "title": "Accessibility-Centered Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 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, @@ -18828,29 +18838,29 @@ "title": "Demographics" }, { - "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 175, @@ -18858,80 +18868,62 @@ "title": "Auditing Actions on Health Information" }, { - "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": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 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": 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": 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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 165, + "number": "170.315 (b)(1)", + "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": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.ehryourway.com/api" - }, { "criterion": { "id": 182, @@ -18947,6 +18939,14 @@ "title": "Application Access - All Data Request" }, "value": "https://www.ehryourway.com/api" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.ehryourway.com/api" } ], "acb": "SLI Compliance" @@ -18986,14 +18986,14 @@ }, "criteriaMet": [ { - "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 25, @@ -19001,39 +19001,34 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 32, - "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 53, @@ -19041,29 +19036,34 @@ "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 173, @@ -19071,64 +19071,64 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 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": 171, @@ -19141,29 +19141,29 @@ "title": "Audit Report(s)" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 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" } ], "apiDocumentation": [ @@ -19177,17 +19177,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.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,54 +19224,54 @@ }, "criteriaMet": [ { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 181, - "number": "170.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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 29, @@ -19279,44 +19279,49 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 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, + "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 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": 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": 33, @@ -19324,74 +19329,64 @@ "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 2, @@ -19399,35 +19394,32 @@ "title": "CPOE - Laboratory" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://exscribe-prod-fhir.ema-api.com/modmed/root/r4/Home/ApiDocumentation" - }, { "criterion": { "id": 181, @@ -19443,6 +19435,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://exscribemobile.com/MU/EhrApiV01/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://exscribe-prod-fhir.ema-api.com/modmed/root/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -19477,74 +19477,69 @@ }, "criteriaMet": [ { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 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": 4, @@ -19552,89 +19547,89 @@ "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": 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": 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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 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": 182, + "number": "170.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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 53, @@ -19647,14 +19642,19 @@ "title": "Clinical Decision Support" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ @@ -19668,17 +19668,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.modmed.com/public-api-v2/" }, { "criterion": { - "id": 56, - "number": "170.315 (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.modmed.com/public-api-v2/" } @@ -19714,30 +19714,45 @@ "name": "Active" }, "criteriaMet": [ + { + "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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 182, @@ -19745,54 +19760,59 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 1, @@ -19800,29 +19820,39 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 42, @@ -19835,9 +19865,14 @@ "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 36, @@ -19845,29 +19880,24 @@ "title": "Integrity" }, { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 37, @@ -19875,42 +19905,28 @@ "title": "Trusted Connection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + } + ], + "apiDocumentation": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.modmed.com/public-api-v2/" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.modmed.com/public-api-v2/" }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - } - ], - "apiDocumentation": [ { "criterion": { "id": 182, @@ -19918,22 +19934,6 @@ "title": "Standardized API for Patient and Population Services" }, "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/" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.modmed.com/public-api-v2/" } ], "acb": "Drummond Group" @@ -19972,85 +19972,100 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 174, @@ -20058,54 +20073,39 @@ "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 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": 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" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" } ], "apiDocumentation": [ @@ -20171,69 +20171,39 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 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": 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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 171, @@ -20241,39 +20211,44 @@ "title": "Electronic Health Information Export" }, { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 54, @@ -20281,19 +20256,9 @@ "title": "Accessibility-Centered Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 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, @@ -20301,24 +20266,19 @@ "title": "Electronic Prescribing" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 37, @@ -20326,19 +20286,49 @@ "title": "Trusted Connection" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 25, @@ -20346,14 +20336,19 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 56, @@ -20361,24 +20356,29 @@ "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 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": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" } ], "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.elationhealth.com/reference" + "value": "https://docs.elationhealth.com/reference/introduction" }, { "criterion": { @@ -20390,11 +20390,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://docs.elationhealth.com/reference/introduction" + "value": "https://docs.elationhealth.com/reference" } ], "acb": "Drummond Group" @@ -20433,36 +20433,6 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, { "id": 9, "number": "170.315 (a)(9)", @@ -20474,39 +20444,34 @@ "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 51, @@ -20514,44 +20479,49 @@ "title": "Automated Measure Calculation" }, { - "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 43, @@ -20559,44 +20529,44 @@ "title": "Transmission to Immunization Registries" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 52, @@ -20604,34 +20574,64 @@ "title": "Safety-Enhanced Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://apitest.enablemyhealth.com/" + "value": "https://api.enablemyhealth.com" }, { "criterion": { @@ -20643,11 +20643,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://api.enablemyhealth.com" + "value": "https://apitest.enablemyhealth.com/" } ], "acb": "SLI Compliance" @@ -20686,110 +20686,65 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "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": 168, "number": "170.315 (b)(7)", "title": "Security Tags - Summary of Care - Send" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 15, @@ -20797,74 +20752,99 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, { "id": 170, "number": "170.315 (b)(9)", "title": "Care Plan" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 46, @@ -20872,84 +20852,104 @@ "title": "Transmission to Cancer Registries" }, { - "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": 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": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 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": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 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": 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" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.endosoft.com/endosoft_documents/endovault-ehr-3/170_315_g8_g9_applicationaccess.pdf" + "value": "https://www.endosoft.com/fhir" }, { "criterion": { @@ -20961,11 +20961,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://www.endosoft.com/fhir" + "value": "https://www.endosoft.com/endosoft_documents/endovault-ehr-3/170_315_g8_g9_applicationaccess.pdf" } ], "acb": "SLI Compliance" @@ -21005,29 +21005,39 @@ }, "criteriaMet": [ { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 4, @@ -21035,34 +21045,34 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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, + "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 172, @@ -21070,29 +21080,24 @@ "title": "Clinical Quality Measures - Report" }, { - "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 54, @@ -21100,39 +21105,39 @@ "title": "Accessibility-Centered Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 178, @@ -21140,44 +21145,44 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 5, @@ -21185,14 +21190,9 @@ "title": "Demographics" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ @@ -21206,17 +21206,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://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://open.epic.com/Interface/FHIR" } @@ -21253,14 +21253,14 @@ }, "criteriaMet": [ { - "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 54, @@ -21268,19 +21268,14 @@ "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 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": 180, @@ -21288,19 +21283,14 @@ "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 35, @@ -21308,14 +21298,19 @@ "title": "End-User Device Encryption" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 52, @@ -21323,45 +21318,25 @@ "title": "Safety-Enhanced Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "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": 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": 3, "number": "170.315 (a)(3)", @@ -21373,9 +21348,34 @@ "title": "Transmission to Immunization Registries" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 9, @@ -21383,19 +21383,19 @@ "title": "Clinical Decision Support" }, { - "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 2, @@ -21403,44 +21403,44 @@ "title": "CPOE - Laboratory" }, { - "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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ @@ -21454,17 +21454,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://open.epic.com/Interface/FHIR" } @@ -21500,60 +21500,115 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, - { - "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": 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": 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": 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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 180, @@ -21561,19 +21616,19 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 166, @@ -21581,19 +21636,19 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 3, @@ -21601,44 +21656,14 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "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" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 53, @@ -21646,65 +21671,40 @@ "title": "Quality Management System" }, { - "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": 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, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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://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" }, @@ -21749,19 +21749,29 @@ }, "criteriaMet": [ { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 32, @@ -21769,29 +21779,44 @@ "title": "Amendments" }, { - "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 26, @@ -21799,49 +21824,49 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 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": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 173, @@ -21849,24 +21874,24 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 59, @@ -21874,19 +21899,19 @@ "title": "Direct Project" }, { - "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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 166, @@ -21894,14 +21919,9 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 176, @@ -21909,50 +21929,30 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 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" } ], "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" }, @@ -21997,39 +21997,39 @@ }, "criteriaMet": [ { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 181, @@ -22037,44 +22037,49 @@ "title": "Application Access - All Data Request" }, { - "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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 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": 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": 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": 165, @@ -22082,19 +22087,29 @@ "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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 34, @@ -22102,39 +22117,39 @@ "title": "Emergency Access" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 167, @@ -22142,75 +22157,60 @@ "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": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://open.epic.com/Interface/FHIR" }, @@ -22255,14 +22255,29 @@ }, "criteriaMet": [ { - "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "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": 29, @@ -22270,9 +22285,34 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 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": 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": 34, @@ -22285,19 +22325,9 @@ "title": "Trusted Connection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 165, @@ -22305,39 +22335,34 @@ "title": "Transitions of Care" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 182, @@ -22345,19 +22370,19 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 3, @@ -22365,44 +22390,39 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 172, @@ -22410,39 +22430,19 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" } ], "apiDocumentation": [ @@ -22456,17 +22456,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://open.epic.com/Interface/FHIR" } @@ -22503,24 +22503,24 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 181, @@ -22528,34 +22528,49 @@ "title": "Application Access - All Data Request" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 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": 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": 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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 56, @@ -22563,150 +22578,135 @@ "title": "Application Access - Patient Selection" }, { - "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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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, + "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - } - ], - "apiDocumentation": [ + } + ], + "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" }, @@ -22751,114 +22751,109 @@ }, "criteriaMet": [ { - "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": 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": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 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": 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": 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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 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": 21, + "number": "170.315 (b)(6)", + "title": "Data 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 172, @@ -22866,69 +22861,74 @@ "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "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": 52, @@ -22936,17 +22936,17 @@ "title": "Safety-Enhanced Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "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" }, @@ -22960,9 +22960,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://open.epic.com/Interface/FHIR" } @@ -22999,39 +22999,19 @@ }, "criteriaMet": [ { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 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, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 52, @@ -23039,34 +23019,19 @@ "title": "Safety-Enhanced Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 180, @@ -23074,9 +23039,14 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 5, @@ -23084,24 +23054,9 @@ "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 51, @@ -23109,19 +23064,19 @@ "title": "Automated Measure Calculation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 181, @@ -23129,9 +23084,19 @@ "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 35, @@ -23139,9 +23104,29 @@ "title": "End-User Device Encryption" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 171, @@ -23149,14 +23134,19 @@ "title": "Electronic Health Information Export" }, { - "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": 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": 173, @@ -23164,14 +23154,19 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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, @@ -23179,30 +23174,35 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" } ], "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" }, @@ -23247,145 +23247,155 @@ }, "criteriaMet": [ { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and 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": 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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, { "id": 36, "number": "170.315 (d)(8)", @@ -23397,60 +23407,50 @@ "title": "End-User Device Encryption" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 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": 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" }, @@ -23495,19 +23495,29 @@ }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 171, + "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 173, @@ -23515,9 +23525,9 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 43, @@ -23525,34 +23535,34 @@ "title": "Transmission to Immunization Registries" }, { - "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": 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": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 2, @@ -23560,69 +23570,49 @@ "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": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 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": 42, @@ -23630,19 +23620,14 @@ "title": "Patient Health Information Capture" }, { - "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": 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": 177, @@ -23650,24 +23635,29 @@ "title": "Multi-Factor Authentication" }, { - "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 172, @@ -23675,22 +23665,32 @@ "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": 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": 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://open.epic.com/Interface/FHIR" }, @@ -23704,9 +23704,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://open.epic.com/Interface/FHIR" } @@ -23743,24 +23743,39 @@ }, "criteriaMet": [ { - "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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 32, @@ -23768,19 +23783,19 @@ "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 43, @@ -23788,54 +23803,39 @@ "title": "Transmission to Immunization Registries" }, { - "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": 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": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 181, @@ -23843,49 +23843,54 @@ "title": "Application Access - All Data Request" }, { - "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 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": 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": 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": 33, @@ -23893,52 +23898,47 @@ "title": "Automatic Access Time-out" }, { - "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": 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": 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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "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" }, @@ -23952,9 +23952,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" } @@ -23991,34 +23991,34 @@ }, "criteriaMet": [ { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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, @@ -24026,49 +24026,59 @@ "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": 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": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 165, @@ -24076,79 +24086,74 @@ "title": "Transitions of Care" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 180, @@ -24156,14 +24161,9 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 36, @@ -24171,30 +24171,30 @@ "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://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" }, @@ -24239,29 +24239,24 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 34, + "number": "170.315 (d)(6)", + "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": 33, @@ -24269,49 +24264,49 @@ "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 59, @@ -24319,29 +24314,19 @@ "title": "Direct Project" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 12, @@ -24354,69 +24339,79 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 2, + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 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": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 29, @@ -24424,19 +24419,24 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" + }, + { + "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": [ @@ -24502,44 +24502,34 @@ }, "criteriaMet": [ { - "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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization 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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 9, @@ -24547,34 +24537,34 @@ "title": "Clinical Decision Support" }, { - "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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 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": 171, @@ -24582,34 +24572,29 @@ "title": "Electronic Health Information 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 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": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 32, @@ -24617,19 +24602,9 @@ "title": "Amendments" }, { - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 34, @@ -24637,19 +24612,24 @@ "title": "Emergency Access" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 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": 33, @@ -24657,14 +24637,34 @@ "title": "Automatic Access Time-out" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ @@ -24678,17 +24678,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://datalinksoftware.com/DataLink-FHIR-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://datalinksoftware.com/DataLink-FHIR-API-Documentation.html" } @@ -24698,7 +24698,7 @@ ] }, { - "listSourceURL": "https://fhir.myeyecarerecords.com/fhir-endpoints", + "listSourceURL": "https://smartonfhir.myeyecarerecords.com/fhir/Endpoint?_format=application/fhir+json\u0026status=active", "softwareProducts": [ { "id": 9988, @@ -24730,64 +24730,64 @@ }, "criteriaMet": [ { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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": 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": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 178, @@ -24795,29 +24795,34 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 5, @@ -24825,24 +24830,29 @@ "title": "Demographics" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 9, @@ -24850,65 +24860,47 @@ "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": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "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" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://fhir.myeyecarerecords.com/api" - }, { "criterion": { "id": 181, @@ -24924,6 +24916,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://fhir.myeyecarerecords.com/api" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://fhir.myeyecarerecords.com/api" } ], "acb": "Drummond Group" @@ -24962,6 +24962,21 @@ "name": "Active" }, "criteriaMet": [ + { + "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, { "id": 29, "number": "170.315 (d)(1)", @@ -24973,14 +24988,9 @@ "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 177, @@ -24993,22 +25003,12 @@ "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - } - ], - "apiDocumentation": [ + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + } + ], + "apiDocumentation": [ { "criterion": { "id": 182, @@ -25055,74 +25055,49 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 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": 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": 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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 177, @@ -25130,19 +25105,19 @@ "title": "Multi-Factor Authentication" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 56, @@ -25150,29 +25125,24 @@ "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 2, @@ -25180,9 +25150,9 @@ "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 36, @@ -25190,24 +25160,34 @@ "title": "Integrity" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 178, @@ -25215,19 +25195,29 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 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": 54, @@ -25235,32 +25225,50 @@ "title": "Accessibility-Centered 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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "http://academy.practicesuite.com/mu-api/" + }, { "criterion": { "id": 182, @@ -25276,14 +25284,6 @@ "title": "Application Access - Patient Selection" }, "value": "http://academy.practicesuite.com/mu-api/" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "http://academy.practicesuite.com/mu-api/" } ], "acb": "SLI Compliance" @@ -25318,19 +25318,19 @@ }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 53, @@ -25338,74 +25338,59 @@ "title": "Quality Management System" }, { - "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": 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": 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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 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": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 4, @@ -25413,44 +25398,49 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 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": 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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "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": 52, @@ -25458,39 +25448,34 @@ "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 35, @@ -25498,39 +25483,54 @@ "title": "End-User Device Encryption" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 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" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://academy.practicesuite.com/practicesuite-ehr-fhir-api/" + "value": "http://academy.practicesuite.com/mu-api/" }, { "criterion": { @@ -25542,11 +25542,11 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "http://academy.practicesuite.com/mu-api/" + "value": "https://academy.practicesuite.com/practicesuite-ehr-fhir-api/" } ], "acb": "SLI Compliance" @@ -25586,24 +25586,24 @@ }, "criteriaMet": [ { - "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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 42, @@ -25611,29 +25611,54 @@ "title": "Patient Health Information Capture" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 176, @@ -25645,20 +25670,40 @@ "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 54, @@ -25666,19 +25711,19 @@ "title": "Accessibility-Centered 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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 165, @@ -25686,59 +25731,14 @@ "title": "Transitions of Care" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 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": 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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" } ], "apiDocumentation": [ @@ -25752,17 +25752,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://careconnect-uat.netsmartcloud.com/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://careconnect-uat.netsmartcloud.com/" } @@ -25799,14 +25799,14 @@ }, "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": 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, @@ -25814,19 +25814,14 @@ "title": "Trusted Connection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 167, @@ -25834,9 +25829,19 @@ "title": "Electronic Prescribing" }, { - "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 182, @@ -25844,74 +25849,79 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, { "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 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": 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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 32, @@ -25919,19 +25929,19 @@ "title": "Amendments" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 44, @@ -25939,39 +25949,44 @@ "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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, + "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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 54, @@ -25979,32 +25994,17 @@ "title": "Accessibility-Centered Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 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" } ], "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/" }, @@ -26018,9 +26018,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://careconnect-uat.netsmartcloud.com/" } @@ -26057,34 +26057,64 @@ }, "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": 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": 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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 5, @@ -26092,59 +26122,54 @@ "title": "Demographics" }, { - "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": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 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": 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": 59, @@ -26157,9 +26182,9 @@ "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": 167, @@ -26167,29 +26192,9 @@ "title": "Electronic Prescribing" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 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, @@ -26197,24 +26202,19 @@ "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" + "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": 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, @@ -26222,9 +26222,9 @@ "title": "Family Health History" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 2, @@ -26235,11 +26235,11 @@ "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://careconnect.netsmartcloud.com/" + "value": "https://careconnect-uat.netsmartcloud.com/" }, { "criterion": { @@ -26251,11 +26251,11 @@ }, { "criterion": { - "id": 181, - "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/" + "value": "https://careconnect.netsmartcloud.com/" } ], "acb": "Drummond Group" @@ -26290,24 +26290,24 @@ }, "criteriaMet": [ { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 9, @@ -26315,29 +26315,24 @@ "title": "Clinical Decision Support" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "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": 166, @@ -26350,44 +26345,69 @@ "title": "Consolidated CDA Creation Performance" }, { - "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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 12, @@ -26395,29 +26415,39 @@ "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 181, @@ -26425,9 +26455,9 @@ "title": "Application Access - All Data Request" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 56, @@ -26435,52 +26465,30 @@ "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": 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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://careconnect-uat.netsmartcloud.com/" + }, { "criterion": { "id": 182, @@ -26496,14 +26504,6 @@ "title": "Application Access - All Data Request" }, "value": "https://careconnect-uat.netsmartcloud.com/" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://careconnect-uat.netsmartcloud.com/" } ], "acb": "Drummond Group" @@ -26543,19 +26543,19 @@ }, "criteriaMet": [ { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 42, @@ -26568,44 +26568,19 @@ "title": "End-User Device Encryption" }, { - "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": 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": 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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 41, @@ -26613,9 +26588,14 @@ "title": "Secure Messaging" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 173, @@ -26623,84 +26603,84 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "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": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 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": 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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 5, @@ -26708,19 +26688,24 @@ "title": "Demographics" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 51, @@ -26728,37 +26713,44 @@ "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "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://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" + "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" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 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": "http://medinfo-fhir-api-documentation.s3-website-us-west-2.amazonaws.com/" + "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" }, { "criterion": { @@ -26767,6 +26759,14 @@ "title": "Application Access - All Data Request" }, "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://medinfo-fhir-api-documentation.s3-website-us-west-2.amazonaws.com/" } ], "acb": "Drummond Group" @@ -26801,19 +26801,14 @@ }, "criteriaMet": [ { - "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 181, @@ -26821,19 +26816,29 @@ "title": "Application Access - All Data Request" }, { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 177, @@ -26841,19 +26846,24 @@ "title": "Multi-Factor Authentication" }, { - "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 39, @@ -26861,39 +26871,44 @@ "title": "Accounting of Disclosures" }, { - "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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 174, @@ -26901,9 +26916,14 @@ "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { "id": 29, @@ -26911,24 +26931,29 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 54, @@ -26936,9 +26961,9 @@ "title": "Accessibility-Centered Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 166, @@ -26946,44 +26971,19 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ @@ -26995,14 +26995,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": 181, @@ -27010,6 +27002,14 @@ "title": "Application Access - All Data Request" }, "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://medinfo-fhir-api-documentation.s3-website-us-west-2.amazonaws.com/" } ], "acb": "Drummond Group" @@ -27044,39 +27044,9 @@ }, "criteriaMet": [ { - "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 54, @@ -27084,14 +27054,14 @@ "title": "Accessibility-Centered Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 29, @@ -27104,24 +27074,34 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 32, @@ -27129,9 +27109,9 @@ "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 173, @@ -27144,14 +27124,24 @@ "title": "Accounting of Disclosures" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { "id": 181, @@ -27159,9 +27149,14 @@ "title": "Application Access - All Data Request" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 14, @@ -27169,64 +27164,69 @@ "title": "Implantable Device List" }, { - "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": 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": 176, - "number": "170.315 (d)(12)", - "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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ @@ -27292,14 +27292,19 @@ }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 9, @@ -27307,19 +27312,19 @@ "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 4, @@ -27327,24 +27332,24 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 56, @@ -27352,114 +27357,109 @@ "title": "Application Access - Patient Selection" }, { - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 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": 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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ @@ -27525,94 +27525,94 @@ }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 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": 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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 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": 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": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 166, @@ -27620,69 +27620,69 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 3, @@ -27690,69 +27690,69 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 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": 181, + "number": "170.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": 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": 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": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ @@ -27817,35 +27817,20 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 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, @@ -27853,14 +27838,9 @@ "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 4, @@ -27868,9 +27848,24 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "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": 43, @@ -27878,24 +27873,29 @@ "title": "Transmission to Immunization Registries" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 32, @@ -27903,24 +27903,24 @@ "title": "Amendments" }, { - "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 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": 52, @@ -27928,24 +27928,14 @@ "title": "Safety-Enhanced Design" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 166, @@ -27953,34 +27943,34 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 54, @@ -27988,24 +27978,34 @@ "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ @@ -28066,19 +28066,9 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 29, @@ -28086,24 +28076,24 @@ "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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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, @@ -28111,14 +28101,14 @@ "title": "Audit Report(s)" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 173, @@ -28126,29 +28116,44 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 44, @@ -28156,34 +28161,39 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "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": 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, @@ -28191,14 +28201,19 @@ "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": 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": 4, @@ -28206,29 +28221,29 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "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": 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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 172, @@ -28236,35 +28251,12 @@ "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" - }, { "criterion": { "id": 181, @@ -28280,6 +28272,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.sevocity.com/api-terms-fhir-api-cures-technical-documentation/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" } ], "acb": "Drummond Group" @@ -28313,30 +28313,15 @@ "name": "Active" }, "criteriaMet": [ - { - "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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 34, @@ -28344,39 +28329,34 @@ "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 181, @@ -28384,9 +28364,9 @@ "title": "Application Access - All Data Request" }, { - "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, @@ -28394,14 +28374,34 @@ "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 29, @@ -28414,105 +28414,97 @@ "title": "Integrity" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 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": 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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 25, + "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": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" - }, { "criterion": { "id": 182, @@ -28521,6 +28513,14 @@ }, "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/" + }, { "criterion": { "id": 56, @@ -28567,29 +28567,24 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 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, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 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": 9, @@ -28597,44 +28592,39 @@ "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": 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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 26, @@ -28642,29 +28632,29 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 177, @@ -28672,44 +28662,39 @@ "title": "Multi-Factor Authentication" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 53, @@ -28717,42 +28702,65 @@ "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 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": 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://www.sevocity.com/api-terms-g7g9-technical-documentation/" + }, { "criterion": { "id": 182, @@ -28768,14 +28776,6 @@ "title": "Application Access - Patient Selection" }, "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/" } ], "acb": "Drummond Group" @@ -28814,50 +28814,35 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, { "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": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 32, @@ -28865,39 +28850,29 @@ "title": "Amendments" }, { - "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 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": 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": 3, @@ -28905,44 +28880,49 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 54, @@ -28950,34 +28930,29 @@ "title": "Accessibility-Centered Design" }, { - "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": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 44, @@ -28985,54 +28960,54 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 60, @@ -29040,36 +29015,61 @@ "title": "Direct Project, Edge Protocol, and XDR/XDM" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "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" - } - ], - "apiDocumentation": [ + }, { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://api.glaceemr.com/documentation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "criterion": { - "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 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://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" }, { @@ -29118,34 +29118,34 @@ }, "criteriaMet": [ { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 42, @@ -29153,19 +29153,14 @@ "title": "Patient Health Information Capture" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 52, @@ -29173,34 +29168,34 @@ "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 39, @@ -29208,34 +29203,34 @@ "title": "Accounting of Disclosures" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 12, @@ -29243,29 +29238,24 @@ "title": "Family Health History" }, { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 180, @@ -29273,29 +29263,39 @@ "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" } ], "apiDocumentation": [ @@ -29309,17 +29309,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://developers.greenwayhealth.com/developer-platform" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://developers.greenwayhealth.com/developer-platform" } @@ -29356,54 +29356,34 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 165, @@ -29411,39 +29391,39 @@ "title": "Transitions of Care" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 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": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 15, @@ -29451,24 +29431,34 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 56, + "number": "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 54, @@ -29476,24 +29466,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 9, @@ -29501,24 +29486,34 @@ "title": "Clinical Decision Support" }, { - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 4, @@ -29526,22 +29521,35 @@ "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "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": "http://dms.greenwayhealth.com/ApplicationAccess/GreenwayApplicationAccess.pdf" + }, { "criterion": { "id": 181, @@ -29557,14 +29565,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://developers.greenwayhealth.com/developer-platform" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://dms.greenwayhealth.com/ApplicationAccess/GreenwayApplicationAccess.pdf" } ], "acb": "Drummond Group" @@ -29599,29 +29599,44 @@ }, "criteriaMet": [ { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, + { + "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 166, @@ -29629,34 +29644,34 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 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": 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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 54, @@ -29664,14 +29679,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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, @@ -29679,24 +29699,29 @@ "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 29, @@ -29704,39 +29729,29 @@ "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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 21, @@ -29744,24 +29759,19 @@ "title": "Data Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 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": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 37, @@ -29769,19 +29779,9 @@ "title": "Trusted Connection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" } ], "apiDocumentation": [ @@ -29842,39 +29842,44 @@ }, "criteriaMet": [ { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 173, @@ -29882,24 +29887,39 @@ "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 180, @@ -29907,24 +29927,24 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 176, @@ -29932,29 +29952,14 @@ "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": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 53, @@ -29967,19 +29972,19 @@ "title": "Amendments" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 167, @@ -29987,39 +29992,34 @@ "title": "Electronic Prescribing" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" } ], "apiDocumentation": [ @@ -30085,59 +30085,64 @@ }, "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 29, + "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 53, @@ -30145,44 +30150,34 @@ "title": "Quality Management System" }, { - "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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 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": 180, @@ -30190,14 +30185,19 @@ "title": "Consolidated CDA Creation Performance" }, { - "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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 165, @@ -30205,54 +30205,39 @@ "title": "Transitions of Care" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 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": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { "id": 4, @@ -30260,9 +30245,14 @@ "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" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 54, @@ -30270,69 +30260,79 @@ "title": "Accessibility-Centered Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ @@ -30346,17 +30346,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://hcswebportal.corporate.hcsinc.net/HCSClinicals_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://hcswebportal.corporate.hcsinc.net/HCSClinicals_FHIR" } @@ -30393,39 +30393,39 @@ }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 37, @@ -30433,54 +30433,54 @@ "title": "Trusted Connection" }, { - "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "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": 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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 166, @@ -30488,84 +30488,64 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 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": 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": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "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": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 168, @@ -30573,59 +30553,59 @@ "title": "Security Tags - Summary of Care - Send" }, { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 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": 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": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 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": 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, @@ -30633,14 +30613,34 @@ "title": "Clinical Quality Measures - Report" }, { - "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": 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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" } ], "apiDocumentation": [ @@ -30706,14 +30706,9 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 9, @@ -30721,44 +30716,39 @@ "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 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, @@ -30766,9 +30756,14 @@ "title": "Audit Report(s)" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 44, @@ -30776,24 +30771,24 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 176, @@ -30801,44 +30796,39 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 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": 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": 36, @@ -30846,80 +30836,90 @@ "title": "Integrity" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 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": 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": 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": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 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" } ], "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://harrisambulatory.com/caretracker-api-documentation/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://harrisambulatory.com/caretracker-api-documentation/" }, @@ -30969,94 +30969,94 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 165, + "number": "170.315 (b)(1)", + "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": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "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, @@ -31064,24 +31064,24 @@ "title": "CPOE - Diagnostic Imaging" }, { - "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": 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": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 52, @@ -31089,9 +31089,9 @@ "title": "Safety-Enhanced Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 178, @@ -31099,49 +31099,49 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 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": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ @@ -31155,17 +31155,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://cmpl.aidbox.app/documentation" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://cmpl.aidbox.app/documentation" } @@ -31207,19 +31207,9 @@ }, "criteriaMet": [ { - "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 182, @@ -31232,9 +31222,34 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 181, @@ -31242,14 +31257,9 @@ "title": "Application Access - All Data Request" }, { - "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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 33, @@ -31257,29 +31267,29 @@ "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 51, @@ -31287,64 +31297,69 @@ "title": "Automated Measure Calculation" }, { - "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 2, @@ -31352,14 +31367,24 @@ "title": "CPOE - Laboratory" }, { - "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 174, @@ -31367,52 +31392,27 @@ "title": "Audit Report(s)" }, { - "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://amsemr.com/wp-content/uploads/2021/03/APIDirect.pdf" }, @@ -31426,9 +31426,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://amsemr.com/wp-content/uploads/2021/03/APIDirect.pdf" } @@ -31470,59 +31470,69 @@ }, "criteriaMet": [ { - "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": 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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 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": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 54, @@ -31530,79 +31540,79 @@ "title": "Accessibility-Centered Design" }, { - "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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 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": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { "id": 41, @@ -31610,14 +31620,9 @@ "title": "Secure Messaging" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { "id": 7, @@ -31630,97 +31635,100 @@ "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy 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": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, { "id": 11, "number": "170.315 (a)(11)", "title": "Smoking Status" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 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": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "http://ipclinical.com/documentation/IPClinical-api-documentation.pdf" + }, { "criterion": { "id": 56, @@ -31736,14 +31744,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.ipclinical.com/mu-disclosure.html" - }, - { - "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" @@ -31783,104 +31783,104 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 32, - "number": "170.315 (d)(4)", - "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": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 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": 5, @@ -31888,24 +31888,34 @@ "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "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": 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": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 180, @@ -31913,69 +31923,74 @@ "title": "Consolidated CDA Creation Performance" }, { - "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 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": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 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": 53, @@ -31983,40 +31998,17 @@ "title": "Quality Management System" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://ipsemrapi.inpracsys.com/App/web.html#jsintroduction" - }, { "criterion": { "id": 56, @@ -32032,6 +32024,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://inpracsys.com/fhir" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://ipsemrapi.inpracsys.com/App/web.html#jsintroduction" } ], "acb": "SLI Compliance" @@ -32071,9 +32071,14 @@ }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 14, @@ -32081,109 +32086,94 @@ "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 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": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 182, @@ -32191,9 +32181,14 @@ "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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 173, @@ -32201,29 +32196,34 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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, - "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 165, @@ -32231,64 +32231,64 @@ "title": "Transitions of Care" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://qualifacts.com/api-page/platform/insync/insync-fhir.html" + "value": "https://www.qualifacts.com/api-documentation/" }, { "criterion": { @@ -32300,11 +32300,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://www.qualifacts.com/api-documentation/" + "value": "https://qualifacts.com/api-page/platform/insync/insync-fhir.html" } ], "acb": "SLI Compliance" @@ -32343,75 +32343,35 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 54, @@ -32419,34 +32379,29 @@ "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 51, @@ -32454,14 +32409,9 @@ "title": "Automated Measure Calculation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 12, @@ -32469,24 +32419,24 @@ "title": "Family Health History" }, { - "id": 182, - "number": "170.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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 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": 167, @@ -32494,35 +32444,77 @@ "title": "Electronic Prescribing" }, { - "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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" - } - ], - "apiDocumentation": [ + }, { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://integraconnectcms.mwe.cloud/app/uploads/2022/11/FHIR-API-guide.pdf" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + } + ], + "apiDocumentation": [ { "criterion": { "id": 181, @@ -32538,6 +32530,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://integraconnectcms.mwe.cloud/app/uploads/2022/11/FHIR-API-guide.pdf" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://integraconnectcms.mwe.cloud/app/uploads/2022/11/FHIR-API-guide.pdf" } ], "acb": "Drummond Group" @@ -32576,20 +32576,20 @@ "name": "Active" }, "criteriaMet": [ + { + "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": 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, @@ -32597,34 +32597,34 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 42, @@ -32632,9 +32632,9 @@ "title": "Patient Health Information Capture" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 32, @@ -32642,9 +32642,14 @@ "title": "Amendments" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 176, @@ -32652,39 +32657,39 @@ "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 36, @@ -32692,29 +32697,24 @@ "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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ @@ -32728,17 +32728,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://onc.chntechsolutions.com/ic-ehr-fhir-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://onc.chntechsolutions.com/ic-ehr-fhir-api/" } @@ -32779,25 +32779,40 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 182, @@ -32805,29 +32820,24 @@ "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": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 29, @@ -32835,9 +32845,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 32, @@ -32845,42 +32855,32 @@ "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "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" }, @@ -32894,9 +32894,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" } @@ -32933,39 +32933,39 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 180, @@ -32978,62 +32978,62 @@ "title": "Multi-Factor Authentication" }, { - "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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://openapitest.intelichart.com/Help" }, @@ -33047,9 +33047,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://openapitest.intelichart.com/Help" } @@ -33059,11 +33059,11 @@ ] }, { - "listSourceURL": "https://www.nextech.com/developers-portal", + "listSourceURL": "https://www.meditab.com/fhir/endpoints", "softwareProducts": [ { - "id": 11027, - "chplProductNumber": "15.04.04.2051.Inte.08.01.0.221121", + "id": 9739, + "chplProductNumber": "15.99.04.2804.Inte.SP.01.1.181113", "edition": { "id": 3, "name": "2015" @@ -33073,27 +33073,32 @@ "name": "" }, "developer": { - "id": 1052, - "name": "Nextech" + "id": 1805, + "name": "MedPharm Services LLC" }, "product": { - "id": 3655, - "name": "IntelleChartPRO" + "id": 2978, + "name": "Intelligent Medical Software (IMS)" }, "version": { - "id": 8618, - "name": "8" + "id": 7535, + "name": "14.0 SP 1" }, - "certificationDate": "2022-11-21", + "certificationDate": "2018-11-13", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 181, @@ -33101,34 +33106,29 @@ "title": "Application Access - All Data Request" }, { - "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 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": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 54, @@ -33136,19 +33136,19 @@ "title": "Accessibility-Centered Design" }, { - "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": 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": 182, @@ -33156,267 +33156,89 @@ "title": "Standardized API for Patient and Population Services" }, { - "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "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": 165, - "number": "170.315 (b)(1)", - "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": 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": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" - } - ], - "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://nextechsystems.github.io/intellechartapidocspub/r4.html#introduction" }, { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://nextechsystems.github.io/intellechartapidocspub/r4.html#introduction" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://nextechsystems.github.io/intellechartapidocspub/r4.html#introduction" - } - ], - "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://www.meditab.com/fhir/endpoints", - "softwareProducts": [ - { - "id": 9739, - "chplProductNumber": "15.99.04.2804.Inte.SP.01.1.181113", - "edition": { - "id": 3, - "name": "2015" - }, - "practiceType": { - "id": 0, - "name": "" - }, - "developer": { - "id": 1805, - "name": "MedPharm Services LLC" - }, - "product": { - "id": 2978, - "name": "Intelligent Medical Software (IMS)" - }, - "version": { - "id": 7535, - "name": "14.0 SP 1" - }, - "certificationDate": "2018-11-13", - "certificationStatus": { - "id": 1, - "name": "Active" - }, - "criteriaMet": [ { "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, { "id": 46, "number": "170.315 (f)(4)", "title": "Transmission to Cancer Registries" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 56, @@ -33424,44 +33246,9 @@ "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 4, @@ -33469,80 +33256,57 @@ "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": 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": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, { "id": 170, "number": "170.315 (b)(9)", "title": "Care Plan" }, { - "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": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://www.meditab.com/api/" - }, { "criterion": { "id": 182, @@ -33558,6 +33322,14 @@ "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" @@ -33596,26 +33368,31 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, { "id": 175, "number": "170.315 (d)(10)", "title": "Auditing Actions on Health Information" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, { "id": 37, "number": "170.315 (d)(9)", @@ -33626,11 +33403,6 @@ "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": 29, "number": "170.315 (d)(1)", @@ -33684,24 +33456,9 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 173, @@ -33709,74 +33466,59 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "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": 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": 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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 165, @@ -33784,43 +33526,57 @@ "title": "Transitions of Care" }, { - "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" - } - ], - "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://fhirjuno-prod-web.dssinc.com/communityhealthhospitals/01ho/r4/Home/ApiDocumentation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://fhirjuno-prod-web.dssinc.com/communityhealthhospitals/01ho/r4/Home/ApiDocumentation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "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" + } + ], + "apiDocumentation": [ { "criterion": { "id": 182, @@ -33828,6 +33584,22 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://fhirjuno-prod-web.dssinc.com/communityhealthhospitals/01ho/r4/Home/ApiDocumentation" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://fhirjuno-prod-web.dssinc.com/communityhealthhospitals/01ho/r4/Home/ApiDocumentation" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://fhirjuno-prod-web.dssinc.com/communityhealthhospitals/01ho/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -33862,149 +33634,154 @@ }, "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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 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, + "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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 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": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, - { - "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": 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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 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": 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": 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": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 166, @@ -34012,19 +33789,14 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ @@ -34074,39 +33846,24 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 59, @@ -34114,29 +33871,39 @@ "title": "Direct Project" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 42, @@ -34144,39 +33911,34 @@ "title": "Patient Health Information Capture" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "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": 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": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 33, @@ -34184,50 +33946,52 @@ "title": "Automatic Access Time-out" }, { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" - }, { "criterion": { "id": 182, @@ -34243,6 +34007,14 @@ "title": "Application Access - All Data Request" }, "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" @@ -34282,80 +34054,110 @@ }, "criteriaMet": [ { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 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": 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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced 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": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, { "id": 5, "number": "170.315 (a)(5)", @@ -34367,24 +34169,19 @@ "title": "Trusted Connection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 1, @@ -34392,59 +34189,34 @@ "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 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": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ @@ -34494,14 +34266,14 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 182, @@ -34509,29 +34281,29 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered 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": 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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 37, @@ -34539,25 +34311,25 @@ "title": "Trusted Connection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "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.kodjin.com/getting-started-with-standartized-api" }, { "criterion": { - "id": 182, - "number": "170.315 (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" } @@ -34598,40 +34370,35 @@ "name": "Active" }, "criteriaMet": [ - { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 26, @@ -34639,19 +34406,19 @@ "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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, @@ -34659,19 +34426,29 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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": 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": 25, @@ -34684,14 +34461,14 @@ "title": "Demographics" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 51, @@ -34699,74 +34476,69 @@ "title": "Automated Measure Calculation" }, { - "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, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "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": 3, - "number": "170.315 (a)(3)", - "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": 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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 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": 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": 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, @@ -34774,12 +34546,20 @@ "title": "Integrity" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.mdlogic.com/solutions/api-documentation" + }, { "criterion": { "id": 181, @@ -34795,14 +34575,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.mdlogic.com/solutions/api-documentation" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.mdlogic.com/solutions/api-documentation" } ], "acb": "Drummond Group" @@ -34837,34 +34609,24 @@ }, "criteriaMet": [ { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 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": 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": 32, @@ -34872,14 +34634,19 @@ "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 35, @@ -34887,19 +34654,9 @@ "title": "End-User Device Encryption" }, { - "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 25, @@ -34907,44 +34664,34 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 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": 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": 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": 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": 3, @@ -34952,24 +34699,24 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 181, @@ -34977,55 +34724,72 @@ "title": "Application Access - All Data Request" }, { - "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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 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": 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": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - } - ], - "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.mdlogic.com/solutions/api-documentation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + } + ], + "apiDocumentation": [ { "criterion": { "id": 181, @@ -35034,6 +34798,14 @@ }, "value": "https://www.mdlogic.com/solutions/api-documentation" }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.mdlogic.com/solutions/api-documentation" + }, { "criterion": { "id": 56, @@ -35080,59 +34852,74 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 2, @@ -35140,9 +34927,9 @@ "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 174, @@ -35150,77 +34937,70 @@ "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 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, - "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, - "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 170, "number": "170.315 (b)(9)", "title": "Care Plan" }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, - { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" + }, + { + "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://connect.mdops.com/mdlogsdk/smartfhir/apiDocumentation.html" + }, { "criterion": { "id": 181, @@ -35236,14 +35016,6 @@ "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" @@ -35283,39 +35055,34 @@ }, "criteriaMet": [ { - "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 173, @@ -35323,29 +35090,34 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 43, @@ -35353,19 +35125,29 @@ "title": "Transmission to Immunization Registries" }, { - "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 33, @@ -35373,114 +35155,114 @@ "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": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 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": 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": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, { "id": 26, "number": "170.315 (c)(2)", "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 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": 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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 166, @@ -35488,34 +35270,24 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "http://www.mdrhythm.com/MDRWebAPI.pdf" + "value": "http://www.mdrhythm.com/onc-compliance.html" }, { "criterion": { @@ -35527,11 +35299,11 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "http://www.mdrhythm.com/onc-compliance.html" + "value": "http://www.mdrhythm.com/MDRWebAPI.pdf" } ], "acb": "Drummond Group" @@ -35571,24 +35343,19 @@ }, "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 26, @@ -35596,69 +35363,74 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 59, @@ -35666,24 +35438,19 @@ "title": "Direct Project" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 37, @@ -35691,29 +35458,34 @@ "title": "Trusted Connection" }, { - "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 14, @@ -35721,9 +35493,14 @@ "title": "Implantable Device List" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 181, @@ -35731,19 +35508,9 @@ "title": "Application Access - All Data Request" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 35, @@ -35756,17 +35523,22 @@ "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": 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" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.hc2000inc.com/Pages/MDVita_API_Interoperability.htm" }, @@ -35780,9 +35552,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.hc2000inc.com/Pages/MDVita_API_Interoperability.htm" } @@ -35824,14 +35596,19 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 173, @@ -35839,79 +35616,79 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 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": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 174, @@ -35919,34 +35696,29 @@ "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": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 181, @@ -35954,85 +35726,85 @@ "title": "Application Access - All Data Request" }, { - "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 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": 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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 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://emr.ehiconnect.com/Data%20Interop-EHI-Api.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://emr.ehiconnect.com/Data%20Interop-EHI-Api.pdf" }, @@ -36082,44 +35854,34 @@ }, "criteriaMet": [ { - "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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 177, @@ -36127,69 +35889,89 @@ "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 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": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 26, @@ -36197,19 +35979,19 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 5, @@ -36217,19 +35999,19 @@ "title": "Demographics" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 4, @@ -36237,14 +36019,14 @@ "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 182, @@ -36252,14 +36034,9 @@ "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": 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, @@ -36267,39 +36044,34 @@ "title": "Application Access - All Data Request" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 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": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ @@ -36360,49 +36132,49 @@ }, "criteriaMet": [ { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 165, @@ -36410,49 +36182,59 @@ "title": "Transitions of Care" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 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": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 53, @@ -36460,54 +36242,54 @@ "title": "Quality Management System" }, { - "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 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": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 172, @@ -36515,49 +36297,44 @@ "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": 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": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 42, @@ -36565,35 +36342,30 @@ "title": "Patient Health Information Capture" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.medent.com/onc/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.medent.com/onc/" }, @@ -36643,14 +36415,9 @@ }, "criteriaMet": [ { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 166, @@ -36658,29 +36425,24 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "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": 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": 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, @@ -36693,29 +36455,39 @@ "title": "Family Health History" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 14, @@ -36723,14 +36495,19 @@ "title": "Implantable Device List" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 9, @@ -36738,54 +36515,59 @@ "title": "Clinical Decision Support" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 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": 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": 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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 36, @@ -36793,24 +36575,14 @@ "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ @@ -36824,17 +36596,17 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.yourcareinteract.com/documentation" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://developer.yourcareinteract.com/documentation" } @@ -36870,31 +36642,6 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, { "id": 176, "number": "170.315 (d)(12)", @@ -36906,19 +36653,29 @@ "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": 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": 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": 1, @@ -36926,39 +36683,34 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 43, @@ -36966,19 +36718,14 @@ "title": "Transmission to Immunization Registries" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 174, @@ -36986,24 +36733,34 @@ "title": "Audit Report(s)" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 181, @@ -37011,9 +36768,9 @@ "title": "Application Access - All Data Request" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 166, @@ -37021,9 +36778,24 @@ "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": 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": 45, @@ -37031,14 +36803,14 @@ "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ @@ -37104,39 +36876,24 @@ }, "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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 176, @@ -37144,44 +36901,49 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 29, @@ -37189,24 +36951,19 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 56, @@ -37214,24 +36971,24 @@ "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 53, @@ -37239,9 +36996,19 @@ "title": "Quality Management System" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 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": 26, @@ -37249,34 +37016,39 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 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": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ @@ -37337,44 +37109,44 @@ }, "criteriaMet": [ { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 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": 35, @@ -37382,24 +37154,19 @@ "title": "End-User Device Encryption" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 26, @@ -37407,24 +37174,19 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 32, @@ -37432,14 +37194,29 @@ "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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 174, @@ -37447,85 +37224,80 @@ "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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "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" }, { "criterion": { - "id": 56, - "number": "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" }, @@ -37570,9 +37342,24 @@ }, "criteriaMet": [ { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 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, @@ -37580,54 +37367,49 @@ "title": "Safety-Enhanced Design" }, { - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 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": 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": 180, @@ -37635,34 +37417,34 @@ "title": "Consolidated CDA Creation Performance" }, { - "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 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": 28, @@ -37670,44 +37452,34 @@ "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 32, @@ -37715,9 +37487,9 @@ "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": 26, @@ -37725,19 +37497,19 @@ "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ @@ -37798,14 +37570,9 @@ }, "criteriaMet": [ { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 12, @@ -37813,64 +37580,64 @@ "title": "Family Health History" }, { - "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 34, @@ -37878,39 +37645,49 @@ "title": "Emergency Access" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 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": 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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 172, @@ -37923,24 +37700,14 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 1, @@ -37953,32 +37720,37 @@ "title": "Electronic Prescribing" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -37992,9 +37764,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } @@ -38030,85 +37802,50 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, { "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "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, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 39, @@ -38116,19 +37853,14 @@ "title": "Accounting of Disclosures" }, { - "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 2, @@ -38136,44 +37868,79 @@ "title": "CPOE - Laboratory" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, + { + "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": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 181, @@ -38181,29 +37948,34 @@ "title": "Application Access - All Data Request" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" } ], "apiDocumentation": [ @@ -38264,19 +38036,19 @@ }, "criteriaMet": [ { - "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 176, @@ -38284,9 +38056,14 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 1, @@ -38294,104 +38071,104 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 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": 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": 172, @@ -38399,47 +38176,50 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 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": 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" } ], "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, @@ -38455,14 +38235,6 @@ "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" @@ -38497,44 +38269,39 @@ }, "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": 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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 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": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { "id": 5, @@ -38542,34 +38309,34 @@ "title": "Demographics" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 3, @@ -38577,59 +38344,69 @@ "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 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": 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": 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": 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": 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": 2, @@ -38637,47 +38414,42 @@ "title": "CPOE - Laboratory" }, { - "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 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" }, @@ -38691,9 +38463,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://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } @@ -38730,19 +38502,34 @@ }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 172, @@ -38750,69 +38537,54 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 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": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 52, @@ -38820,24 +38592,9 @@ "title": "Safety-Enhanced Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 174, @@ -38845,64 +38602,79 @@ "title": "Audit Report(s)" }, { - "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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": 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" } ], "apiDocumentation": [ @@ -38916,17 +38688,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" } @@ -38963,89 +38735,59 @@ }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "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": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 35, @@ -39053,24 +38795,24 @@ "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 176, @@ -39078,24 +38820,24 @@ "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 2, @@ -39103,42 +38845,72 @@ "title": "CPOE - Laboratory" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -39152,9 +38924,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" } @@ -39191,29 +38963,29 @@ }, "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 182, @@ -39221,9 +38993,14 @@ "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 167, @@ -39231,49 +39008,44 @@ "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 52, @@ -39281,34 +39053,39 @@ "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": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 34, @@ -39316,19 +39093,24 @@ "title": "Emergency Access" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 174, @@ -39336,45 +39118,35 @@ "title": "Audit Report(s)" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -39419,14 +39191,9 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 52, @@ -39434,39 +39201,44 @@ "title": "Safety-Enhanced 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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 181, @@ -39474,34 +39246,19 @@ "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": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 180, @@ -39509,24 +39266,14 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 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": 48, @@ -39534,49 +39281,74 @@ "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, { "id": 26, "number": "170.315 (c)(2)", "title": "Clinical Quality Measures - Import and Calculate" }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 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": 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": 14, @@ -39584,22 +39356,22 @@ "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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" } ], "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" }, @@ -39613,9 +39385,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://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } @@ -39652,14 +39424,14 @@ }, "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": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 167, @@ -39667,9 +39439,14 @@ "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 26, @@ -39677,64 +39454,49 @@ "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": 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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 176, @@ -39742,14 +39504,14 @@ "title": "Encrypt Authentication Credentials" }, { - "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 181, @@ -39757,14 +39519,9 @@ "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 180, @@ -39772,52 +39529,75 @@ "title": "Consolidated CDA Creation Performance" }, { - "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + }, { "criterion": { "id": 182, @@ -39833,14 +39613,6 @@ "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" @@ -39875,24 +39647,14 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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, @@ -39900,29 +39662,24 @@ "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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 3, @@ -39930,39 +39687,24 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 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": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 12, @@ -39970,59 +39712,59 @@ "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 48, @@ -40030,27 +39772,65 @@ "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 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://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + }, { "criterion": { "id": 182, @@ -40066,14 +39846,6 @@ "title": "Application Access - All Data Request" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" @@ -40107,25 +39879,25 @@ "name": "Active" }, "criteriaMet": [ - { - "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 54, @@ -40133,34 +39905,34 @@ "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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, @@ -40168,34 +39940,14 @@ "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 182, @@ -40203,14 +39955,9 @@ "title": "Standardized API for Patient and Population Services" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 42, @@ -40218,9 +39965,9 @@ "title": "Patient Health Information Capture" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 53, @@ -40228,49 +39975,49 @@ "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": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, { - "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 25, @@ -40278,12 +40025,45 @@ "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" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "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://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + }, { "criterion": { "id": 56, @@ -40299,14 +40079,6 @@ "title": "Application Access - All Data Request" }, "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" @@ -40341,34 +40113,29 @@ }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 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": 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": 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": 54, @@ -40376,29 +40143,29 @@ "title": "Accessibility-Centered Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 51, @@ -40406,24 +40173,14 @@ "title": "Automated Measure Calculation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 5, @@ -40431,54 +40188,59 @@ "title": "Demographics" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 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": 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" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 36, @@ -40486,19 +40248,19 @@ "title": "Integrity" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { "id": 9, @@ -40506,14 +40268,24 @@ "title": "Clinical Decision Support" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ @@ -40574,39 +40346,29 @@ }, "criteriaMet": [ { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 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": 180, @@ -40614,40 +40376,55 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, { "id": 181, "number": "170.315 (g)(9)", @@ -40664,9 +40441,9 @@ "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 172, @@ -40674,49 +40451,34 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 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": 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": 36, @@ -40724,19 +40486,19 @@ "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 173, @@ -40744,9 +40506,19 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ @@ -40760,17 +40532,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" } @@ -40806,45 +40578,70 @@ "name": "Active" }, "criteriaMet": [ + { + "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "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": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 52, @@ -40852,14 +40649,29 @@ "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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 1, @@ -40867,19 +40679,14 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 2, @@ -40892,29 +40699,34 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 174, @@ -40926,60 +40738,20 @@ "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": 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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" } ], "apiDocumentation": [ @@ -40993,17 +40765,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://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" } @@ -41040,54 +40812,29 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "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": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "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": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, { - "id": 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": 174, @@ -41095,39 +40842,54 @@ "title": "Audit Report(s)" }, { - "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": 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": 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": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 5, @@ -41135,35 +40897,50 @@ "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "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": 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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, { "id": 181, "number": "170.315 (g)(9)", @@ -41175,19 +40952,14 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 53, @@ -41195,22 +40967,22 @@ "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -41224,9 +40996,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } @@ -41268,29 +41040,24 @@ }, "criteriaMet": [ { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 36, @@ -41298,24 +41065,14 @@ "title": "Integrity" }, { - "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 176, @@ -41323,29 +41080,34 @@ "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 2, @@ -41353,107 +41115,117 @@ "title": "CPOE - Laboratory" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 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": 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": 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": 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": 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": 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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, { "id": 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": 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" - } - ], - "apiDocumentation": [ + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + } + ], + "apiDocumentation": [ { "criterion": { "id": 181, @@ -41516,54 +41288,49 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 42, @@ -41571,9 +41338,14 @@ "title": "Patient Health Information Capture" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 56, @@ -41581,69 +41353,64 @@ "title": "Application Access - Patient Selection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "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, @@ -41651,19 +41418,14 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "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": 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": 54, @@ -41671,37 +41433,47 @@ "title": "Accessibility-Centered Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 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" } ], "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/" }, @@ -41715,9 +41487,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/" } @@ -41758,50 +41530,40 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 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": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 14, @@ -41809,24 +41571,24 @@ "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": 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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 182, @@ -41834,39 +41596,44 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 53, @@ -41874,19 +41641,24 @@ "title": "Quality Management System" }, { - "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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 181, @@ -41894,69 +41666,69 @@ "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ @@ -41970,17 +41742,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://customer.first-insight.com/downloads/forms/MaximEyes-FHIR-API-Documentation.pdf" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://customer.first-insight.com/downloads/forms/MaximEyes-FHIR-API-Documentation.pdf" } @@ -42017,34 +41789,19 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 166, @@ -42052,19 +41809,19 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 33, @@ -42072,39 +41829,24 @@ "title": "Automatic Access Time-out" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 51, @@ -42112,14 +41854,19 @@ "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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 181, @@ -42127,49 +41874,54 @@ "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 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": 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": 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": 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": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 54, @@ -42177,35 +41929,55 @@ "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" } ], "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.first-insight.com/certifications/" }, { "criterion": { - "id": 56, - "number": "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.first-insight.com/certifications/" }, @@ -42255,59 +42027,84 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "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": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, { - "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": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 45, @@ -42315,14 +42112,14 @@ "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 4, @@ -42330,69 +42127,69 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 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": 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": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 26, @@ -42400,14 +42197,9 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 37, @@ -42415,19 +42207,14 @@ "title": "Trusted Connection" }, { - "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": 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": 1, @@ -42435,32 +42222,25 @@ "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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://documents.maximus.care" + }, { "criterion": { "id": 182, @@ -42476,14 +42256,6 @@ "title": "Application Access - Patient Selection" }, "value": "http://documents.maximus.care/" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://documents.maximus.care" } ], "acb": "SLI Compliance" @@ -42523,39 +42295,34 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 56, @@ -42563,19 +42330,14 @@ "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 54, @@ -42583,24 +42345,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 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": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 3, @@ -42608,9 +42365,29 @@ "title": "CPOE - Diagnostic Imaging" }, { - "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 2, @@ -42623,24 +42400,24 @@ "title": "Audit Report(s)" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { "id": 4, @@ -42648,9 +42425,14 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 36, @@ -42658,60 +42440,50 @@ "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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 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": 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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://fhir.mhealthaz.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://fhir.mhealthaz.com" } @@ -42753,39 +42525,19 @@ }, "criteriaMet": [ { - "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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, @@ -42798,39 +42550,34 @@ "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": 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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 2, @@ -42838,19 +42585,29 @@ "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 14, + "number": "170.315 (a)(14)", + "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 5, @@ -42858,19 +42615,24 @@ "title": "Demographics" }, { - "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": 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": 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": 178, @@ -42878,14 +42640,9 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 29, @@ -42893,29 +42650,29 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 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": 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": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { "id": 26, @@ -42923,14 +42680,24 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 53, @@ -42938,30 +42705,27 @@ "title": "Quality Management System" }, { - "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "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://api.medconnecthealth.com/medconnect/basepractice/r4/Home/ApiDocumentation" - }, { "criterion": { "id": 56, @@ -42977,6 +42741,14 @@ "title": "Application Access - All Data Request" }, "value": "https://api.medconnecthealth.com/medconnect/basepractice/r4/Home/ApiDocumentation" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://api.medconnecthealth.com/medconnect/basepractice/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -43016,19 +42788,9 @@ }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 25, @@ -43036,39 +42798,39 @@ "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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 181, @@ -43076,69 +42838,104 @@ "title": "Application Access - All Data Request" }, { - "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 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": 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": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 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": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, + { + "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 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": 32, @@ -43146,9 +42943,9 @@ "title": "Amendments" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 174, @@ -43156,34 +42953,29 @@ "title": "Audit Report(s)" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 15, @@ -43191,50 +42983,30 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 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": "http://www.viewmymed.com/api/usage.php" }, { "criterion": { - "id": 181, - "number": "170.315 (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.viewmymed.com/api/usage.php" }, @@ -43284,24 +43056,34 @@ }, "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": 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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 12, @@ -43309,34 +43091,34 @@ "title": "Family Health History" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 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": 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": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 177, @@ -43344,79 +43126,49 @@ "title": "Multi-Factor Authentication" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, { - "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": 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": 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": 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, @@ -43429,44 +43181,44 @@ "title": "Application Access - All Data Request" }, { - "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 4, @@ -43474,9 +43226,19 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 43, @@ -43484,17 +43246,27 @@ "title": "Transmission to Immunization Registries" }, { - "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://portal.medgenehr.com/medgenweb/guides/MedgenFHIRDeveloperGuide.pdf" }, @@ -43508,9 +43280,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://portal.medgenehr.com/medgenweb/guides/MedgenFHIRDeveloperGuide.pdf" } @@ -43552,9 +43324,19 @@ }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 166, @@ -43562,39 +43344,34 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 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": 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": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 165, @@ -43602,49 +43379,49 @@ "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" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 59, @@ -43652,9 +43429,14 @@ "title": "Direct Project" }, { - "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 56, @@ -43662,24 +43444,29 @@ "title": "Application Access - Patient Selection" }, { - "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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 29, @@ -43687,19 +43474,14 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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, @@ -43707,24 +43489,14 @@ "title": "Amendments" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 9, @@ -43732,9 +43504,9 @@ "title": "Clinical Decision Support" }, { - "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": 35, @@ -43742,30 +43514,30 @@ "title": "End-User Device Encryption" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 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" } ], "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://medi-ehr.com/compliance" }, { "criterion": { - "id": 56, - "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://medi-ehr.com/compliance" }, @@ -43815,54 +43587,54 @@ }, "criteriaMet": [ { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 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": 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": 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": 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": 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": 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": 172, @@ -43870,19 +43642,14 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "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": 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": 168, @@ -43890,9 +43657,9 @@ "title": "Security Tags - Summary of Care - Send" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 45, @@ -43900,64 +43667,64 @@ "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information 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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 180, @@ -43965,19 +43732,29 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "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": 177, @@ -43985,14 +43762,14 @@ "title": "Multi-Factor Authentication" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 4, @@ -44000,19 +43777,14 @@ "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": 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": 176, @@ -44020,25 +43792,17 @@ "title": "Encrypt Authentication Credentials" }, { - "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": 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" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://medifusion.com/public-documentation-for-the-medifusion-patient-access-api/" - }, { "criterion": { "id": 182, @@ -44047,6 +43811,14 @@ }, "value": "https://docs.medifusion.com/" }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://medifusion.com/public-documentation-for-the-medifusion-patient-access-api/" + }, { "criterion": { "id": 181, @@ -44093,44 +43865,54 @@ }, "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": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 37, @@ -44138,69 +43920,64 @@ "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 35, @@ -44208,39 +43985,39 @@ "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 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": 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": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 44, @@ -44248,64 +44025,59 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 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": 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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 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": 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" } ], "apiDocumentation": [ @@ -44319,17 +44091,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://staging.medicscloud.com/MCExtAPI/Home/Help" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://staging.medicscloud.com/MCExtAPI/Home/Help" } @@ -44371,39 +44143,34 @@ }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "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": 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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 4, @@ -44411,94 +44178,94 @@ "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": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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, - "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": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "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": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 166, @@ -44506,14 +44273,9 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 3, @@ -44521,19 +44283,34 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 1, @@ -44541,60 +44318,47 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information 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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "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" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://staging.medicscloud.com/MedicsDAExtAPI/Home/Help" - }, { "criterion": { "id": 56, @@ -44610,6 +44374,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://staging.medicscloud.com/MedicsDAExtAPI/FHIRMedicsDocAssistant.htm" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://staging.medicscloud.com/MedicsDAExtAPI/Home/Help" } ], "acb": "SLI Compliance" @@ -44649,49 +44421,44 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 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": 32, - "number": "170.315 (d)(4)", - "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 56, @@ -44699,64 +44466,69 @@ "title": "Application Access - Patient Selection" }, { - "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 173, @@ -44764,19 +44536,24 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 171, @@ -44784,75 +44561,62 @@ "title": "Electronic Health Information Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://fhirpresentation.assertus.com/npp/1619131398/r4/Home/ApiDocumentation" - }, { "criterion": { "id": 56, @@ -44868,6 +44632,14 @@ "title": "Application Access - All Data Request" }, "value": "https://fhirpresentation.assertus.com/npp/1619131398/r4/Home/ApiDocumentation" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhirpresentation.assertus.com/npp/1619131398/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -44906,55 +44678,55 @@ "name": "Active" }, "criteriaMet": [ - { - "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": 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": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ @@ -45004,34 +44776,34 @@ }, "criteriaMet": [ { - "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 4, @@ -45039,9 +44811,34 @@ "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": 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": 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": 182, @@ -45049,19 +44846,19 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 9, @@ -45069,49 +44866,54 @@ "title": "Clinical Decision Support" }, { - "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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "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": 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": 172, @@ -45119,14 +44921,9 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { "id": 33, @@ -45134,24 +44931,24 @@ "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": 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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "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, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 14, @@ -45159,9 +44956,9 @@ "title": "Implantable Device List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 44, @@ -45169,50 +44966,17 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "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": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" - }, { "criterion": { "id": 181, @@ -45228,6 +44992,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -45262,14 +45034,9 @@ }, "criteriaMet": [ { - "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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 12, @@ -45277,29 +45044,34 @@ "title": "Family Health History" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 33, @@ -45307,19 +45079,19 @@ "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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 52, @@ -45327,29 +45099,34 @@ "title": "Safety-Enhanced Design" }, { - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 1, @@ -45357,19 +45134,24 @@ "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": 35, - "number": "170.315 (d)(7)", - "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": 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": 177, @@ -45377,89 +45159,79 @@ "title": "Multi-Factor Authentication" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "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" } ], "apiDocumentation": [ @@ -45524,90 +45296,75 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, { - "id": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "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": 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": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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, @@ -45615,39 +45372,39 @@ "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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 1, @@ -45655,39 +45412,54 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ @@ -45752,35 +45524,15 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 176, @@ -45788,9 +45540,9 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 37, @@ -45798,24 +45550,44 @@ "title": "Trusted Connection" }, { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 180, @@ -45823,20 +45595,20 @@ "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, + { + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" + }, { "id": 181, "number": "170.315 (g)(9)", @@ -45906,39 +45678,29 @@ }, "criteriaMet": [ { - "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": 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": 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": 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": 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": 2, @@ -45946,19 +45708,14 @@ "title": "CPOE - Laboratory" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 181, @@ -45966,14 +45723,9 @@ "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 36, @@ -45981,44 +45733,44 @@ "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": 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": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 170, @@ -46026,44 +45778,44 @@ "title": "Care Plan" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 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": 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": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { "id": 53, @@ -46071,34 +45823,49 @@ "title": "Quality Management System" }, { - "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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 52, @@ -46106,22 +45873,27 @@ "title": "Safety-Enhanced Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 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" } ], "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://openapi.modulemd.com" }, @@ -46135,9 +45907,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://openapi.modulemd.com" } @@ -46179,29 +45951,24 @@ }, "criteriaMet": [ { - "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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 173, @@ -46209,64 +45976,64 @@ "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": 56, "number": "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 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": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 14, @@ -46274,14 +46041,14 @@ "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 33, @@ -46289,22 +46056,27 @@ "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 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" }, @@ -46318,9 +46090,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" } @@ -46356,40 +46128,35 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ - { - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 34, @@ -46402,14 +46169,19 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 9, @@ -46417,14 +46189,9 @@ "title": "Clinical Decision Support" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 14, @@ -46432,19 +46199,19 @@ "title": "Implantable Device List" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 173, @@ -46452,45 +46219,50 @@ "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 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" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 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" }, @@ -46540,9 +46312,19 @@ }, "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 56, @@ -46550,30 +46332,15 @@ "title": "Application Access - Patient Selection" }, { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" - }, - { - "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": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered 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": 174, "number": "170.315 (d)(3)", @@ -46584,35 +46351,45 @@ "number": "170.315 (d)(6)", "title": "Emergency Access" }, + { + "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": 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": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 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": 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, @@ -46620,22 +46397,25 @@ "title": "End-User Device Encryption" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 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" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.navigatingcancer.com/requirements-incentives/" + }, { "criterion": { "id": 182, @@ -46651,14 +46431,6 @@ "title": "Application Access - All Data Request" }, "value": "https://www.navigatingcancer.com/requirements-incentives/" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.navigatingcancer.com/requirements-incentives/" } ], "acb": "Drummond Group" @@ -46698,34 +46470,14 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 26, @@ -46733,64 +46485,54 @@ "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": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 59, @@ -46798,14 +46540,9 @@ "title": "Direct Project" }, { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 177, @@ -46813,14 +46550,9 @@ "title": "Multi-Factor Authentication" }, { - "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": 5, @@ -46828,67 +46560,115 @@ "title": "Demographics" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 9, + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "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": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "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.nethealth.com/fhir-api-app-registration-terms-and-conditions/" + }, { "criterion": { "id": 181, @@ -46904,14 +46684,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://nethealthapis.nhsinc.com/?__hstc=109635226.56ed3d94bc2b08f7a9854f9a87442b14.1569593004031.1569593004031.1570556123920.2\u0026__hssc=109635226.1.1570556123920\u0026__hsfp=154593434" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.nethealth.com/fhir-api-app-registration-terms-and-conditions/" } ], "acb": "Drummond Group" @@ -46946,19 +46718,19 @@ }, "criteriaMet": [ { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 180, + "number": "170.315 (g)(6)", + "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 32, @@ -46966,79 +46738,74 @@ "title": "Amendments" }, { - "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 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": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 34, @@ -47046,34 +46813,34 @@ "title": "Emergency Access" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 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": 29, @@ -47081,29 +46848,29 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 165, @@ -47111,29 +46878,39 @@ "title": "Transitions of Care" }, { - "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { "id": 14, @@ -47141,45 +46918,32 @@ "title": "Implantable Device List" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "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://nethealthapis-integration.nhsinc.com/index.html" - }, { "criterion": { "id": 182, @@ -47188,6 +46952,14 @@ }, "value": "https://www.nethealth.com/fhir-api-app-registration-terms-and-conditions/" }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://nethealthapis-integration.nhsinc.com/index.html" + }, { "criterion": { "id": 181, @@ -47234,104 +47006,84 @@ }, "criteriaMet": [ { - "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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "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": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 52, @@ -47339,39 +47091,39 @@ "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 51, @@ -47379,102 +47131,122 @@ "title": "Automated Measure Calculation" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 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": 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": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 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": 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": 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": 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": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "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": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 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": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.nextgen.com/api" }, @@ -47488,9 +47260,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.nextgen.com/api" } @@ -47527,54 +47299,69 @@ }, "criteriaMet": [ { - "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": 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": 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": 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": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 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": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { "id": 3, @@ -47582,59 +47369,59 @@ "title": "CPOE - Diagnostic Imaging" }, { - "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "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": 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": 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": 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": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 167, @@ -47642,29 +47429,24 @@ "title": "Electronic Prescribing" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 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": 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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 177, @@ -47672,19 +47454,19 @@ "title": "Multi-Factor Authentication" }, { - "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": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 178, @@ -47697,24 +47479,19 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 52, @@ -47722,55 +47499,42 @@ "title": "Safety-Enhanced Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.nextgen.com/api" - }, { "criterion": { "id": 56, @@ -47786,6 +47550,14 @@ "title": "Application Access - All Data Request" }, "value": "https://www.nextgen.com/api" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.nextgen.com/api" } ], "acb": "Drummond Group" @@ -47820,19 +47592,14 @@ }, "criteriaMet": [ { - "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 174, @@ -47840,19 +47607,19 @@ "title": "Audit Report(s)" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 25, @@ -47860,19 +47627,9 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 49, @@ -47880,159 +47637,144 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 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": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 5, @@ -48040,9 +47782,9 @@ "title": "Demographics" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 46, @@ -48050,20 +47792,42 @@ "title": "Transmission to Cancer Registries" }, { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "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": 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": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.nextgen.com/api" - }, { "criterion": { "id": 182, @@ -48079,6 +47843,14 @@ "title": "Application Access - All Data Request" }, "value": "https://www.nextgen.com/api" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.nextgen.com/api" } ], "acb": "Drummond Group" @@ -48118,44 +47890,24 @@ }, "criteriaMet": [ { - "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": 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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 14, @@ -48163,39 +47915,19 @@ "title": "Implantable Device List" }, { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 37, @@ -48208,9 +47940,9 @@ "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": 167, @@ -48218,14 +47950,9 @@ "title": "Electronic Prescribing" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 4, @@ -48233,29 +47960,39 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 56, @@ -48263,9 +48000,24 @@ "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "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": 42, @@ -48273,19 +48025,34 @@ "title": "Patient Health Information Capture" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 180, @@ -48293,37 +48060,42 @@ "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": 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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "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://www.nextgen.com/api" }, @@ -48337,9 +48109,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" } @@ -48349,11 +48121,11 @@ ] }, { - "listSourceURL": "https://www.nextech.com/hubfs/Nextech%20FHIR%20Base%20URL.csv", + "listSourceURL": "https://www.nextech.com/developers-portal", "softwareProducts": [ { - "id": 11028, - "chplProductNumber": "15.04.04.2051.Ntec.17.09.1.221121", + "id": 11027, + "chplProductNumber": "15.04.04.2051.Inte.08.01.0.221121", "edition": { "id": 3, "name": "2015" @@ -48367,12 +48139,12 @@ "name": "Nextech" }, "product": { - "id": 3538, - "name": "Nextech" + "id": 3655, + "name": "Nextech EHR (ICP)" }, "version": { - "id": 8619, - "name": "17" + "id": 8618, + "name": "8" }, "certificationDate": "2022-11-21", "certificationStatus": { @@ -48381,34 +48153,39 @@ }, "criteriaMet": [ { - "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": 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": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 166, @@ -48416,19 +48193,9 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 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": 3, @@ -48436,99 +48203,104 @@ "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 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": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 9, @@ -48536,37 +48308,24 @@ "title": "Clinical Decision Support" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.nextech.com/developers-portal" - }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.nextech.com/developers-portal" + "value": "https://nextechsystems.github.io/intellechartapidocspub/r4.html#introduction" }, { "criterion": { @@ -48574,14 +48333,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.nextech.com/developers-portal" + "value": "https://nextechsystems.github.io/intellechartapidocspub/r4.html#introduction" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://nextechsystems.github.io/intellechartapidocspub/r4.html#introduction" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://www.nextech.com/hubfs/Nextech%20FHIR%20Base%20URL.csv", + "softwareProducts": [ { - "id": 11029, - "chplProductNumber": "15.04.04.2051.Next.17.08.1.221121", + "id": 11028, + "chplProductNumber": "15.04.04.2051.Ntec.17.09.1.221121", "edition": { "id": 3, "name": "2015" @@ -48595,11 +48367,11 @@ "name": "Nextech" }, "product": { - "id": 3358, - "name": "Nextech with NewCropRx" + "id": 3538, + "name": "Nextech Select and NexCloud" }, "version": { - "id": 8620, + "id": 8619, "name": "17" }, "certificationDate": "2022-11-21", @@ -48609,39 +48381,34 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 25, @@ -48649,49 +48416,54 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 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": 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": 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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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, @@ -48699,34 +48471,39 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 35, @@ -48734,64 +48511,44 @@ "title": "End-User Device Encryption" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, - { - "id": 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": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ @@ -48821,15 +48578,10 @@ } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://www.nexusclinical.net/nexusehr-fhirapi-base-urls.csv", - "softwareProducts": [ + }, { - "id": 11130, - "chplProductNumber": "15.04.04.2989.Nexu.07.03.1.221227", + "id": 11029, + "chplProductNumber": "15.04.04.2051.Next.17.08.1.221121", "edition": { "id": 3, "name": "2015" @@ -48839,92 +48591,77 @@ "name": "" }, "developer": { - "id": 1990, - "name": "Nexus Clinical LLC" + "id": 1052, + "name": "Nextech" }, "product": { - "id": 3360, - "name": "Nexus EHR" + "id": 3358, + "name": "Nextech Select and NexCloud with NewCropRx" }, "version": { - "id": 8700, - "name": "7.3" + "id": 8620, + "name": "17" }, - "certificationDate": "2022-12-27", + "certificationDate": "2022-11-21", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 178, @@ -48932,89 +48669,84 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "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": 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": 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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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": 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": 54, @@ -49022,44 +48754,62 @@ "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.nextech.com/developers-portal" + }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.nexusclinical.com/wp-content/uploads/2017/07/Nexus_Open_API.pdf" + "value": "https://www.nextech.com/developers-portal" }, { "criterion": { @@ -49067,15 +48817,7 @@ "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.nexusclinical.com/wp-content/uploads/2017/07/Nexus_Open_API.pdf" - }, - { - "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" + "value": "https://www.nextech.com/developers-portal" } ], "acb": "Drummond Group" @@ -49083,11 +48825,11 @@ ] }, { - "listSourceURL": "https://www.novomedici.com/api-documents/", + "listSourceURL": "https://www.nexusclinical.net/nexusehr-fhirapi-base-urls.csv", "softwareProducts": [ { - "id": 10805, - "chplProductNumber": "15.02.05.3015.Novo.01.01.1.220131", + "id": 11130, + "chplProductNumber": "15.04.04.2989.Nexu.07.03.1.221227", "edition": { "id": 3, "name": "2015" @@ -49097,122 +48839,107 @@ "name": "" }, "developer": { - "id": 2016, - "name": "NovoMedici, LLC" + "id": 1990, + "name": "Nexus Clinical LLC" }, "product": { - "id": 2872, - "name": "NovoClinical" + "id": 3360, + "name": "Nexus EHR" }, "version": { - "id": 7257, - "name": "1.0" + "id": 8700, + "name": "7.3" }, - "certificationDate": "2022-01-31", + "certificationDate": "2022-12-27", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 33, @@ -49220,39 +48947,24 @@ "title": "Automatic Access Time-out" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 3, @@ -49260,19 +48972,24 @@ "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 12, @@ -49280,9 +48997,9 @@ "title": "Family Health History" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 43, @@ -49290,37 +49007,67 @@ "title": "Transmission to Immunization Registries" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 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": 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" } ], "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.novomedici.com/api-documents/" + "value": "https://www.nexusclinical.com/wp-content/uploads/2017/07/Nexus_Open_API.pdf" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "http://www.novomedici.com/meaningful-use/" + "value": "https://www.nexusclinical.com/wp-content/uploads/2017/07/Nexus_Open_API.pdf" }, { "criterion": { @@ -49328,19 +49075,19 @@ "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, - "value": "http://www.novomedici.com/meaningful-use/" + "value": "https://www.nexusclinical.com/wp-content/uploads/2017/07/Nexus_Open_API.pdf" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://objectivemedicalsystems.com/products/electronic-health-record/fhir-endpoints/", + "listSourceURL": "https://www.novomedici.com/api-documents/", "softwareProducts": [ { - "id": 11146, - "chplProductNumber": "15.04.04.2086.OMSE.04.03.1.221227", + "id": 10805, + "chplProductNumber": "15.02.05.3015.Novo.01.01.1.220131", "edition": { "id": 3, "name": "2015" @@ -49350,21 +49097,21 @@ "name": "" }, "developer": { - "id": 1087, - "name": "Objective Medical Systems, LLC" + "id": 2016, + "name": "NovoMedici, LLC" }, "product": { - "id": 1823, - "name": "OMS EHR" + "id": 2872, + "name": "NovoClinical" }, "version": { - "id": 8715, - "name": "4.4.0.00" + "id": 7257, + "name": "1.0" }, - "certificationDate": "2022-12-27", + "certificationDate": "2022-01-31", "certificationStatus": { - "id": 3, - "name": "Withdrawn by Developer" + "id": 1, + "name": "Active" }, "criteriaMet": [ { @@ -49373,89 +49120,49 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 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": 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": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 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, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 9, @@ -49463,14 +49170,14 @@ "title": "Clinical Decision Support" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 32, @@ -49478,14 +49185,14 @@ "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 176, @@ -49493,14 +49200,9 @@ "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 14, @@ -49508,54 +49210,99 @@ "title": "Implantable Device List" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "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": 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": 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": 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": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ @@ -49565,7 +49312,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://c3.omshealth.com/apiaccess/FHIR/apidocment" + "value": "http://www.novomedici.com/meaningful-use/" }, { "criterion": { @@ -49573,7 +49320,7 @@ "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - "value": "https://c3.omshealth.com/apiaccess/FHIR/apidocment" + "value": "https://www.novomedici.com/api-documents/" }, { "criterion": { @@ -49581,14 +49328,19 @@ "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, - "value": "https://c3.omshealth.com/apiaccess/FHIR/apidocment" + "value": "http://www.novomedici.com/meaningful-use/" } ], - "acb": "Drummond Group" - }, + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://objectivemedicalsystems.com/products/electronic-health-record/fhir-endpoints/", + "softwareProducts": [ { - "id": 11381, - "chplProductNumber": "15.04.04.2086.OMSE.05.04.1.231128", + "id": 11146, + "chplProductNumber": "15.04.04.2086.OMSE.04.03.1.221227", "edition": { "id": 3, "name": "2015" @@ -49606,39 +49358,34 @@ "name": "OMS EHR" }, "version": { - "id": 8892, - "name": "5.0.0.00" + "id": 8715, + "name": "4.4.0.00" }, - "certificationDate": "2023-11-28", + "certificationDate": "2022-12-27", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 2, @@ -49646,34 +49393,39 @@ "title": "CPOE - Laboratory" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered 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": 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": 9, @@ -49681,59 +49433,64 @@ "title": "Clinical Decision Support" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 166, @@ -49741,9 +49498,14 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 172, @@ -49751,75 +49513,65 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "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": 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": 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": 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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "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://c3.omshealth.com/apiaccess/FHIR/apidocment" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://c3.omshealth.com/apiaccess/FHIR/apidocment" }, @@ -49833,15 +49585,10 @@ } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://fhir-documentation.patientmedrecords.com/endpoints", - "softwareProducts": [ + }, { - "id": 11049, - "chplProductNumber": "15.04.04.3048.Offi.21.02.1.221121", + "id": 11381, + "chplProductNumber": "15.04.04.2086.OMSE.05.04.1.231128", "edition": { "id": 3, "name": "2015" @@ -49851,37 +49598,42 @@ "name": "" }, "developer": { - "id": 2049, - "name": "Office Practicum" + "id": 1087, + "name": "Objective Medical Systems, LLC" }, "product": { - "id": 3090, - "name": "Office Practicum" + "id": 1823, + "name": "OMS EHR" }, "version": { - "id": 8636, - "name": "21" + "id": 8892, + "name": "5.0.0.00" }, - "certificationDate": "2022-11-21", + "certificationDate": "2023-11-28", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 165, @@ -49889,44 +49641,44 @@ "title": "Transitions of Care" }, { - "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)", - "title": "Demographics" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 37, @@ -49934,19 +49686,19 @@ "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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, @@ -49954,44 +49706,39 @@ "title": "Electronic Prescribing" }, { - "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 34, @@ -50003,37 +49750,98 @@ "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, { "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": [ + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.officepracticum.com/op/fhir-documentation" - } - ], - "acb": "Drummond Group" - } - ] - }, + "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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 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://c3.omshealth.com/apiaccess/FHIR/apidocment" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://c3.omshealth.com/apiaccess/FHIR/apidocment" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://c3.omshealth.com/apiaccess/FHIR/apidocment" + } + ], + "acb": "Drummond Group" + } + ] + }, { - "listSourceURL": "https://isalus-fhirpresentation.everhealthsoftware.com/fhir/r4/endpoints", + "listSourceURL": "https://fhir-documentation.patientmedrecords.com/endpoints", "softwareProducts": [ { - "id": 10914, - "chplProductNumber": "15.04.04.2629.Offi.21.02.1.220606", + "id": 11049, + "chplProductNumber": "15.04.04.3048.Offi.21.02.1.221121", "edition": { "id": 3, "name": "2015" @@ -50043,47 +49851,47 @@ "name": "" }, "developer": { - "id": 1630, - "name": "iSALUS Healthcare" + "id": 2049, + "name": "Office Practicum" }, "product": { - "id": 2566, - "name": "OfficeEMR" + "id": 3090, + "name": "Office Practicum" }, "version": { - "id": 8511, - "name": "2021" + "id": 8636, + "name": "21" }, - "certificationDate": "2022-06-06", + "certificationDate": "2022-11-21", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 12, @@ -50091,29 +49899,49 @@ "title": "Family Health History" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 37, @@ -50121,9 +49949,49 @@ "title": "Trusted Connection" }, { - "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 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": 166, @@ -50131,34 +49999,106 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 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" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.officepracticum.com/op/fhir-documentation" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://isalus-fhirpresentation.everhealthsoftware.com/fhir/r4/endpoints", + "softwareProducts": [ + { + "id": 10914, + "chplProductNumber": "15.04.04.2629.Offi.21.02.1.220606", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1630, + "name": "iSALUS Healthcare" + }, + "product": { + "id": 2566, + "name": "OfficeEMR" + }, + "version": { + "id": 8511, + "name": "2021" + }, + "certificationDate": "2022-06-06", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "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": 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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 56, @@ -50166,19 +50106,29 @@ "title": "Application Access - Patient Selection" }, { - "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 3, @@ -50186,39 +50136,79 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 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": 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": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 9, @@ -50226,9 +50216,9 @@ "title": "Clinical Decision Support" }, { - "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": 180, @@ -50236,24 +50226,34 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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" } ], "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.isalushealthcare.com/" + "value": "https://isalus-fhirpresentation.everhealthsoftware.com/isalus/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { @@ -50265,11 +50265,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://isalus-fhirpresentation.everhealthsoftware.com/isalus/basepractice/r4/Home/ApiDocumentation" + "value": "https://docs.isalushealthcare.com/" } ], "acb": "Drummond Group" @@ -50309,44 +50309,54 @@ }, "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 51, @@ -50354,14 +50364,24 @@ "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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 42, @@ -50373,35 +50393,50 @@ "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 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": 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": 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": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 35, @@ -50409,19 +50444,19 @@ "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 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": 46, @@ -50429,24 +50464,14 @@ "title": "Transmission to Cancer Registries" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 179, @@ -50454,34 +50479,19 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "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": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 166, @@ -50489,24 +50499,24 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 176, @@ -50514,35 +50524,17 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://fhirregistration.omnimd.com/#/specification" - }, { "criterion": { "id": 181, @@ -50551,6 +50543,14 @@ }, "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" + }, { "criterion": { "id": 56, @@ -50591,35 +50591,25 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, { "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 4, @@ -50627,59 +50617,54 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 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": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 174, @@ -50687,24 +50672,29 @@ "title": "Audit Report(s)" }, { - "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": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 54, @@ -50712,14 +50702,9 @@ "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 12, @@ -50727,44 +50712,54 @@ "title": "Family Health History" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "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": 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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 181, + "number": "170.315 (g)(9)", + "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": 37, @@ -50772,9 +50767,19 @@ "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": 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": 43, @@ -50782,42 +50787,45 @@ "title": "Transmission to Immunization Registries" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.omnimd.com/open-api/" + }, { "criterion": { "id": 182, @@ -50833,14 +50841,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://www.omnimd.com/open-api/" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.omnimd.com/open-api/" } ], "acb": "SLI Compliance" @@ -50880,44 +50880,49 @@ }, "criteriaMet": [ { - "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": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "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": 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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 29, @@ -50925,49 +50930,34 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 182, @@ -50975,9 +50965,9 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 174, @@ -50985,19 +50975,29 @@ "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 35, @@ -51005,77 +51005,77 @@ "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://flatiron.force.com/FHIR/s/" }, @@ -51089,9 +51089,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://flatiron.force.com/FHIR/s/" } @@ -51133,24 +51133,14 @@ }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 25, @@ -51162,30 +51152,20 @@ "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": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 33, @@ -51193,9 +51173,9 @@ "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": 32, @@ -51203,19 +51183,24 @@ "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 173, @@ -51223,24 +51208,24 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 181, @@ -51248,27 +51233,42 @@ "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 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" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.medonehp.com/wp-content/uploads/2023/11/SmartOnFHIR-API.pdf" }, @@ -51282,9 +51282,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.medonehp.com/wp-content/uploads/2023/11/SmartOnFHIR-API.pdf" } @@ -51326,14 +51326,14 @@ }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 53, @@ -51341,64 +51341,59 @@ "title": "Quality Management System" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 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": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 171, @@ -51406,19 +51401,34 @@ "title": "Electronic Health Information 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": 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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 167, @@ -51430,30 +51440,30 @@ "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 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": 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": 32, @@ -51461,39 +51471,24 @@ "title": "Amendments" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 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": 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": 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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 39, @@ -51501,29 +51496,34 @@ "title": "Accounting of Disclosures" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "apiDocumentation": [ @@ -51537,17 +51537,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.onetouchemr.com/development/OT-API-Documentation.pdf" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.onetouchemr.com/development/OT-API-Documentation.pdf" } @@ -51589,39 +51589,44 @@ }, "criteriaMet": [ { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 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": 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": 181, @@ -51629,69 +51634,84 @@ "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "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": 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": 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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 5, @@ -51699,62 +51719,42 @@ "title": "Demographics" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(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.open-emr.org/wiki/index.php/OpenEMR_7.0.0_API" }, @@ -51768,9 +51768,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.open-emr.org/wiki/index.php/OpenEMR_7.0.0_API" } @@ -51812,64 +51812,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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 34, @@ -51877,19 +51867,9 @@ "title": "Emergency Access" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 37, @@ -51897,49 +51877,44 @@ "title": "Trusted Connection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 46, @@ -51947,9 +51922,14 @@ "title": "Transmission to Cancer Registries" }, { - "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, @@ -51957,39 +51937,44 @@ "title": "Automatic Access Time-out" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 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": 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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 32, @@ -51997,17 +51982,32 @@ "title": "Amendments" }, { - "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, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "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" } ], "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://orthoplex.mkoss.com/swagger/ui/index#/ExternalApiPatients" }, @@ -52021,9 +52021,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://orthoplex.mkoss.com/swagger/ui/index#/ExternalApiPatients" } @@ -52064,26 +52064,6 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, { "id": 52, "number": "170.315 (g)(3)", @@ -52095,49 +52075,54 @@ "title": "Security Tags - Summary of Care - Send" }, { - "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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 54, @@ -52145,14 +52130,14 @@ "title": "Accessibility-Centered Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 56, @@ -52160,9 +52145,9 @@ "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 42, @@ -52170,24 +52155,9 @@ "title": "Patient Health Information Capture" }, { - "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "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": 34, @@ -52195,14 +52165,9 @@ "title": "Emergency Access" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 59, @@ -52210,19 +52175,19 @@ "title": "Direct Project" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 165, @@ -52230,9 +52195,9 @@ "title": "Transitions of Care" }, { - "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, @@ -52240,37 +52205,72 @@ "title": "Family Health History" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 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": 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": 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": 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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "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": "http://www.qrshs.info/" }, @@ -52284,9 +52284,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://www.qrshs.info/" } @@ -52328,49 +52328,54 @@ }, "criteriaMet": [ { - "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced 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": 43, @@ -52378,14 +52383,34 @@ "title": "Transmission to Immunization Registries" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 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": 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": 39, @@ -52393,69 +52418,79 @@ "title": "Accounting of Disclosures" }, { - "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": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 5, @@ -52463,34 +52498,19 @@ "title": "Demographics" }, { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "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": 36, @@ -52498,49 +52518,29 @@ "title": "Integrity" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 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": 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" } ], "apiDocumentation": [ @@ -52554,17 +52554,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.pcesystems.com/g10APIInfo.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.pcesystems.com/g10APIInfo.html" } @@ -52606,29 +52606,9 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 44, @@ -52636,29 +52616,29 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 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": 36, @@ -52666,139 +52646,159 @@ "title": "Integrity" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 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": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 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": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ @@ -52830,118 +52830,53 @@ "acb": "Drummond Group" } ] - }, - { - "listSourceURL": "https://smart.mdsuite.com/Endpoints", - "softwareProducts": [ - { - "id": 9347, - "chplProductNumber": "15.04.04.2688.PDSM.08.00.1.180202", - "edition": { - "id": 3, - "name": "2015" - }, - "practiceType": { - "id": 0, - "name": "" - }, - "developer": { - "id": 1689, - "name": "Azalea Health" - }, - "product": { - "id": 2867, - "name": "PDS MDSuite" - }, - "version": { - "id": 7241, - "name": "Version 8" - }, - "certificationDate": "2018-02-02", - "certificationStatus": { - "id": 3, - "name": "Withdrawn by Developer" - }, - "criteriaMet": [ - { - "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, + }, + { + "listSourceURL": "https://smart.mdsuite.com/Endpoints", + "softwareProducts": [ + { + "id": 9347, + "chplProductNumber": "15.04.04.2688.PDSM.08.00.1.180202", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1689, + "name": "Azalea Health" + }, + "product": { + "id": 2867, + "name": "PDS MDSuite" + }, + "version": { + "id": 7241, + "name": "Version 8" + }, + "certificationDate": "2018-02-02", + "certificationStatus": { + "id": 3, + "name": "Withdrawn by Developer" + }, + "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 29, @@ -52949,15 +52884,30 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, { "id": 36, "number": "170.315 (d)(8)", @@ -52969,24 +52919,29 @@ "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 21, @@ -52994,14 +52949,14 @@ "title": "Data Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 182, @@ -53009,44 +52964,49 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 25, @@ -53054,22 +53014,70 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 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": 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://developer.mdsuite.com/api/help" + }, { "criterion": { "id": 181, @@ -53085,14 +53093,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.mdsuite.com/api/help/index" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://developer.mdsuite.com/api/help" } ], "acb": "Drummond Group" @@ -53137,44 +53137,44 @@ "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": 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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ @@ -53226,20 +53226,30 @@ "name": "Active" }, "criteriaMet": [ + { + "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 182, @@ -53247,9 +53257,9 @@ "title": "Standardized API for Patient and Population Services" }, { - "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, @@ -53257,19 +53267,9 @@ "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 177, @@ -53332,9 +53332,14 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 173, @@ -53342,9 +53347,14 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 33, @@ -53352,122 +53362,112 @@ "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 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": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 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": 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": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.thesnfist.com/cures-update" }, @@ -53481,9 +53481,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.thesnfist.com/cures-update" } @@ -53525,64 +53525,34 @@ }, "criteriaMet": [ { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 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": 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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 33, @@ -53590,54 +53560,34 @@ "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 177, - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, { "id": 51, "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 56, @@ -53645,24 +53595,24 @@ "title": "Application Access - Patient Selection" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 35, @@ -53670,9 +53620,44 @@ "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 36, @@ -53680,14 +53665,9 @@ "title": "Integrity" }, { - "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 14, @@ -53695,27 +53675,55 @@ "title": "Implantable Device List" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "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://developer.allscripts.com/Fhir/Introduction" + }, { "criterion": { "id": 181, @@ -53731,14 +53739,6 @@ "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" @@ -53772,105 +53772,100 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, { "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": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 39, @@ -53878,74 +53873,79 @@ "title": "Accounting of Disclosures" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 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": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 178, @@ -53958,17 +53958,17 @@ "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" } ], "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://developer.allscripts.com/Fhir/Introduction" }, @@ -53982,9 +53982,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://developer.allscripts.com/Fhir/Introduction" } @@ -54021,34 +54021,29 @@ }, "criteriaMet": [ { - "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 52, @@ -54056,29 +54051,64 @@ "title": "Safety-Enhanced Design" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "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": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 5, @@ -54086,89 +54116,59 @@ "title": "Demographics" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, { "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": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 32, @@ -54176,24 +54176,24 @@ "title": "Amendments" }, { - "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 56, @@ -54201,22 +54201,22 @@ "title": "Application Access - Patient Selection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://developer.allscripts.com/Fhir/Introduction" }, @@ -54230,9 +54230,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://developer.allscripts.com/Fhir/Introduction" } @@ -54268,70 +54268,55 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "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": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 52, @@ -54339,19 +54324,14 @@ "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": 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": 54, @@ -54359,34 +54339,39 @@ "title": "Accessibility-Centered Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 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": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 182, @@ -54394,14 +54379,24 @@ "title": "Standardized API for Patient and Population Services" }, { - "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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 166, @@ -54409,39 +54404,34 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 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": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 21, @@ -54449,27 +54439,37 @@ "title": "Data 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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "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://developer.allscripts.com/Fhir/Introduction" }, @@ -54483,9 +54483,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" } @@ -54522,14 +54522,14 @@ }, "criteriaMet": [ { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 176, @@ -54537,74 +54537,74 @@ "title": "Encrypt Authentication Credentials" }, { - "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": 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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "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": 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": 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": 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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 59, @@ -54612,109 +54612,109 @@ "title": "Direct Project" }, { - "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" } ], "apiDocumentation": [ @@ -54775,164 +54775,154 @@ }, "criteriaMet": [ { - "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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, + { + "id": 53, + "number": "170.315 (g)(4)", + "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 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": 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": 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": 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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 2, @@ -54940,47 +54930,57 @@ "title": "CPOE - Laboratory" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (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" }, @@ -54994,9 +54994,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" } @@ -55033,29 +55033,34 @@ }, "criteriaMet": [ { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 172, @@ -55063,24 +55068,14 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 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": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 34, @@ -55088,29 +55083,34 @@ "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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 48, @@ -55118,152 +55118,152 @@ "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 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": 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": 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": 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": 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": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" } ], "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://developer.allscripts.com/" }, @@ -55277,9 +55277,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://developer.allscripts.com/" } @@ -55316,29 +55316,24 @@ }, "criteriaMet": [ { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { "id": 25, @@ -55346,14 +55341,39 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 26, @@ -55361,29 +55381,24 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 173, @@ -55391,114 +55406,109 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 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": 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" }, { - "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, { - "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": 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": 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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 33, - "number": "170.315 (d)(5)", - "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": 5, @@ -55506,24 +55516,14 @@ "title": "Demographics" }, { - "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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 172, @@ -55531,25 +55531,17 @@ "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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://developer.allscripts.com/" - }, { "criterion": { "id": 182, @@ -55565,6 +55557,14 @@ "title": "Application Access - Patient Selection" }, "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" @@ -55599,24 +55599,19 @@ }, "criteriaMet": [ { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 32, @@ -55624,44 +55619,44 @@ "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { "id": 21, @@ -55669,24 +55664,24 @@ "title": "Data Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 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": 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": 172, @@ -55694,24 +55689,24 @@ "title": "Clinical Quality Measures - Report" }, { - "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": 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": 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": 49, @@ -55719,9 +55714,14 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "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" }, { "id": 179, @@ -55729,84 +55729,79 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "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": 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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 51, @@ -55814,14 +55809,19 @@ "title": "Automated Measure Calculation" }, { - "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": 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" } ], "apiDocumentation": [ @@ -55835,17 +55835,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.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/" } @@ -55882,24 +55882,19 @@ }, "criteriaMet": [ { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 178, @@ -55907,19 +55902,19 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 45, @@ -55927,64 +55922,59 @@ "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 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)", - "title": "Accessibility-Centered Design" + "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 53, @@ -55992,9 +55982,9 @@ "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 29, @@ -56002,24 +55992,39 @@ "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 2, @@ -56027,84 +56032,79 @@ "title": "CPOE - Laboratory" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 35, + "number": "170.315 (d)(7)", + "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": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 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": 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": 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": 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": 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": 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": 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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ @@ -56165,49 +56165,59 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 34, @@ -56215,144 +56225,144 @@ "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 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": 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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 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": 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": 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": 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": 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": 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": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 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": 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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 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": 173, @@ -56360,24 +56370,14 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "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": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ @@ -56391,17 +56391,17 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.allscripts.com/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://developer.allscripts.com/" } @@ -56438,74 +56438,44 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "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": 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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 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": 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": 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": 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": 9, @@ -56513,19 +56483,14 @@ "title": "Clinical Decision Support" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 166, @@ -56533,14 +56498,24 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 3, @@ -56548,14 +56523,19 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 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": 25, @@ -56563,19 +56543,9 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 173, @@ -56583,29 +56553,34 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 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": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 43, @@ -56613,24 +56588,44 @@ "title": "Transmission to Immunization Registries" }, { - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 12, @@ -56638,19 +56633,24 @@ "title": "Family Health History" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ @@ -56664,17 +56664,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.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/" } @@ -56711,222 +56711,230 @@ }, "criteriaMet": [ { - "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 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": 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": 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": 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": 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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://developer.veradigm.com/" + }, { "criterion": { "id": 56, @@ -56942,14 +56950,6 @@ "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" @@ -56984,54 +56984,49 @@ }, "criteriaMet": [ { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 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": 182, - "number": "170.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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 9, @@ -57039,9 +57034,9 @@ "title": "Clinical Decision Support" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 51, @@ -57049,94 +57044,99 @@ "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": 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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 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": 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": 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": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 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": 180, @@ -57144,39 +57144,39 @@ "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": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 14, @@ -57184,19 +57184,19 @@ "title": "Implantable Device List" }, { - "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": 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" } ], "apiDocumentation": [ @@ -57256,30 +57256,25 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 35, @@ -57287,19 +57282,9 @@ "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 36, @@ -57307,24 +57292,29 @@ "title": "Integrity" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" }, { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 182, @@ -57332,14 +57322,9 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 177, @@ -57347,25 +57332,40 @@ "title": "Multi-Factor Authentication" }, { - "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": 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" + "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/" } @@ -57401,40 +57401,40 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 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": 35, - "number": "170.315 (d)(7)", - "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 174, @@ -57442,9 +57442,9 @@ "title": "Audit Report(s)" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 182, @@ -57452,14 +57452,14 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" }, { - "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, @@ -57467,45 +57467,45 @@ "title": "Trusted Connection" }, { - "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "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": 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/" } @@ -57542,74 +57542,69 @@ }, "criteriaMet": [ { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 56, @@ -57617,40 +57612,45 @@ "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 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": 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://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/" } @@ -57692,49 +57692,44 @@ }, "criteriaMet": [ { - "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": 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": 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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 14, @@ -57742,69 +57737,59 @@ "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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 52, @@ -57812,29 +57797,29 @@ "title": "Safety-Enhanced Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 43, @@ -57842,39 +57827,39 @@ "title": "Transmission to Immunization Registries" }, { - "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": 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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 42, @@ -57882,9 +57867,24 @@ "title": "Patient Health Information Capture" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" } ], "apiDocumentation": [ @@ -57898,17 +57898,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://patagoniahealth.com/wp-content/uploads/2022/12/SmartOnFHIR-API-Documentation.pdf" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://patagoniahealth.com/wp-content/uploads/2022/12/SmartOnFHIR-API-Documentation.pdf" } @@ -57950,19 +57950,19 @@ }, "criteriaMet": [ { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 171, @@ -57970,54 +57970,64 @@ "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "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": 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": 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": 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": 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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 51, @@ -58025,19 +58035,24 @@ "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 35, @@ -58045,24 +58060,14 @@ "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 174, @@ -58070,24 +58075,34 @@ "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 3, @@ -58095,67 +58110,60 @@ "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": 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": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 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": 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": 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": 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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhirpresentation.pcsdataxchg.com/dhit/basepractice/r4/Home/ApiDocumentation" + }, { "criterion": { "id": 56, @@ -58171,14 +58179,6 @@ "title": "Application Access - All Data Request" }, "value": "https://www.primeclinical.net/ws/rest/help/help.pdf" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://fhirpresentation.pcsdataxchg.com/dhit/basepractice/r4/Home/ApiDocumentation" } ], "acb": "SLI Compliance" @@ -58218,19 +58218,14 @@ }, "criteriaMet": [ { - "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": 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": 2, @@ -58238,34 +58233,29 @@ "title": "CPOE - Laboratory" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 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": 165, @@ -58273,14 +58263,14 @@ "title": "Transitions of Care" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 32, @@ -58288,34 +58278,44 @@ "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 174, @@ -58323,24 +58323,24 @@ "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 29, @@ -58348,25 +58348,25 @@ "title": "Authentication, Access Control, Authorization" }, { - "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" } ], "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://patientpattern-static.s3.us-west-2.amazonaws.com/static/documents/FHIR+API+Documentation.pdf" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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" }, @@ -58416,19 +58416,19 @@ }, "criteriaMet": [ { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 54, @@ -58441,14 +58441,9 @@ "title": "Consolidated CDA Creation Performance" }, { - "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 176, @@ -58456,9 +58451,9 @@ "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": 29, @@ -58466,19 +58461,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 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": 171, @@ -58486,22 +58471,45 @@ "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 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.willowgladetechnologies.com/requirements" + }, { "criterion": { "id": 56, @@ -58517,14 +58525,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.willowgladetechnologies.com/requirements" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.willowgladetechnologies.com/requirements" } ], "acb": "Leidos" @@ -58564,14 +58564,24 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 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, @@ -58579,134 +58589,134 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 182, @@ -58714,54 +58724,44 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 174, @@ -58772,17 +58772,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://mraemr.com:47102/api/help_document.asp" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://mraemr.com:47102/api/help_document.asp" }, @@ -58832,84 +58832,84 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 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": 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": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 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": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 180, @@ -58917,59 +58917,59 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 181, @@ -58977,44 +58977,34 @@ "title": "Application Access - All Data Request" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "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": 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": 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": 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": 44, @@ -59022,19 +59012,14 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 3, @@ -59042,9 +59027,14 @@ "title": "CPOE - Diagnostic Imaging" }, { - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 5, @@ -59052,9 +59042,24 @@ "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 176, @@ -59062,25 +59067,12 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://mraemr.com:47102/api/help_document.asp" - }, { "criterion": { "id": 181, @@ -59096,6 +59088,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "http://mraemr.com:47102/api/help_document.asp" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://mraemr.com:47102/api/help_document.asp" } ], "acb": "ICSA Labs" @@ -59135,34 +59135,19 @@ }, "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 59, @@ -59170,34 +59155,24 @@ "title": "Direct Project" }, { - "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": 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": 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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 37, @@ -59205,14 +59180,14 @@ "title": "Trusted Connection" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 2, @@ -59220,24 +59195,29 @@ "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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 51, @@ -59245,34 +59225,49 @@ "title": "Automated Measure Calculation" }, { - "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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 165, @@ -59280,67 +59275,72 @@ "title": "Transitions of Care" }, { - "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 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://harrisambulatory.com/picasso-api-documentation/" }, @@ -59354,9 +59354,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://harrisambulatory.com/picasso-api-documentation/" } @@ -59392,55 +59392,55 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 51, @@ -59448,24 +59448,24 @@ "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 176, @@ -59473,130 +59473,122 @@ "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 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" - }, - "value": "https://harrisambulatory.com/picasso-api-documentation/" - }, { "criterion": { "id": 181, @@ -59612,6 +59604,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" @@ -59646,9 +59646,9 @@ }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 4, @@ -59656,69 +59656,49 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "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": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 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": 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": 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": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 5, @@ -59726,79 +59706,74 @@ "title": "Demographics" }, { - "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, - { - "id": 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": 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": 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": 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": 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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 36, @@ -59806,55 +59781,80 @@ "title": "Integrity" }, { - "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 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": 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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://harrisambulatory.com/picasso-api-documentation/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://harrisambulatory.com/picasso-api-documentation/" }, @@ -59904,24 +59904,14 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 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": 54, @@ -59929,34 +59919,29 @@ "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 166, @@ -59968,30 +59953,50 @@ "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 33, @@ -59999,29 +60004,29 @@ "title": "Automatic Access Time-out" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 29, @@ -60029,39 +60034,34 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 32, @@ -60069,20 +60069,12 @@ "title": "Amendments" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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://fhir-qa.pcc-labs.com/PointClickCare.html" - }, { "criterion": { "id": 181, @@ -60098,6 +60090,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://fhir-qa.pcc-labs.com/PointClickCare.html" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://fhir-qa.pcc-labs.com/PointClickCare.html" } ], "acb": "Drummond Group" @@ -60137,39 +60137,29 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 4, @@ -60177,69 +60167,74 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 42, @@ -60247,29 +60242,34 @@ "title": "Patient Health Information Capture" }, { - "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": 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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 1, @@ -60282,34 +60282,34 @@ "title": "Transitions of Care" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 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, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "apiDocumentation": [ @@ -60323,17 +60323,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://apicert.practiceehr.com/Resources/data-api-documentation.pdf" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://apicert.practiceehr.com/Resources/data-api-documentation.pdf" } @@ -60375,9 +60375,19 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 182, @@ -60385,44 +60395,69 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 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": 178, @@ -60430,14 +60465,24 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 173, @@ -60445,19 +60490,19 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 32, @@ -60465,104 +60510,59 @@ "title": "Amendments" }, { - "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ @@ -60574,14 +60574,6 @@ }, "value": "https://cal-med.com/onc.html" }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://cal-med.com/Calmed_API_Document.pdf" - }, { "criterion": { "id": 181, @@ -60589,6 +60581,14 @@ "title": "Application Access - All Data Request" }, "value": "https://cal-med.com/onc.html" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://cal-med.com/Calmed_API_Document.pdf" } ], "acb": "Drummond Group" @@ -60628,44 +60628,39 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "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": 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": 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": 15, @@ -60673,9 +60668,9 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "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": 174, @@ -60683,19 +60678,24 @@ "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "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, - "number": "170.315 (a)(6)", - "title": "Problem List" + "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": 43, @@ -60703,114 +60703,119 @@ "title": "Transmission to Immunization Registries" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 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": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "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": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 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": 53, @@ -60818,60 +60823,47 @@ "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "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, @@ -60887,6 +60879,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://www.practicefusion.com/pds-api/developer-guide/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.practicefusion.com/pds-api/developer-guide/" } ], "acb": "Drummond Group" @@ -60925,35 +60925,20 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 29, @@ -60961,59 +60946,44 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 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": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 3, @@ -61021,114 +60991,129 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 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": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 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": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "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": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 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": 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": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 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": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 33, @@ -61136,14 +61121,29 @@ "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 178, @@ -61152,14 +61152,6 @@ } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://oauth.patientwebportal.com/Fhir/Documentation" - }, { "criterion": { "id": 56, @@ -61175,6 +61167,14 @@ "title": "Application Access - All Data Request" }, "value": "https://oauth.patientwebportal.com/Fhir/Documentation" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://oauth.patientwebportal.com/Fhir/Documentation" } ], "acb": "Drummond Group" @@ -61214,49 +61214,64 @@ }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 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": 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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, { "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 51, @@ -61264,24 +61279,9 @@ "title": "Automated Measure Calculation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 42, @@ -61289,14 +61289,19 @@ "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 25, @@ -61304,64 +61309,59 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 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": 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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 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": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 53, @@ -61374,45 +61374,45 @@ "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.praxisemr.com/applicationaccess/api/help/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.praxisemr.com/applicationaccess/api/help/" }, @@ -61462,19 +61462,9 @@ }, "criteriaMet": [ { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 165, @@ -61482,34 +61472,39 @@ "title": "Transitions of Care" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 9, @@ -61517,39 +61512,34 @@ "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 14, @@ -61557,34 +61547,49 @@ "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": 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": 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": 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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 12, @@ -61592,44 +61597,39 @@ "title": "Family Health History" }, { - "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, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 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" } ], "apiDocumentation": [ @@ -61678,35 +61678,55 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 32, @@ -61714,9 +61734,9 @@ "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 174, @@ -61724,94 +61744,74 @@ "title": "Audit Report(s)" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 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": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 167, @@ -61819,49 +61819,49 @@ "title": "Electronic Prescribing" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" } ], "apiDocumentation": [ @@ -61922,94 +61922,49 @@ }, "criteriaMet": [ { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, { "id": 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": 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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 180, @@ -62017,9 +61972,9 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 176, @@ -62032,24 +61987,29 @@ "title": "Direct Project" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 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": 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": 174, @@ -62057,65 +62017,105 @@ "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 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": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, { "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "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://harrisambulatory.com/pulse-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://harrisambulatory.com/pulse-api-documentation/" }, @@ -62163,51 +62163,46 @@ "id": 1, "name": "Active" }, - "criteriaMet": [ - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, + "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 35, @@ -62215,14 +62210,9 @@ "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 33, @@ -62230,29 +62220,29 @@ "title": "Automatic Access Time-out" }, { - "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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 25, @@ -62260,19 +62250,19 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 52, @@ -62285,40 +62275,42 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://pureehr.com/images/PureehrApiDocumentation.pdf" - }, { "criterion": { "id": 182, @@ -62334,6 +62326,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://pureehr.com/images/PureehrApiDocumentation.pdf" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://pureehr.com/images/PureehrApiDocumentation.pdf" } ], "acb": "Drummond Group" @@ -62373,24 +62373,24 @@ }, "criteriaMet": [ { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 42, @@ -62398,34 +62398,14 @@ "title": "Patient Health Information Capture" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 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": 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": 59, @@ -62433,64 +62413,39 @@ "title": "Direct Project" }, { - "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": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 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": 175, "number": "170.315 (d)(10)", "title": "Auditing Actions on Health Information" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 33, @@ -62498,19 +62453,19 @@ "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": 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, @@ -62523,19 +62478,39 @@ "title": "Electronic Prescribing" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 165, @@ -62543,19 +62518,19 @@ "title": "Transitions of Care" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 177, @@ -62563,9 +62538,34 @@ "title": "Multi-Factor Authentication" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 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" } ], "apiDocumentation": [ @@ -62631,34 +62631,79 @@ }, "criteriaMet": [ { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 54, @@ -62666,9 +62711,9 @@ "title": "Accessibility-Centered Design" }, { - "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": 180, @@ -62676,54 +62721,49 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { "id": 36, @@ -62731,39 +62771,34 @@ "title": "Integrity" }, { - "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 165, @@ -62771,19 +62806,9 @@ "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { "id": 9, @@ -62791,24 +62816,19 @@ "title": "Clinical Decision Support" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 174, @@ -62816,59 +62836,39 @@ "title": "Audit Report(s)" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "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": 42, - "number": "170.315 (e)(3)", - "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ @@ -62933,11 +62933,46 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ + { + "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, { "id": 172, "number": "170.315 (c)(3)", @@ -62949,9 +62984,14 @@ "title": "CPOE - Laboratory" }, { - "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": 21, @@ -62959,29 +62999,29 @@ "title": "Data Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 176, @@ -62989,24 +63029,24 @@ "title": "Encrypt Authentication Credentials" }, { - "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 36, @@ -63014,69 +63054,39 @@ "title": "Integrity" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 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": 42, @@ -63084,39 +63094,29 @@ "title": "Patient Health Information Capture" }, { - "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ @@ -63182,24 +63182,29 @@ }, "criteriaMet": [ { - "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 3, @@ -63207,54 +63212,64 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 33, @@ -63262,54 +63277,49 @@ "title": "Automatic Access Time-out" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 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": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "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": 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": 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": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "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": 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": 34, @@ -63317,44 +63327,49 @@ "title": "Emergency Access" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 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": 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": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 32, @@ -63362,55 +63377,40 @@ "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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 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": 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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://ehr.cutecharts.com/radytestmu3/Document/ApplicationAccessTermsandCondition.pdf" }, @@ -63460,44 +63460,54 @@ }, "criteriaMet": [ { - "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 3, @@ -63505,24 +63515,19 @@ "title": "CPOE - Diagnostic Imaging" }, { - "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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 176, @@ -63530,79 +63535,74 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 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": 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": 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": 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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 52, @@ -63610,29 +63610,24 @@ "title": "Safety-Enhanced Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 25, @@ -63640,30 +63635,27 @@ "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 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": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://help.relimedsolutions.com/fhir/SmartOnFHIR-API-Documentation.pdf" - }, { "criterion": { "id": 181, @@ -63679,6 +63671,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://help.relimedsolutions.com/fhir/SmartOnFHIR-API-Documentation.pdf" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://help.relimedsolutions.com/fhir/SmartOnFHIR-API-Documentation.pdf" } ], "acb": "Drummond Group" @@ -63718,29 +63718,9 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "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": 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, @@ -63748,39 +63728,34 @@ "title": "Safety-Enhanced Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 45, @@ -63788,64 +63763,64 @@ "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 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": 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": 35, @@ -63858,24 +63833,34 @@ "title": "Transmission to Immunization Registries" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 56, @@ -63883,44 +63868,44 @@ "title": "Application Access - Patient Selection" }, { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 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": 174, @@ -63928,27 +63913,34 @@ "title": "Audit Report(s)" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "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" + "value": "https://www.ihs.gov/directmessaging/resources/phr/?p=phr%5CIHS-Rest-API_Application-Access.pdf\u0026flname=IHS-Rest-API_Application-Access.pdf\u0026download=1" }, { "criterion": { @@ -63956,7 +63948,15 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.ihs.gov/rpmsdirect/resources/phr/?p=phr%5CIHS-Rest-API_Application-Access.pdf\u0026flname=IHS-Rest-API_Application-Access.pdf\u0026download=1" + "value": "https://www.ihs.gov/directmessaging/resources/phr/?p=phr%5CIHS-Rest-API_Application-Access.pdf\u0026flname=IHS-Rest-API_Application-Access.pdf\u0026download=1" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.ihs.gov/cis/" } ], "acb": "SLI Compliance" @@ -63996,39 +63996,39 @@ }, "criteriaMet": [ { - "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 54, @@ -64036,19 +64036,34 @@ "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 176, @@ -64056,34 +64071,29 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, { "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 171, @@ -64091,44 +64101,49 @@ "title": "Electronic Health Information Export" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 42, @@ -64136,19 +64151,9 @@ "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": 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, @@ -64156,19 +64161,14 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" } ], "apiDocumentation": [ @@ -64234,14 +64234,14 @@ }, "criteriaMet": [ { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 12, @@ -64249,59 +64249,59 @@ "title": "Family Health History" }, { - "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": 33, + "number": "170.315 (d)(5)", + "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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, - { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" - }, { "id": 13, "number": "170.315 (a)(13)", "title": "Patient-Specific Education Resources" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 29, + "number": "170.315 (d)(1)", + "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": 3, @@ -64309,19 +64309,19 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 4, @@ -64329,74 +64329,74 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 180, @@ -64467,29 +64467,29 @@ }, "criteriaMet": [ { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 4, @@ -64497,29 +64497,34 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 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": 32, @@ -64527,14 +64532,14 @@ "title": "Amendments" }, { - "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 9, @@ -64542,84 +64547,79 @@ "title": "Clinical Decision Support" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 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": 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": 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": 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": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 171, @@ -64627,19 +64627,19 @@ "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 33, @@ -64647,25 +64647,25 @@ "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" } ], "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://mu3.isequelmedasp.com/MU3API/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://mu3.isequelmedasp.com/MU3API/index.html" }, @@ -64715,24 +64715,19 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { "id": 14, @@ -64740,74 +64735,64 @@ "title": "Implantable Device List" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication 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": 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": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 176, @@ -64815,19 +64800,19 @@ "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": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 173, @@ -64835,59 +64820,59 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 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": 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, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 5, @@ -64895,40 +64880,47 @@ "title": "Demographics" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 56, + "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://genensys.com/api/" - }, { "criterion": { "id": 56, @@ -64944,6 +64936,14 @@ "title": "Application Access - All Data Request" }, "value": "https://genensys.com/api/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://genensys.com/api/" } ], "acb": "SLI Compliance" @@ -64951,7 +64951,7 @@ ] }, { - "listSourceURL": "https://dhfhirpresentation.smartcarenet.com/fhir/r4/endpoints", + "listSourceURL": "https://dhfhirpresentation.smartcarenet.com/", "softwareProducts": [ { "id": 10987, @@ -64983,19 +64983,24 @@ }, "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": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 179, @@ -65003,34 +65008,34 @@ "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 172, @@ -65038,34 +65043,24 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 4, @@ -65073,24 +65068,24 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 165, @@ -65098,69 +65093,74 @@ "title": "Transitions of Care" }, { - "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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 15, @@ -65168,34 +65168,34 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ @@ -65207,14 +65207,6 @@ }, "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, @@ -65222,10 +65214,23 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://dhfhirpresentation.smartcarenet.com/streamline/basepractice/r4/Home/ApiDocumentation" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://dev.smartcarenet.com/SmartCareEHRAPIMUStage3/swagger/ui/index" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://dhfhirpresentation.smartcarenet.com/fhir/r4/endpoints", + "softwareProducts": [ { "id": 9303, "chplProductNumber": "15.04.04.2855.Smar.05.00.1.171231", @@ -65256,29 +65261,34 @@ }, "criteriaMet": [ { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 21, @@ -65286,200 +65296,187 @@ "title": "Data Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, - { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" - }, { "id": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 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": 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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://dev.smartcarenet.com/SmartCareEHRAPIMUStage3/swagger/ui/index" - }, { "criterion": { "id": 182, @@ -65495,6 +65492,14 @@ "title": "Application Access - All Data Request" }, "value": "https://dhfhirpresentation.smartcarenet.com/streamline/basepractice/r4/Home/ApiDocumentation" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://dev.smartcarenet.com/SmartCareEHRAPIMUStage3/swagger/ui/index" } ], "acb": "Drummond Group" @@ -65534,30 +65539,20 @@ }, "criteriaMet": [ { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, { "id": 182, "number": "170.315 (g)(10)", @@ -65569,30 +65564,40 @@ "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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "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://cms.smilecdr.com/fhir-request/api-docs" }, { "criterion": { - "id": 56, - "number": "170.315 (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" } @@ -65629,14 +65634,9 @@ }, "criteriaMet": [ { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 53, @@ -65644,14 +65644,9 @@ "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 177, @@ -65663,31 +65658,33 @@ "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "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://cms.smilecdr.com/fhir-request/api-docs" - }, { "criterion": { "id": 56, @@ -65695,6 +65692,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://cms.smilecdr.com/fhir-request/api-docs" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://cms.smilecdr.com/fhir-request/api-docs" } ], "acb": "Drummond Group" @@ -65734,59 +65739,54 @@ }, "criteriaMet": [ { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 36, @@ -65794,14 +65794,9 @@ "title": "Integrity" }, { - "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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 173, @@ -65809,9 +65804,14 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 43, @@ -65819,114 +65819,119 @@ "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 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": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" } ], "apiDocumentation": [ @@ -65940,17 +65945,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://fhir.cerner.com/soarian/overview/" }, { "criterion": { - "id": 181, - "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/" } @@ -65992,19 +65997,24 @@ }, "criteriaMet": [ { - "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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 53, @@ -66012,29 +66022,34 @@ "title": "Quality Management System" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 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": 56, @@ -66042,69 +66057,54 @@ "title": "Application Access - Patient Selection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 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": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 35, @@ -66112,29 +66112,34 @@ "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 12, @@ -66142,75 +66147,75 @@ "title": "Family Health History" }, { - "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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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" }, { - "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)", - "title": "Multi-Factor Authentication" + "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, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "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://solidpractice.com/cost-limitation.php" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://solidpractice.com/cost-limitation.php" }, @@ -66260,14 +66265,14 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 37, @@ -66275,14 +66280,14 @@ "title": "Trusted Connection" }, { - "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 173, @@ -66290,9 +66295,9 @@ "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": 53, @@ -66300,9 +66305,9 @@ "title": "Quality Management System" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 54, @@ -66315,60 +66320,60 @@ "title": "Automated Numerator Recording" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 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": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" } ], "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-docs.practicegateway.net" }, { "criterion": { - "id": 182, - "number": "170.315 (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" }, @@ -66418,104 +66423,109 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, + { + "id": 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": 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": 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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 9, @@ -66523,29 +66533,19 @@ "title": "Clinical Decision Support" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 10, @@ -66553,9 +66553,9 @@ "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "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, @@ -66563,14 +66563,19 @@ "title": "Emergency Access" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 180, @@ -66578,14 +66583,14 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ @@ -66599,17 +66604,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.correctek.com/cost-disclosure-and-transparency/" }, { "criterion": { - "id": 181, - "number": "170.315 (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/" } @@ -66651,9 +66656,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, @@ -66661,49 +66666,49 @@ "title": "Demographics" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 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, - "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 165, @@ -66711,9 +66716,9 @@ "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": 2, @@ -66721,24 +66726,34 @@ "title": "CPOE - Laboratory" }, { - "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 29, @@ -66746,24 +66761,19 @@ "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 9, @@ -66771,14 +66781,19 @@ "title": "Clinical Decision Support" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 3, @@ -66786,50 +66801,40 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "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://strateqhealth.com/wp-content/uploads/2023/12/Strateq-SmartOnFHIR-API.pdf" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://strateqhealth.com/wp-content/uploads/2023/12/Strateq-SmartOnFHIR-API.pdf" }, @@ -66879,79 +66884,24 @@ }, "criteriaMet": [ { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 56, @@ -66959,9 +66909,9 @@ "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": 26, @@ -66969,9 +66919,9 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 54, @@ -66979,14 +66929,19 @@ "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": 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": 39, @@ -66994,14 +66949,9 @@ "title": "Accounting of Disclosures" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 182, @@ -67009,19 +66959,19 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 51, @@ -67029,19 +66979,24 @@ "title": "Automated Measure Calculation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 1, @@ -67049,32 +67004,90 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 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" } ], "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": 181, @@ -67090,14 +67103,6 @@ "title": "Application Access - Patient Selection" }, "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" @@ -67137,39 +67142,19 @@ }, "criteriaMet": [ { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 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": 5, @@ -67177,14 +67162,19 @@ "title": "Demographics" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 33, @@ -67192,19 +67182,19 @@ "title": "Automatic Access Time-out" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 182, @@ -67212,45 +67202,75 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, { "id": 37, "number": "170.315 (d)(9)", @@ -67261,60 +67281,40 @@ "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": 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": 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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 173, @@ -67322,24 +67322,29 @@ "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": 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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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" } ], "apiDocumentation": [ @@ -67404,65 +67409,70 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ + { + "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": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, { "id": 59, "number": "170.315 (h)(1)", "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": 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": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 34, @@ -67470,84 +67480,84 @@ "title": "Emergency Access" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 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": 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": 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": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 29, @@ -67559,30 +67569,25 @@ "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ @@ -67648,74 +67653,69 @@ }, "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": 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": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 173, @@ -67723,9 +67723,14 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 51, @@ -67733,24 +67738,24 @@ "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 4, @@ -67758,29 +67763,24 @@ "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { "id": 36, @@ -67788,37 +67788,50 @@ "title": "Integrity" }, { - "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": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://ulrichmedicalconcepts.com/home/the-ehr/meaningful-use/cost-disclosure-and-transparency/" + }, { "criterion": { "id": 182, @@ -67834,14 +67847,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://ulrichmedicalconcepts.com/home/the-ehr/meaningful-use/cost-disclosure-and-transparency/" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://ulrichmedicalconcepts.com/home/the-ehr/meaningful-use/cost-disclosure-and-transparency/" } ], "acb": "SLI Compliance" @@ -67881,49 +67886,24 @@ }, "criteriaMet": [ { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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, @@ -67935,50 +67915,65 @@ "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": 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": 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": 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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 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, @@ -67986,34 +67981,39 @@ "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 165, @@ -68021,24 +68021,29 @@ "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 34, @@ -68046,25 +68051,25 @@ "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" } ], "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.kareo.com/macra-mips" }, { "criterion": { - "id": 181, - "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.kareo.com/macra-mips" }, @@ -68113,16 +68118,6 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, { "id": 32, "number": "170.315 (d)(4)", @@ -68134,19 +68129,9 @@ "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 25, @@ -68154,49 +68139,49 @@ "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 173, @@ -68204,19 +68189,19 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 9, @@ -68224,34 +68209,49 @@ "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, { - "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 171, @@ -68259,9 +68259,14 @@ "title": "Electronic Health Information Export" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ @@ -68327,29 +68332,24 @@ }, "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": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 14, @@ -68357,59 +68357,39 @@ "title": "Implantable Device List" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "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": 178, @@ -68417,9 +68397,14 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 173, @@ -68427,39 +68412,69 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, { - "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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, + { + "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": 42, @@ -68467,44 +68482,44 @@ "title": "Patient Health Information Capture" }, { - "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": 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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 28, @@ -68512,54 +68527,44 @@ "title": "Clinical Quality Measures - Filter" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "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": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 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": 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": 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": 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" } ], "apiDocumentation": [ @@ -68625,19 +68630,19 @@ }, "criteriaMet": [ { - "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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 53, @@ -68645,19 +68650,24 @@ "title": "Quality Management System" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { "id": 35, @@ -68665,44 +68675,44 @@ "title": "End-User Device Encryption" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 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" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 173, @@ -68710,84 +68720,99 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 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": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "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": 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": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 59, @@ -68795,112 +68820,100 @@ "title": "Direct Project" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 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": 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": 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": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" + }, + { + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { "id": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, { "id": 169, "number": "170.315 (b)(8)", "title": "Security Tags - Summary of Care - Receive" }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "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": 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": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.trimedtech.com/Documentation/FHIRAPI/FHIRAPI.html" + }, { "criterion": { "id": 181, @@ -68916,14 +68929,6 @@ "title": "Application Access - Patient Selection" }, "value": "http://www.trimedtech.com/Documentation/PatientAPI/PatientAPI.html" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.trimedtech.com/Documentation/FHIRAPI/FHIRAPI.html" } ], "acb": "SLI Compliance" @@ -68963,45 +68968,30 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 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": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, { "id": 171, "number": "170.315 (b)(10)", @@ -69013,29 +69003,44 @@ "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 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": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ @@ -69085,59 +69090,59 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 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": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 51, @@ -69145,24 +69150,19 @@ "title": "Automated Measure Calculation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 59, @@ -69170,29 +69170,19 @@ "title": "Direct Project" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 37, @@ -69200,14 +69190,9 @@ "title": "Trusted Connection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "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": 56, @@ -69215,27 +69200,47 @@ "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://lmdmzprodws.landmarkhealth.org/docs/SmartOnFHIR%20API%20Documentation%20template.pdf" }, @@ -69249,9 +69254,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://lmdmzprodws.landmarkhealth.org/docs/SmartOnFHIR%20API%20Documentation%20template.pdf" } @@ -69292,70 +69297,85 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "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": 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": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 12, @@ -69363,14 +69383,29 @@ "title": "Family Health History" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "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, @@ -69378,59 +69413,59 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 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": 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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 178, @@ -69438,70 +69473,40 @@ "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "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://www.interopengine.com/2017/open-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.interopengine.com/2017/open-api-documentation.html" }, @@ -69551,54 +69556,69 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 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": 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": 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": 37, @@ -69606,29 +69626,34 @@ "title": "Trusted Connection" }, { - "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 5, @@ -69636,14 +69661,19 @@ "title": "Demographics" }, { - "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 35, @@ -69651,14 +69681,19 @@ "title": "End-User Device Encryption" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 3, @@ -69666,44 +69701,34 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 56, @@ -69711,34 +69736,14 @@ "title": "Application Access - Patient Selection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 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": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ @@ -69804,9 +69809,19 @@ }, "criteriaMet": [ { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 53, @@ -69814,34 +69829,44 @@ "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 182, + "number": "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": 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": 33, @@ -69849,160 +69874,132 @@ "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "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": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" - }, { "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 171, + "number": "170.315 (b)(10)", + "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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://emr.vohrawoundteam.com/SmartOnFHIR_API_Doc_g7910.pdf" - }, { "criterion": { "id": 56, @@ -70018,6 +70015,14 @@ "title": "Application Access - All Data Request" }, "value": "https://emr.vohrawoundteam.com/SmartOnFHIR_API_Doc_g7910.pdf" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://emr.vohrawoundteam.com/SmartOnFHIR_API_Doc_g7910.pdf" } ], "acb": "Drummond Group" @@ -70057,39 +70062,19 @@ }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 52, @@ -70097,64 +70082,64 @@ "title": "Safety-Enhanced Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 165, @@ -70167,59 +70152,79 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "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": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, { "id": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 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": 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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 1, @@ -70227,29 +70232,29 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "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" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 25, @@ -70258,14 +70263,6 @@ } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://allegiancemd.com/fhir-api-documentation" - }, { "criterion": { "id": 181, @@ -70274,6 +70271,14 @@ }, "value": "https://allegiancemd.com/developer-guide-api-help/" }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://allegiancemd.com/fhir-api-documentation" + }, { "criterion": { "id": 56, @@ -70320,54 +70325,34 @@ }, "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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 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": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer 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": 53, @@ -70375,44 +70360,44 @@ "title": "Quality Management System" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 25, @@ -70420,24 +70405,24 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 44, @@ -70445,39 +70430,44 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 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": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 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": 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": 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": 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, @@ -70485,14 +70475,24 @@ "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 14, @@ -70500,24 +70500,39 @@ "title": "Implantable Device List" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 172, @@ -70525,37 +70540,27 @@ "title": "Clinical Quality Measures - Report" }, { - "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://developer.veradigm.com/" }, @@ -70569,9 +70574,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.veradigm.com/" } @@ -70608,64 +70613,64 @@ }, "criteriaMet": [ { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 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": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "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": 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": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 35, @@ -70673,24 +70678,19 @@ "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 182, @@ -70698,59 +70698,64 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 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": 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": 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": 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": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 181, @@ -70758,84 +70763,84 @@ "title": "Application Access - All Data Request" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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" } ], "apiDocumentation": [ @@ -70896,29 +70901,29 @@ }, "criteriaMet": [ { - "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": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 43, @@ -70926,109 +70931,129 @@ "title": "Transmission to Immunization Registries" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 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": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, { "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 12, @@ -71036,39 +71061,44 @@ "title": "Family Health History" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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, - "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": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 42, @@ -71076,14 +71106,9 @@ "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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 56, @@ -71091,42 +71116,30 @@ "title": "Application Access - Patient Selection" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://developer.veradigm.com/" + }, { "criterion": { "id": 181, @@ -71142,14 +71155,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.veradigm.com/" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://developer.veradigm.com/" } ], "acb": "Drummond Group" @@ -71184,99 +71189,104 @@ }, "criteriaMet": [ { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 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": 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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 59, @@ -71284,39 +71294,49 @@ "title": "Direct Project" }, { - "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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 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": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 181, @@ -71324,54 +71344,54 @@ "title": "Application Access - All Data Request" }, { - "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": 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": 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": 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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 179, @@ -71379,50 +71399,27 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "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": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://developer.veradigm.com/" - }, { "criterion": { "id": 182, @@ -71438,6 +71435,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" @@ -71477,34 +71482,34 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 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, @@ -71512,44 +71517,24 @@ "title": "Trusted Connection" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" - }, - { - "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 43, @@ -71562,49 +71547,39 @@ "title": "Implantable Device List" }, { - "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": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 59, @@ -71612,14 +71587,19 @@ "title": "Direct Project" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 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, @@ -71627,39 +71607,39 @@ "title": "Demographics" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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": 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": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 172, @@ -71667,14 +71647,14 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 177, @@ -71682,14 +71662,19 @@ "title": "Multi-Factor Authentication" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 12, @@ -71697,9 +71682,29 @@ "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "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": 1, @@ -71708,14 +71713,6 @@ } ], "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": 56, @@ -71731,6 +71728,14 @@ "title": "Standardized API for Patient and Population Services" }, "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" @@ -71769,25 +71774,70 @@ "name": "Active" }, "criteriaMet": [ + { + "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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 25, @@ -71795,24 +71845,29 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, + { + "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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 166, @@ -71820,24 +71875,39 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 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": 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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 12, @@ -71845,105 +71915,40 @@ "title": "Family Health History" }, { - "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": 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" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.vision-works.com/cert/FHIR/FHIRDocumentation.pdf" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.vision-works.com/cert/FHIR/FHIRDocumentation.pdf" }, @@ -71993,39 +71998,34 @@ }, "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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 43, @@ -72033,54 +72033,54 @@ "title": "Transmission to Immunization Registries" }, { - "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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 167, @@ -72088,14 +72088,24 @@ "title": "Electronic Prescribing" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 37, @@ -72103,24 +72113,34 @@ "title": "Trusted Connection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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": 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": 173, @@ -72133,9 +72153,14 @@ "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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 3, @@ -72143,65 +72168,37 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 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": 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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, - { - "id": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" - }, { "criterion": { "id": 56, @@ -72217,6 +72214,14 @@ "title": "Application Access - All Data Request" }, "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" } ], "acb": "Drummond Group" @@ -72251,9 +72256,14 @@ }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 172, @@ -72261,9 +72271,9 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 42, @@ -72271,9 +72281,14 @@ "title": "Patient Health Information Capture" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 174, @@ -72281,19 +72296,9 @@ "title": "Audit Report(s)" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 53, @@ -72301,34 +72306,19 @@ "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": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 54, @@ -72336,14 +72326,14 @@ "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": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 14, @@ -72351,9 +72341,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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 43, @@ -72361,19 +72356,24 @@ "title": "Transmission to Immunization Registries" }, { - "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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 37, @@ -72381,14 +72381,14 @@ "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 5, @@ -72396,57 +72396,70 @@ "title": "Demographics" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 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": 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": 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": 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" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" + }, { "criterion": { "id": 56, @@ -72462,14 +72475,6 @@ "title": "Application Access - All Data Request" }, "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" } ], "acb": "Leidos" @@ -72509,109 +72514,149 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 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": 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": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, { "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 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": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 33, @@ -72619,14 +72664,14 @@ "title": "Automatic Access Time-out" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 171, @@ -72638,113 +72683,73 @@ "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" - }, - { - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 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": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, { "id": 13, "number": "170.315 (a)(13)", "title": "Patient-Specific Education Resources" }, { - "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": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer 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://api.wrshealth.com/api/docs/mu/index.html" }, @@ -72758,9 +72763,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://api.wrshealth.com/api/docs/mu/index.html" } @@ -72802,49 +72807,39 @@ }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 1, @@ -72852,19 +72847,9 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 9, @@ -72872,14 +72857,9 @@ "title": "Clinical Decision Support" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 3, @@ -72887,24 +72867,29 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "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": 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": 53, @@ -72912,79 +72897,74 @@ "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "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": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" - }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, { - "id": 177, - "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 44, @@ -72992,19 +72972,14 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 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": 172, @@ -73012,9 +72987,24 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { "id": 179, @@ -73022,9 +73012,24 @@ "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": 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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ @@ -73038,17 +73043,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://docs.webchartnow.com/resources/system-specifications/fhir-application-programming-interface-api/" }, { "criterion": { - "id": 182, - "number": "170.315 (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.webchartnow.com/resources/system-specifications/fhir-application-programming-interface-api/" } @@ -73090,44 +73095,29 @@ }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 59, @@ -73140,14 +73130,9 @@ "title": "Integrity" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 29, @@ -73155,14 +73140,14 @@ "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 182, @@ -73170,19 +73155,19 @@ "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 173, @@ -73190,50 +73175,62 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 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, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://fhir.qa.welligent.com/dhit/109/r4/Home/ApiDocumentation" - }, { "criterion": { "id": 181, @@ -73249,6 +73246,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://fhir.qa.welligent.com/dhit/109/r4/Home/ApiDocumentation" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://fhir.qa.welligent.com/dhit/109/r4/Home/ApiDocumentation" } ], "acb": "SLI Compliance" @@ -73288,14 +73293,9 @@ }, "criteriaMet": [ { - "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": 37, @@ -73303,24 +73303,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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 174, @@ -73328,9 +73313,14 @@ "title": "Audit Report(s)" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 177, @@ -73338,29 +73328,29 @@ "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": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 180, @@ -73373,24 +73363,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 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": 172, @@ -73403,34 +73388,39 @@ "title": "Amendments" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "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": 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": 36, @@ -73438,12 +73428,35 @@ "title": "Integrity" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 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" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://zoobooksystems.com/api-documentation/" + }, { "criterion": { "id": 182, @@ -73459,14 +73472,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://zoobooksystems.com/disclosures/" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://zoobooksystems.com/api-documentation/" } ], "acb": "Drummond Group" @@ -73506,94 +73511,74 @@ }, "criteriaMet": [ { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "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": 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": 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": 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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 54, @@ -73601,44 +73586,44 @@ "title": "Accessibility-Centered 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": 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": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 180, @@ -73646,14 +73631,9 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 9, @@ -73661,19 +73641,44 @@ "title": "Clinical Decision Support" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 176, @@ -73681,40 +73686,32 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.zoommd.com/zoommd-api" - }, { "criterion": { "id": 182, @@ -73730,6 +73727,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://www.zoommd.com/zoommd-api" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.zoommd.com/zoommd-api" } ], "acb": "Drummond Group" @@ -73769,49 +73774,69 @@ }, "criteriaMet": [ { - "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "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": 34, @@ -73819,34 +73844,29 @@ "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": 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": 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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 28, @@ -73854,74 +73874,74 @@ "title": "Clinical Quality Measures - Filter" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 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": 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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 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": 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": 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": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "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": 4, @@ -73929,9 +73949,9 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "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": 9, @@ -73939,34 +73959,19 @@ "title": "Clinical Decision Support" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 174, @@ -73974,32 +73979,32 @@ "title": "Audit Report(s)" }, { - "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": 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": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "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" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" }, @@ -74013,9 +74018,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" } @@ -74052,39 +74057,49 @@ }, "criteriaMet": [ { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 25, @@ -74092,29 +74107,24 @@ "title": "Clinical Quality Measures - Record and 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 15, @@ -74122,119 +74132,114 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "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": 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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "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": 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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 28, @@ -74242,55 +74247,55 @@ "title": "Clinical Quality Measures - Filter" }, { - "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 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": 182, - "number": "170.315 (g)(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.athenahealth.com/api/resources/complete_list_athena_apis" }, @@ -74335,44 +74340,34 @@ }, "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 182, - "number": "170.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": 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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 165, @@ -74380,84 +74375,89 @@ "title": "Transitions of Care" }, { - "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": 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": 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": 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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "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": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 32, @@ -74465,24 +74465,29 @@ "title": "Amendments" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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": 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": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 36, @@ -74490,14 +74495,9 @@ "title": "Integrity" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 51, @@ -74505,14 +74505,14 @@ "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 33, @@ -74520,24 +74520,29 @@ "title": "Automatic Access Time-out" }, { - "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ @@ -74551,17 +74556,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.athenahealth.com/api/resources/complete_list_athena_apis" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" } @@ -74598,34 +74603,34 @@ }, "criteriaMet": [ { - "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": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 53, @@ -74633,34 +74638,29 @@ "title": "Quality Management System" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "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": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 9, @@ -74668,14 +74668,24 @@ "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 5, @@ -74683,14 +74693,24 @@ "title": "Demographics" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 173, @@ -74698,19 +74718,14 @@ "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 59, @@ -74718,44 +74733,34 @@ "title": "Direct Project" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 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": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 3, @@ -74763,55 +74768,47 @@ "title": "CPOE - Diagnostic Imaging" }, { - "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 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://docs.athenahealth.com/api/resources/complete_list_athena_apis" - }, { "criterion": { "id": 56, @@ -74827,6 +74824,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" @@ -74865,50 +74870,35 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ - { - "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "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": 52, @@ -74916,9 +74906,19 @@ "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "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": 165, @@ -74926,14 +74926,24 @@ "title": "Transitions of Care" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device 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": 167, @@ -74941,9 +74951,14 @@ "title": "Electronic Prescribing" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 25, @@ -74951,24 +74966,19 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 174, @@ -74976,19 +74986,24 @@ "title": "Audit Report(s)" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 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": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 2, @@ -74996,44 +75011,34 @@ "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data 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": 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": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 177, @@ -75041,42 +75046,50 @@ "title": "Multi-Factor Authentication" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "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": 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": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://mydata.athenahealth.com/home" + }, { "criterion": { "id": 56, @@ -75092,14 +75105,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" @@ -75134,34 +75139,29 @@ }, "criteriaMet": [ { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 25, @@ -75169,34 +75169,44 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 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": 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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 176, @@ -75204,64 +75214,64 @@ "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": 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": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 167, @@ -75269,59 +75279,54 @@ "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "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": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 171, @@ -75329,24 +75334,24 @@ "title": "Electronic Health Information Export" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "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": 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" } ], "apiDocumentation": [ @@ -75360,17 +75365,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://mydata.athenahealth.com/home" }, { "criterion": { - "id": 182, - "number": "170.315 (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" } @@ -75407,9 +75412,14 @@ }, "criteriaMet": [ { - "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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 179, @@ -75417,79 +75427,64 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 170, @@ -75497,49 +75492,34 @@ "title": "Care Plan" }, { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 36, @@ -75547,9 +75527,14 @@ "title": "Integrity" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 3, @@ -75557,14 +75542,14 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 167, @@ -75572,44 +75557,39 @@ "title": "Electronic Prescribing" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 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": 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": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "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": 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": 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": 42, @@ -75620,22 +75600,47 @@ "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://mydata.athenahealth.com/home" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://mydata.athenahealth.com/home" }, @@ -75680,19 +75685,29 @@ }, "criteriaMet": [ { - "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 171, @@ -75700,39 +75715,39 @@ "title": "Electronic Health Information Export" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 35, @@ -75740,29 +75755,19 @@ "title": "End-User Device Encryption" }, { - "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": 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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 14, @@ -75770,29 +75775,14 @@ "title": "Implantable Device List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "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": 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": 182, @@ -75800,14 +75790,14 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 33, @@ -75815,19 +75805,14 @@ "title": "Automatic Access Time-out" }, { - "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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 170, @@ -75835,9 +75820,29 @@ "title": "Care Plan" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 12, @@ -75845,19 +75850,19 @@ "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 34, @@ -75865,42 +75870,42 @@ "title": "Emergency Access" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 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": 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" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://mydata.athenahealth.com/home" }, @@ -75914,9 +75919,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://mydata.athenahealth.com/home" } @@ -75957,170 +75962,175 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, { "id": 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": 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": 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": 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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 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": 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": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, { "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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 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": 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": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 51, @@ -76128,34 +76138,29 @@ "title": "Automated Measure Calculation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 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": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, - { - "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ @@ -76221,104 +76226,94 @@ }, "criteriaMet": [ { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, { "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 8, @@ -76326,54 +76321,44 @@ "title": "Medication Allergy List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 10, @@ -76381,49 +76366,49 @@ "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "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": 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": 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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 178, @@ -76431,17 +76416,45 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "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.trimedtech.com/Documentation/PatientAPI/PatientAPI.html" + }, { "criterion": { "id": 182, @@ -76457,14 +76470,6 @@ "title": "Application Access - All Data Request" }, "value": "https://www.trimedtech.com/Documentation/PatientAPI/PatientAPI.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" @@ -76504,39 +76509,14 @@ }, "criteriaMet": [ { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 12, @@ -76544,34 +76524,34 @@ "title": "Family Health History" }, { - "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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 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": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 51, @@ -76579,24 +76559,39 @@ "title": "Automated Measure Calculation" }, { - "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": 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": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 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": 5, @@ -76604,9 +76599,9 @@ "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 53, @@ -76614,34 +76609,29 @@ "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 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": 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": 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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 1, @@ -76649,19 +76639,24 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 4, @@ -76669,24 +76664,9 @@ "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 170, @@ -76699,14 +76679,24 @@ "title": "Electronic Prescribing" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 54, @@ -76714,29 +76704,44 @@ "title": "Accessibility-Centered Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "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": 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://developer.ipatientcare.net/DeveloperResources/WebHelpFHIR/" + "value": "https://ipatientcare.com/onc-acb-certified-2015-edition/" }, { "criterion": { @@ -76748,11 +76753,11 @@ }, { "criterion": { - "id": 181, - "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://ipatientcare.com/onc-acb-certified-2015-edition/" + "value": "https://developer.ipatientcare.net/DeveloperResources/WebHelpFHIR/" } ], "acb": "Drummond Group" @@ -76792,79 +76797,84 @@ }, "criteriaMet": [ { - "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": 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": 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": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 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, - "number": "170.315 (d)(4)", - "title": "Amendments" + "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 34, @@ -76872,104 +76882,94 @@ "title": "Emergency Access" }, { - "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": 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": 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": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 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": 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": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 9, @@ -76977,42 +76977,47 @@ "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 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" } ], "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.eclinicalworks.com" }, @@ -77026,9 +77031,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://fhir.eclinicalworks.com" } @@ -77065,34 +77070,34 @@ }, "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 177, @@ -77100,14 +77105,19 @@ "title": "Multi-Factor Authentication" }, { - "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": 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": 49, @@ -77115,44 +77125,44 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "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": 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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 54, @@ -77160,24 +77170,24 @@ "title": "Accessibility-Centered Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 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": 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": 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": 37, @@ -77185,89 +77195,74 @@ "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "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": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 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, @@ -77275,17 +77270,27 @@ "title": "Safety-Enhanced 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "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" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://fhir.eclinicalworks.com/" }, @@ -77299,9 +77304,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://fhir.eclinicalworks.com/" } @@ -77338,19 +77343,14 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 49, @@ -77358,44 +77358,49 @@ "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 37, @@ -77403,89 +77408,69 @@ "title": "Trusted Connection" }, { - "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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 4, @@ -77493,19 +77478,14 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 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": 177, @@ -77513,52 +77493,77 @@ "title": "Multi-Factor Authentication" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "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" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://fhir.eclinicalworks.com" }, @@ -77572,9 +77577,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://fhir.eclinicalworks.com" } @@ -77616,14 +77621,9 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 25, @@ -77631,14 +77631,14 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 34, @@ -77646,130 +77646,127 @@ "title": "Emergency Access" }, { - "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": 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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 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": 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": 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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "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": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "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": 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" - }, - "value": "https://www.edermehr.com/ederm-onc-certified" - }, { "criterion": { "id": 182, @@ -77785,6 +77782,14 @@ "title": "Application Access - All Data Request" }, "value": "https://www.edermehr.com/ederm-onc-certified" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.edermehr.com/ederm-onc-certified" } ], "acb": "Drummond Group" @@ -77824,9 +77829,9 @@ }, "criteriaMet": [ { - "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": 52, @@ -77834,14 +77839,9 @@ "title": "Safety-Enhanced Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 5, @@ -77849,9 +77849,24 @@ "title": "Demographics" }, { - "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "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": 15, @@ -77859,24 +77874,24 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "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": 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": 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": 59, @@ -77884,79 +77899,79 @@ "title": "Direct Project" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 25, @@ -77964,19 +77979,24 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 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": 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": 178, @@ -77984,35 +78004,20 @@ "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": 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": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, { "id": 166, "number": "170.315 (b)(2)", @@ -78022,17 +78027,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://mu2014-stage.ehana.com/apidocs" }, { "criterion": { - "id": 181, - "number": "170.315 (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://mu2014-stage.ehana.com/apidocs" }, @@ -78082,19 +78087,14 @@ }, "criteriaMet": [ { - "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": 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, @@ -78102,64 +78102,74 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 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": 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, @@ -78167,54 +78177,54 @@ "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": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "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": 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": 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": 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": 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": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 167, @@ -78222,24 +78232,14 @@ "title": "Electronic Prescribing" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 54, @@ -78247,49 +78247,54 @@ "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ @@ -78355,9 +78360,29 @@ }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 174, @@ -78365,9 +78390,19 @@ "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 53, @@ -78375,14 +78410,14 @@ "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 56, @@ -78390,19 +78425,19 @@ "title": "Application Access - Patient Selection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 2, @@ -78410,89 +78445,59 @@ "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 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": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" } ], "apiDocumentation": [ @@ -78506,17 +78511,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://eph-solutions.com/SmartOnFHIR_API_Doc_g7910_08162022.pdf" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://eph-solutions.com/SmartOnFHIR_API_Doc_g7910_08162022.pdf" } @@ -78558,19 +78563,19 @@ }, "criteriaMet": [ { - "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": 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": 59, @@ -78578,39 +78583,29 @@ "title": "Direct Project" }, { - "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": 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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 42, @@ -78618,14 +78613,19 @@ "title": "Patient Health Information Capture" }, { - "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": 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": 25, @@ -78633,44 +78633,39 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 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": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 26, @@ -78678,34 +78673,34 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "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": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 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": 3, @@ -78713,14 +78708,14 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 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, @@ -78728,14 +78723,14 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 12, @@ -78743,19 +78738,29 @@ "title": "Family Health History" }, { - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ @@ -78769,17 +78774,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://dexter-solutions.com/certification" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://dexter-solutions.com/certification" } @@ -78816,9 +78821,24 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "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, @@ -78826,24 +78846,24 @@ "title": "Automated Measure Calculation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 35, @@ -78851,39 +78871,39 @@ "title": "End-User Device Encryption" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 53, @@ -78891,9 +78911,9 @@ "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": 25, @@ -78901,24 +78921,29 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 176, @@ -78926,64 +78951,64 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 52, + "number": "170.315 (g)(3)", + "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" }, { - "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": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 42, @@ -78991,32 +79016,20 @@ "title": "Patient Health Information Capture" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "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": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://dexter-solutions.com/certification" + }, { "criterion": { "id": 56, @@ -79032,14 +79045,6 @@ "title": "Application Access - All Data Request" }, "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" } ], "acb": "Drummond Group" @@ -79079,29 +79084,19 @@ }, "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 60, + "number": "170.315 (h)(2)", + "title": "Direct Project, Edge Protocol, and XDR/XDM" }, { - "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": 60, - "number": "170.315 (h)(2)", - "title": "Direct Project, Edge Protocol, and XDR/XDM" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 54, @@ -79109,14 +79104,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 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": 173, @@ -79124,19 +79124,19 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 50, @@ -79144,19 +79144,24 @@ "title": "Automated Numerator Recording" }, { - "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": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 180, @@ -79164,17 +79169,17 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "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": "http://code.medicasoft.us/fhir_r4.html" }, @@ -79188,9 +79193,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "http://code.medicasoft.us/fhir_r4.html" } @@ -79232,84 +79237,69 @@ }, "criteriaMet": [ { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "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": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, { "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "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": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 51, @@ -79317,49 +79307,49 @@ "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": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "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": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 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": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 37, @@ -79367,74 +79357,74 @@ "title": "Trusted Connection" }, { - "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": 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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 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": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "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": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 176, @@ -79442,37 +79432,60 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "http://www.media.geniussolutions.com/ehrTHOMAS/ehrWebApi/Help/html/Index.html" + }, { "criterion": { "id": 181, @@ -79488,14 +79501,6 @@ "title": "Application Access - Patient Selection" }, "value": "http://www.media.geniussolutions.com/ehrTHOMAS/ehrApi/Help/html/fe4e546d-07c0-5cdd-23a2-e855caf111a4.htm" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "http://www.media.geniussolutions.com/ehrTHOMAS/ehrWebApi/Help/html/Index.html" } ], "acb": "SLI Compliance" @@ -79535,94 +79540,104 @@ }, "criteriaMet": [ { - "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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 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": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 14, @@ -79630,54 +79645,49 @@ "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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 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": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 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": 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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 165, @@ -79685,19 +79695,14 @@ "title": "Transitions of Care" }, { - "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": 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": 42, @@ -79705,54 +79710,54 @@ "title": "Patient Health Information Capture" }, { - "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": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 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": 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": 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": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" } ], "apiDocumentation": [ @@ -79766,17 +79771,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" } @@ -79818,24 +79823,29 @@ }, "criteriaMet": [ { - "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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 32, @@ -79843,24 +79853,14 @@ "title": "Amendments" }, { - "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, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 181, @@ -79868,24 +79868,19 @@ "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": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 174, @@ -79893,24 +79888,34 @@ "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information 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": 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": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 59, @@ -79918,29 +79923,34 @@ "title": "Direct Project" }, { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 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": 180, @@ -79948,19 +79958,24 @@ "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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 56, @@ -79968,44 +79983,39 @@ "title": "Application Access - Patient Selection" }, { - "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": 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": 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": 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": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 51, @@ -80013,24 +80023,19 @@ "title": "Automated Measure Calculation" }, { - "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": 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": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" } ], "apiDocumentation": [ @@ -80044,17 +80049,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "http://www.interopengine.com/open-api-documentation" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "http://www.interopengine.com/open-api-documentation" } @@ -80096,39 +80101,29 @@ }, "criteriaMet": [ { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 33, @@ -80136,54 +80131,79 @@ "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "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": 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": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 52, @@ -80191,24 +80211,14 @@ "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 32, @@ -80216,14 +80226,9 @@ "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 34, @@ -80231,47 +80236,55 @@ "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" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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://ehr.escribe.com/ehr/api/fhir/swagger-ui/" + }, { "criterion": { "id": 56, @@ -80287,14 +80300,6 @@ "title": "Application Access - All Data Request" }, "value": "https://www.lillegroup.com/esh.html" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://ehr.escribe.com/ehr/api/fhir/swagger-ui/" } ], "acb": "SLI Compliance" @@ -80333,25 +80338,20 @@ "name": "Active" }, "criteriaMet": [ - { - "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": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 7, @@ -80359,49 +80359,14 @@ "title": "Medication List" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "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": 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": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { "id": 173, @@ -80409,114 +80374,124 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy 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": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 52, @@ -80524,14 +80499,9 @@ "title": "Safety-Enhanced Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 6, @@ -80539,9 +80509,24 @@ "title": "Problem List" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 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": 36, @@ -80549,14 +80534,19 @@ "title": "Integrity" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" + }, + { + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { "id": 54, @@ -80564,9 +80554,9 @@ "title": "Accessibility-Centered Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 176, @@ -80574,24 +80564,39 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "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": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" } ], "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-api.ethizo.com/" + "value": "https://www.ethizo.com/pda-api/developer-guide/" }, { "criterion": { @@ -80603,11 +80608,11 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.ethizo.com/pda-api/developer-guide/" + "value": "https://fhir-api.ethizo.com/" } ], "acb": "SLI Compliance" @@ -80646,60 +80651,55 @@ "name": "Active" }, "criteriaMet": [ - { - "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": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "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": 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": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { "id": 56, @@ -80707,54 +80707,59 @@ "title": "Application Access - Patient Selection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 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": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 15, @@ -80762,69 +80767,69 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "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": 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": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 167, @@ -80832,44 +80837,44 @@ "title": "Electronic Prescribing" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "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": 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": 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": 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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ @@ -80881,14 +80886,6 @@ }, "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" - }, { "criterion": { "id": 56, @@ -80896,6 +80893,14 @@ "title": "Application Access - Patient Selection" }, "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" @@ -80935,29 +80940,24 @@ }, "criteriaMet": [ { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 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": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 3, @@ -80965,24 +80965,9 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 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": 177, @@ -80990,44 +80975,59 @@ "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, { - "id": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 12, @@ -81035,9 +81035,14 @@ "title": "Family Health History" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 165, @@ -81045,14 +81050,24 @@ "title": "Transitions of Care" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "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, @@ -81060,34 +81075,24 @@ "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": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ @@ -81101,17 +81106,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://penn-clinical.com/api-documentation" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://penn-clinical.com/api-documentation" } @@ -81153,99 +81158,94 @@ "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, - { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" - }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 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": 6, - "number": "170.315 (a)(6)", - "title": "Problem 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, { "id": 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": 7, - "number": "170.315 (a)(7)", - "title": "Medication 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": 13, @@ -81253,44 +81253,49 @@ "title": "Patient-Specific Education Resources" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 5, @@ -81298,50 +81303,42 @@ "title": "Demographics" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://lab.penn-clinical.com/ezPracticeAPIDocs/(g)(7)%20API%20Documentation.pdf" - }, { "criterion": { "id": 182, @@ -81350,6 +81347,14 @@ }, "value": "https://penn-clinical.com/api-documentation" }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://lab.penn-clinical.com/ezPracticeAPIDocs/(g)(7)%20API%20Documentation.pdf" + }, { "criterion": { "id": 181, @@ -81396,59 +81401,54 @@ }, "criteriaMet": [ { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 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": 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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 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": 32, @@ -81456,84 +81456,79 @@ "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": 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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 180, @@ -81541,52 +81536,62 @@ "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": 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": 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": 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": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "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": 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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "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.healogics.com/2015-certified-ehr-technology/" }, @@ -81600,9 +81605,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.healogics.com/2015-certified-ehr-technology/" } @@ -81644,19 +81649,9 @@ }, "criteriaMet": [ { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 165, @@ -81664,24 +81659,14 @@ "title": "Transitions of Care" }, { - "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 171, @@ -81689,34 +81674,29 @@ "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 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": 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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 178, @@ -81724,29 +81704,29 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 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": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 29, @@ -81754,29 +81734,39 @@ "title": "Authentication, Access Control, Authorization" }, { - "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": 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": 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": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 176, @@ -81784,14 +81774,24 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 181, @@ -81799,17 +81799,22 @@ "title": "Application Access - All Data Request" }, { - "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" } ], "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://appstudio.interopengine.com/" }, @@ -81823,9 +81828,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://appstudio.interopengine.com/" } @@ -81862,34 +81867,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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "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": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 182, @@ -81897,29 +81887,24 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "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": 174, @@ -81927,54 +81912,54 @@ "title": "Audit Report(s)" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "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": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 173, @@ -81982,14 +81967,14 @@ "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": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { "id": 42, @@ -81997,19 +81982,24 @@ "title": "Patient Health Information Capture" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 177, @@ -82017,12 +82007,35 @@ "title": "Multi-Factor Authentication" }, { - "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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://documenter.getpostman.com/view/5318713/RWgrzdoe" + }, { "criterion": { "id": 182, @@ -82038,14 +82051,6 @@ "title": "Application Access - All Data Request" }, "value": "https://documenter.getpostman.com/view/5318713/RWgrzdoe" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://documenter.getpostman.com/view/5318713/RWgrzdoe" } ], "acb": "Drummond Group" @@ -82085,9 +82090,24 @@ }, "criteriaMet": [ { - "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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 166, @@ -82095,9 +82115,9 @@ "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": 34, @@ -82105,14 +82125,14 @@ "title": "Emergency Access" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 53, @@ -82120,44 +82140,14 @@ "title": "Quality Management System" }, { - "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": 180, - "number": "170.315 (g)(6)", - "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": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 54, @@ -82165,14 +82155,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 45, @@ -82180,34 +82175,39 @@ "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 12, @@ -82215,9 +82215,14 @@ "title": "Family Health History" }, { - "id": 171, - "number": "170.315 (b)(10)", - "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": 172, @@ -82225,75 +82230,67 @@ "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": 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": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 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": 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": 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": 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": 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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.icare.com/developers/" - }, { "criterion": { "id": 56, @@ -82309,6 +82306,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.icare.com/developers/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.icare.com/developers/" } ], "acb": "Drummond Group" @@ -82348,99 +82353,89 @@ }, "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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "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": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 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": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 178, @@ -82453,24 +82448,24 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 2, @@ -82478,80 +82473,82 @@ "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": 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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 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": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://api.mdland.com/Mdland_FHIR_API.html" - }, { "criterion": { "id": 56, @@ -82560,6 +82557,14 @@ }, "value": "https://api.mdland.com/" }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://api.mdland.com/Mdland_FHIR_API.html" + }, { "criterion": { "id": 182, @@ -82606,29 +82611,34 @@ }, "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": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 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": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 44, @@ -82636,79 +82646,59 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 37, @@ -82716,69 +82706,64 @@ "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 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": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 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": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "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": 173, @@ -82786,9 +82771,19 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 167, @@ -82796,12 +82791,30 @@ "title": "Electronic Prescribing" }, { - "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": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://apiaccess.mckesson.com/apiportal-service/#/developer-docs" + }, { "criterion": { "id": 181, @@ -82817,14 +82830,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://apiaccess.mckesson.com/apiportal-service/#/login" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://apiaccess.mckesson.com/apiportal-service/#/developer-docs" } ], "acb": "Drummond Group" @@ -82864,29 +82869,49 @@ }, "criteriaMet": [ { - "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": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "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": 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": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 4, @@ -82894,39 +82919,39 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 180, @@ -82934,14 +82959,14 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "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": 174, @@ -82949,14 +82974,14 @@ "title": "Audit Report(s)" }, { - "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": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 167, @@ -82969,109 +82994,89 @@ "title": "Clinical Quality Measures - Filter" }, { - "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": 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": 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": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "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": 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": 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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 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": 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": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ @@ -83085,17 +83090,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://assurecare.com/onc-acb-certified-2015-edition/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://assurecare.com/onc-acb-certified-2015-edition/" } @@ -83132,44 +83137,49 @@ }, "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": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 173, @@ -83177,24 +83187,24 @@ "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 59, @@ -83202,24 +83212,14 @@ "title": "Direct Project" }, { - "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": 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": 53, @@ -83227,54 +83227,49 @@ "title": "Quality Management System" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "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": 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": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "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": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 36, @@ -83282,24 +83277,14 @@ "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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 9, @@ -83307,14 +83292,14 @@ "title": "Clinical Decision Support" }, { - "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": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 166, @@ -83322,17 +83307,45 @@ "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": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "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://assurecare.com/onc-acb-certified-2015-edition/" + }, { "criterion": { "id": 181, @@ -83348,14 +83361,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://assurecare.com/onc-acb-certified-2015-edition/" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://assurecare.com/onc-acb-certified-2015-edition/" } ], "acb": "Drummond Group" @@ -83389,40 +83394,30 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, { "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": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 52, @@ -83430,9 +83425,14 @@ "title": "Safety-Enhanced Design" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 35, @@ -83440,19 +83440,29 @@ "title": "End-User Device Encryption" }, { - "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": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "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": 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, @@ -83460,64 +83470,79 @@ "title": "Trusted Connection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "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": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "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": 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": 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": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 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": 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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 43, @@ -83525,19 +83550,19 @@ "title": "Transmission to Immunization Registries" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 34, @@ -83550,34 +83575,14 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "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": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { "id": 41, @@ -83585,39 +83590,39 @@ "title": "Secure Messaging" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "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": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "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": 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": 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": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ @@ -83631,17 +83636,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://assurecare.com/onc-acb-certified-2015-edition/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://assurecare.com/onc-acb-certified-2015-edition/" } @@ -83683,14 +83688,24 @@ }, "criteriaMet": [ { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 171, @@ -83698,34 +83713,34 @@ "title": "Electronic Health Information Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "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": 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": 2, + "number": "170.315 (a)(2)", + "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": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 12, @@ -83738,64 +83753,49 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "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": 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": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "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": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 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": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 56, @@ -83803,24 +83803,24 @@ "title": "Application Access - Patient Selection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 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": 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": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 173, @@ -83828,39 +83828,39 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "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": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "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": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 174, @@ -83868,45 +83868,42 @@ "title": "Audit Report(s)" }, { - "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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://careconnect-uat.netsmartcloud.com/" - }, { "criterion": { "id": 56, @@ -83922,6 +83919,14 @@ "title": "Application Access - All Data Request" }, "value": "https://careconnect-uat.netsmartcloud.com/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://careconnect-uat.netsmartcloud.com/" } ], "acb": "Drummond Group" @@ -83956,144 +83961,164 @@ }, "criteriaMet": [ { - "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": 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": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 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": 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": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "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": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 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": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, { - "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": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 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": 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, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "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": 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": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 178, @@ -84101,80 +84126,52 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://careconnect-uat.netsmartcloud.com/" - }, { "criterion": { "id": 182, @@ -84190,6 +84187,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://careconnect-uat.netsmartcloud.com/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://careconnect-uat.netsmartcloud.com/" } ], "acb": "Drummond Group" @@ -84229,24 +84234,24 @@ }, "criteriaMet": [ { - "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": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 49, @@ -84254,14 +84259,9 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "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": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 181, @@ -84269,24 +84269,19 @@ "title": "Application Access - All Data Request" }, { - "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": 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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 41, @@ -84294,54 +84289,54 @@ "title": "Secure Messaging" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" - }, - { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" - }, - { - "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": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 11, "number": "170.315 (a)(11)", "title": "Smoking Status" }, + { + "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": 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": 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": 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": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 9, @@ -84349,14 +84344,14 @@ "title": "Clinical Decision Support" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "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, @@ -84364,14 +84359,34 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "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": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 34, @@ -84379,24 +84394,24 @@ "title": "Emergency Access" }, { - "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": 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": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 33, @@ -84404,60 +84419,42 @@ "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 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": 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": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "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": 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": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.myhelo.com/api/#introduction" - }, { "criterion": { "id": 182, @@ -84473,6 +84470,14 @@ "title": "Application Access - All Data Request" }, "value": "https://www.myhelo.com/api/#introduction" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.myhelo.com/api/#introduction" } ], "acb": "SLI Compliance" @@ -84512,24 +84517,19 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 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": 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": 25, @@ -84537,94 +84537,94 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "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": 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": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 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": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 170, - "number": "170.315 (b)(9)", - "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": 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": 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": 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": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "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": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 4, @@ -84637,9 +84637,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 178, @@ -84647,9 +84647,9 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 1, @@ -84657,29 +84657,29 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "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": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "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": 37, @@ -84687,60 +84687,65 @@ "title": "Trusted Connection" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "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": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" + }, + { + "id": 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://www.nablemd.com/api_fhir/index.html" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.nablemd.com/api_fhir/index.html" }, diff --git a/resources/prod_resources/Healthie_EndpointSources.json b/resources/prod_resources/Healthie_EndpointSources.json deleted file mode 100644 index 0e3bc63c8..000000000 --- a/resources/prod_resources/Healthie_EndpointSources.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "Endpoints": null -} \ No newline at end of file diff --git a/resources/prod_resources/Integra_Connect_Newco_LLC_EndpointSources.json b/resources/prod_resources/Integra_Connect_Newco_LLC_EndpointSources.json deleted file mode 100644 index 0e3bc63c8..000000000 --- a/resources/prod_resources/Integra_Connect_Newco_LLC_EndpointSources.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "Endpoints": null -} \ No newline at end of file diff --git a/resources/prod_resources/MedicaidStateEndpointResourcesList.json b/resources/prod_resources/MedicaidStateEndpointResourcesList.json new file mode 100644 index 000000000..33f510f5a --- /dev/null +++ b/resources/prod_resources/MedicaidStateEndpointResourcesList.json @@ -0,0 +1,154 @@ +{ + "Endpoints": [ + { + "URL": "https://api.alaskafhir.com/r4", + "OrganizationName": "Alaska", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.arkansasfhir.com/r4", + "OrganizationName": "Arkansas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api-cdss-prd.safhir.io/v1/api", + "OrganizationName": "Connecticut", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.delawarefhir.com/r4", + "OrganizationName": "Delaware", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.georgiafhir.com/r4", + "OrganizationName": "Georgia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api-idmedicaid.safhir.io/v1/api", + "OrganizationName": "Idaho", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.iowafhir.com/r4", + "OrganizationName": "Iowa", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.kansasfhir.com/r4", + "OrganizationName": "Kansas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.kentuckyfhir.com/r4", + "OrganizationName": "Kentucky", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.louisianafhir.com/r4", + "OrganizationName": "Louisiana", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.mainefhir.com/r4", + "OrganizationName": "Maine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api-crsp-prd.safhir.io/v1/api", + "OrganizationName": "Maryland", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.masshealthfhir.com/r4", + "OrganizationName": "Massachusetts", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.interopstation.com/mdhhs/fhir", + "OrganizationName": "Michigan", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://iox.mohealthnet.conduent.com/patientAccess/api/R4", + "OrganizationName": "Missouri", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://dhhs-api.ne.gov/dhhs/trading-partner/api/cmsi/patient-access-api/1.0.0/Patient", + "OrganizationName": "Nebraska", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.nevadafhir.com/r4", + "OrganizationName": "Nevada", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://iox.nhmmis.nh.gov/patientAccess/api/R4/", + "OrganizationName": "New Hampshire", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.interopstation.com/njios/fhir", + "OrganizationName": "New Jersey", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://us120.fhir.m3.edifecsfedcloud.com/nd_meta", + "OrganizationName": "North Dakota", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.rhodeislandfhir.com/r4", + "OrganizationName": "Rhode Island", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.vermontfhir.com/r4", + "OrganizationName": "Vermont", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://wa.fhir.mhbapp.com/pa/api/v1", + "OrganizationName": "Washington", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.westvirginiafhir.com/r4", + "OrganizationName": "West Virginia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.wisconsinfhir.com/r4", + "OrganizationName": "Wisconsin", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file diff --git a/resources/prod_resources/MedicalMine_Inc_EndpointSources.json b/resources/prod_resources/MedicalMine_Inc_EndpointSources.json deleted file mode 100644 index 0e3bc63c8..000000000 --- a/resources/prod_resources/MedicalMine_Inc_EndpointSources.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "Endpoints": null -} \ No newline at end of file diff --git a/resources/prod_resources/medicaid-state-endpoints.csv b/resources/prod_resources/medicaid-state-endpoints.csv new file mode 100644 index 000000000..b500967b2 --- /dev/null +++ b/resources/prod_resources/medicaid-state-endpoints.csv @@ -0,0 +1,26 @@ +State,endpoint,,,,,,,,,,,,,,,,,,,,,,,, +Alaska,https://api.alaskafhir.com/r4,,,,,,,,,,,,,,,,,,,,,,,, +Arkansas,https://api.arkansasfhir.com/r4,,,,,,,,,,,,,,,,,,,,,,,, +Connecticut,https://api-cdss-prd.safhir.io/v1/api,,,,,,,,,,,,,,,,,,,,,,,, +Delaware,https://api.delawarefhir.com/r4,,,,,,,,,,,,,,,,,,,,,,,, +Georgia,https://api.georgiafhir.com/r4,,,,,,,,,,,,,,,,,,,,,,,, +Idaho,https://api-idmedicaid.safhir.io/v1/api,,,,,,,,,,,,,,,,,,,,,,,, +Iowa,https://api.iowafhir.com/r4,,,,,,,,,,,,,,,,,,,,,,,, +Kansas,https://api.kansasfhir.com/r4,,,,,,,,,,,,,,,,,,,,,,,, +Kentucky,https://api.kentuckyfhir.com/r4,,,,,,,,,,,,,,,,,,,,,,,, +Louisiana,https://api.louisianafhir.com/r4,,,,,,,,,,,,,,,,,,,,,,,, +Maine,https://api.mainefhir.com/r4,,,,,,,,,,,,,,,,,,,,,,,, +Maryland,https://api-crsp-prd.safhir.io/v1/api,,,,,,,,,,,,,,,,,,,,,,,, +Massachusetts,https://api.masshealthfhir.com/r4,,,,,,,,,,,,,,,,,,,,,,,, +Michigan,https://api.interopstation.com/mdhhs/fhir,,,,,,,,,,,,,,,,,,,,,,,, +Missouri,https://iox.mohealthnet.conduent.com/patientAccess/api/R4,,,,,,,,,,,,,,,,,,,,,,,, +Nebraska,https://dhhs-api.ne.gov/dhhs/trading-partner/api/cmsi/patient-access-api/1.0.0/Patient,,,,,,,,,,,,,,,,,,,,,,,, +Nevada,https://api.nevadafhir.com/r4,,,,,,,,,,,,,,,,,,,,,,,, +New Hampshire,https://iox.nhmmis.nh.gov/patientAccess/api/R4/,,,,,,,,,,,,,,,,,,,,,,,, +New Jersey,https://api.interopstation.com/njios/fhir,,,,,,,,,,,,,,,,,,,,,,,, +North Dakota,https://us120.fhir.m3.edifecsfedcloud.com/nd_meta,,,,,,,,,,,,,,,,,,,,,,,, +Rhode Island,https://api.rhodeislandfhir.com/r4,,,,,,,,,,,,,,,,,,,,,,,, +Vermont,https://api.vermontfhir.com/r4,,,,,,,,,,,,,,,,,,,,,,,, +Washington,https://wa.fhir.mhbapp.com/pa/api/v1,,,,,,,,,,,,,,,,,,,,,,,, +West Virginia,https://api.westvirginiafhir.com/r4,,,,,,,,,,,,,,,,,,,,,,,, +Wisconsin,https://api.wisconsinfhir.com/r4,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/scripts/populatedb.sh b/scripts/populatedb.sh index 0ecabe9de..2453e1ea5 100755 --- a/scripts/populatedb.sh +++ b/scripts/populatedb.sh @@ -5,6 +5,9 @@ set -e # get endpoint data cd cmd/endpointpopulator +# Populates the database with State Medicaid endpoints +go run main.go /etc/lantern/resources/MedicaidStateEndpointResourcesList.json Lantern StateMedicaid false StateMedicaid + jq -c '.[]' /etc/lantern/resources/EndpointResourcesList.json | while read endpoint; do NAME=$(echo $endpoint | jq -c -r '.EndpointName') FORMAT=$(echo $endpoint | jq -c -r '.FormatType') diff --git a/scripts/populatedb_prod.sh b/scripts/populatedb_prod.sh index ead884754..ab98cab83 100644 --- a/scripts/populatedb_prod.sh +++ b/scripts/populatedb_prod.sh @@ -37,14 +37,14 @@ rm -f npidata_pfile2.csv #rm -f npidata_pfile.csv #mv -f npidata_pfile2.csv npidata_pfile.csv -echo "Populating db with endpoint and NPPES information..." +#echo "Populating db with endpoint information..." cd ../../scripts docker exec -it lantern-back-end_endpoint_manager_1 /etc/lantern/populatedb.sh -cd ../resources/prod_resources -rm -f endpoint_pfile.csv -rm -f endpoint_pfile -rm -f npidata_pfile.csv -rm -f npidata_pfile +#cd ../resources/prod_resources +#rm -f endpoint_pfile.csv +#rm -f endpoint_pfile +#rm -f npidata_pfile.csv +#rm -f npidata_pfile echo "done" diff --git a/scripts/query-endpoint-resources.sh b/scripts/query-endpoint-resources.sh index db11307f8..836fb3a1f 100755 --- a/scripts/query-endpoint-resources.sh +++ b/scripts/query-endpoint-resources.sh @@ -5,6 +5,18 @@ cd .. export $(cat .env) cd resources/prod_resources +echo "Downloading Medicaid state Endpoint List..." +file_path="MedicaidStateEndpointResourcesList.json" +csv_file_path="medicaid-state-endpoints.csv" +if [ -f "$csv_file_path" ]; then + cd ../../endpointmanager/cmd/medicaidendpointquerier + echo "Querying Medicaid state endpoints..." + go run main.go $file_path + cd ../../../resources/prod_resources + echo "done" +fi + + jq -c '.[]' EndpointResourcesList.json | while read endpoint; do NAME=$(echo $endpoint | jq -c -r '.EndpointName') FILENAME=$(echo $endpoint | jq -c -r '.FileName')