davinci_crd_test_kit 0.12.2 → 0.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/config/presets/inferno_crd_client_suite.json.erb +20 -14
- data/config/presets/inferno_crd_client_suite_prefetch_subset_v221.json.erb +125 -0
- data/config/presets/inferno_crd_client_suite_v221.json.erb +124 -0
- data/config/presets/inferno_crd_server_suite.json.erb +59 -2
- data/config/presets/inferno_crd_server_suite_v221.json.erb +94 -0
- data/config/presets/ri_crd_request_generator.json_v221.json.erb +13 -0
- data/config/presets/ri_crd_server.json.erb +19 -19
- data/lib/davinci_crd_test_kit/client/client_base_urls.rb +80 -0
- data/lib/davinci_crd_test_kit/{client_hook_request_validation.rb → client/client_hook_request_validation.rb} +1 -1
- data/lib/davinci_crd_test_kit/client/crd_client_options.rb +30 -0
- data/lib/davinci_crd_test_kit/client/endpoints/cds_services_discovery_handler.rb +34 -0
- data/lib/davinci_crd_test_kit/client/endpoints/custom_service_response.rb +342 -0
- data/lib/davinci_crd_test_kit/client/endpoints/gather_response_generation_data.rb +410 -0
- data/lib/davinci_crd_test_kit/client/endpoints/hook_request_endpoint.rb +233 -0
- data/lib/davinci_crd_test_kit/{mock_service_response.rb → client/endpoints/mock_service_response.rb} +165 -59
- data/lib/davinci_crd_test_kit/{card_responses → client/endpoints/mocked_card_responses}/companions_prerequisites.json +1 -0
- data/lib/davinci_crd_test_kit/{card_responses → client/endpoints/mocked_card_responses}/create_update_coverage_information.json +3 -2
- data/lib/davinci_crd_test_kit/{card_responses → client/endpoints/mocked_card_responses}/launch_smart_app.json +8 -1
- data/lib/davinci_crd_test_kit/{card_responses → client/endpoints/mocked_card_responses}/propose_alternate_request.json +1 -0
- data/lib/davinci_crd_test_kit/{card_responses → client/endpoints/mocked_card_responses}/request_form_completion.json +17 -16
- data/lib/davinci_crd_test_kit/client/multi_request_message_helper.rb +35 -0
- data/lib/davinci_crd_test_kit/client/tagged_request_load_helper.rb +38 -0
- data/lib/davinci_crd_test_kit/client/v2.0.1/api/client_fhir_api_create_test.rb +43 -0
- data/lib/davinci_crd_test_kit/client/v2.0.1/api/client_fhir_api_read_test.rb +43 -0
- data/lib/davinci_crd_test_kit/client/v2.0.1/api/client_fhir_api_search_test.rb +234 -0
- data/lib/davinci_crd_test_kit/client/v2.0.1/api/client_fhir_api_update_test.rb +43 -0
- data/lib/davinci_crd_test_kit/client/v2.0.1/api/client_fhir_api_validation_test.rb +63 -0
- data/lib/davinci_crd_test_kit/client/v2.0.1/auth/decode_auth_token_test.rb +65 -0
- data/lib/davinci_crd_test_kit/client/v2.0.1/auth/retrieve_jwks_test.rb +109 -0
- data/lib/davinci_crd_test_kit/client/v2.0.1/auth/token_header_test.rb +70 -0
- data/lib/davinci_crd_test_kit/client/v2.0.1/auth/token_payload_test.rb +85 -0
- data/lib/davinci_crd_test_kit/{routes/cds-services.json → client/v2.0.1/cds-services-v201.json} +1 -1
- data/lib/davinci_crd_test_kit/client/v2.0.1/client_appointment_book_group.rb +108 -0
- data/lib/davinci_crd_test_kit/client/v2.0.1/client_card_must_support_group.rb +31 -0
- data/lib/davinci_crd_test_kit/client/v2.0.1/client_encounter_discharge_group.rb +105 -0
- data/lib/davinci_crd_test_kit/client/v2.0.1/client_encounter_start_group.rb +105 -0
- data/lib/davinci_crd_test_kit/client/v2.0.1/client_fhir_api_group.rb +790 -0
- data/lib/davinci_crd_test_kit/client/v2.0.1/client_hooks_group.rb +74 -0
- data/lib/davinci_crd_test_kit/client/v2.0.1/client_order_dispatch_group.rb +111 -0
- data/lib/davinci_crd_test_kit/client/v2.0.1/client_order_select_group.rb +116 -0
- data/lib/davinci_crd_test_kit/client/v2.0.1/client_order_sign_group.rb +113 -0
- data/lib/davinci_crd_test_kit/{client_registration_group.rb → client/v2.0.1/client_registration_group.rb} +12 -8
- data/lib/davinci_crd_test_kit/client/v2.0.1/client_urls.rb +13 -0
- data/lib/davinci_crd_test_kit/client/v2.0.1/crd_client_suite.rb +134 -0
- data/lib/davinci_crd_test_kit/client/v2.0.1/invocation/appointment_book_receive_request_test.rb +129 -0
- data/lib/davinci_crd_test_kit/client/v2.0.1/invocation/encounter_discharge_receive_request_test.rb +126 -0
- data/lib/davinci_crd_test_kit/client/v2.0.1/invocation/encounter_start_receive_request_test.rb +126 -0
- data/lib/davinci_crd_test_kit/client/v2.0.1/invocation/order_dispatch_receive_request_test.rb +138 -0
- data/lib/davinci_crd_test_kit/client/v2.0.1/invocation/order_select_receive_request_test.rb +134 -0
- data/lib/davinci_crd_test_kit/client/v2.0.1/invocation/order_sign_receive_request_test.rb +136 -0
- data/lib/davinci_crd_test_kit/client/v2.0.1/must_support/client_card_must_support_coverage_information.rb +93 -0
- data/lib/davinci_crd_test_kit/client/v2.0.1/must_support/client_card_must_support_external_reference.rb +62 -0
- data/lib/davinci_crd_test_kit/client/v2.0.1/must_support/client_card_must_support_instructions.rb +62 -0
- data/lib/davinci_crd_test_kit/client/v2.0.1/registration/client_registration_verification_test.rb +94 -0
- data/lib/davinci_crd_test_kit/client/v2.0.1/registration/client_service_registration_attestation_test.rb +40 -0
- data/lib/davinci_crd_test_kit/client/v2.0.1/verify_request/hook_request_fetched_data_test.rb +86 -0
- data/lib/davinci_crd_test_kit/client/v2.0.1/verify_request/hook_request_optional_fields_test.rb +63 -0
- data/lib/davinci_crd_test_kit/client/v2.0.1/verify_request/hook_request_prefetch_equals_queried_test.rb +96 -0
- data/lib/davinci_crd_test_kit/client/v2.0.1/verify_request/hook_request_required_fields_test.rb +55 -0
- data/lib/davinci_crd_test_kit/client/v2.0.1/verify_request/hook_request_valid_context_test.rb +70 -0
- data/lib/davinci_crd_test_kit/client/v2.0.1/verify_request/hook_request_valid_prefetch_test.rb +62 -0
- data/lib/davinci_crd_test_kit/client/v2.0.1/verify_response/client_display_cards_attest.rb +83 -0
- data/lib/davinci_crd_test_kit/client/v2.0.1/verify_response/inferno_response_validation.rb +79 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/api/client_coverage_info_update_test.rb +212 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/api/client_crd_update_verification_group.rb +18 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/auth/decode_auth_token_test.rb +69 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/auth/retrieve_jwks_test.rb +120 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/auth/token_header_test.rb +92 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/auth/token_payload_test.rb +93 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/cds-services-prefetch-subset-v221.json +198 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/cds-services-v221.json +202 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/client_appointment_book_group.rb +102 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/client_cross_hook_group.rb +28 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/client_encounter_discharge_group.rb +96 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/client_encounter_start_group.rb +95 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/client_fhir_api_group.rb +88 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/client_hooks_group.rb +64 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/client_long_running_hook_group.rb +32 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/client_order_dispatch_group.rb +101 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/client_order_select_group.rb +102 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/client_order_sign_group.rb +107 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/client_registration_group.rb +27 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/client_urls.rb +27 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/crd_client_suite.rb +229 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/cross_hook/client_card_must_support_coverage_information_test.rb +63 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/cross_hook/client_fhirpath_collection_as_comma_delimited_string_test.rb +60 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/cross_hook/client_hook_instances_unique_test.rb +45 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/cross_hook/client_location_address_propagation_test.rb +135 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/cross_hook/client_prefetch_complete_and_subset_test.rb +103 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/invocation/appointment_book_receive_request_test.rb +156 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/invocation/encounter_discharge_receive_request_test.rb +157 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/invocation/encounter_start_receive_request_test.rb +157 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/invocation/order_dispatch_receive_request_test.rb +165 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/invocation/order_select_receive_request_test.rb +165 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/invocation/order_sign_receive_request_test.rb +165 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/long_running/client_long_running_receive_request_test.rb +64 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/long_running/client_skip_long_running_attestation_test.rb +49 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/registration/client_registration_verification_test.rb +161 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/registration/client_service_registration_attestation_test.rb +107 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/verify_request/hook_request_conformance_test.rb +47 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/verify_request/hook_request_coverage_verification_test.rb +152 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/verify_request/hook_request_data_fetch_verification_test.rb +55 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/verify_request/hook_request_granted_scopes_test.rb +123 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/verify_request/hook_request_prefetch_complete_test.rb +127 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/verify_request/hook_request_prefetch_profiles_test.rb +55 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/verify_request/hook_request_requested_version_test.rb +54 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/verify_request/hook_request_secured_transport_test.rb +48 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/verify_response/client_display_cards_attest.rb +74 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/verify_response/hook_response_support_coverage_information_test.rb +30 -0
- data/lib/davinci_crd_test_kit/client/v2.2.1/verify_response/inferno_response_validation.rb +77 -0
- data/lib/davinci_crd_test_kit/cross_suite/base_urls.rb +20 -0
- data/lib/davinci_crd_test_kit/cross_suite/cards_identification.rb +312 -0
- data/lib/davinci_crd_test_kit/{cards_validation.rb → cross_suite/cards_validation.rb} +104 -47
- data/lib/davinci_crd_test_kit/cross_suite/coverage-information_stu201_metadata.yml +27 -0
- data/lib/davinci_crd_test_kit/cross_suite/coverage-information_stu221_metadata.yml +60 -0
- data/lib/davinci_crd_test_kit/cross_suite/fhirpath_on_cds_request.rb +177 -0
- data/lib/davinci_crd_test_kit/{hook_request_field_validation.rb → cross_suite/hook_request_field_validation.rb} +282 -203
- data/lib/davinci_crd_test_kit/cross_suite/logical_models_override_helper.rb +220 -0
- data/lib/davinci_crd_test_kit/cross_suite/prefetch_completeness_checker.rb +462 -0
- data/lib/davinci_crd_test_kit/cross_suite/prefetch_contents_validation.rb +81 -0
- data/lib/davinci_crd_test_kit/cross_suite/prefetch_profile_validation.rb +48 -0
- data/lib/davinci_crd_test_kit/cross_suite/profiles_and_resource_types.rb +63 -0
- data/lib/davinci_crd_test_kit/cross_suite/replace_tokens.rb +38 -0
- data/lib/davinci_crd_test_kit/cross_suite/requests_logical_model_validation.rb +202 -0
- data/lib/davinci_crd_test_kit/cross_suite/response_logical_model_validation.rb +274 -0
- data/lib/davinci_crd_test_kit/{suggestion_actions_validation.rb → cross_suite/suggestion_actions_validation.rb} +70 -50
- data/lib/davinci_crd_test_kit/cross_suite/tags.rb +42 -0
- data/lib/davinci_crd_test_kit/metadata.rb +10 -44
- data/lib/davinci_crd_test_kit/requirements/cds-hooks-library_1.0.1_requirements.xlsx +0 -0
- data/lib/davinci_crd_test_kit/requirements/cds-hooks_2.0_requirements.xlsx +0 -0
- data/lib/davinci_crd_test_kit/requirements/cds-hooks_3.0.0-ballot_requirements.xlsx +0 -0
- data/lib/davinci_crd_test_kit/requirements/davinci_crd_test_kit_requirements.csv +742 -65
- data/lib/davinci_crd_test_kit/requirements/generated/crd_client_requirements_coverage.csv +279 -54
- data/lib/davinci_crd_test_kit/requirements/generated/crd_client_v221_requirements_coverage.csv +1430 -0
- data/lib/davinci_crd_test_kit/requirements/generated/crd_server_requirements_coverage.csv +36 -45
- data/lib/davinci_crd_test_kit/requirements/generated/crd_server_v221_requirements_coverage.csv +143 -0
- data/lib/davinci_crd_test_kit/requirements/hl7.fhir.us.davinci-crd_2.0.1_requirements.xlsx +0 -0
- data/lib/davinci_crd_test_kit/requirements/hl7.fhir.us.davinci-crd_2.2.1_requirements.xlsx +0 -0
- data/lib/davinci_crd_test_kit/server/endpoints/jwk_set_endpoint_handler.rb +13 -0
- data/lib/davinci_crd_test_kit/server/endpoints/mock_ehr/fhir_create_endpoint.rb +23 -0
- data/lib/davinci_crd_test_kit/server/endpoints/mock_ehr/fhir_delete_endpoint.rb +30 -0
- data/lib/davinci_crd_test_kit/server/endpoints/mock_ehr/fhir_metadata_endpoint.rb +112 -0
- data/lib/davinci_crd_test_kit/server/endpoints/mock_ehr/fhir_read_endpoint.rb +21 -0
- data/lib/davinci_crd_test_kit/server/endpoints/mock_ehr/fhir_request_handler.rb +261 -0
- data/lib/davinci_crd_test_kit/server/endpoints/mock_ehr/fhir_search_endpoint.rb +561 -0
- data/lib/davinci_crd_test_kit/server/endpoints/mock_ehr/fhir_update_endpoint.rb +24 -0
- data/lib/davinci_crd_test_kit/server/endpoints/mock_ehr/stress-test-Bundle.json +54687 -0
- data/lib/davinci_crd_test_kit/server/endpoints/mock_ehr_endpoints.rb +95 -0
- data/lib/davinci_crd_test_kit/server/jobs/invoke_hook.rb +225 -0
- data/lib/davinci_crd_test_kit/{jwt_helper.rb → server/jwt_helper.rb} +1 -12
- data/lib/davinci_crd_test_kit/server/resource_extractor.rb +68 -0
- data/lib/davinci_crd_test_kit/server/server_abstract_invoke_hook_test.rb +165 -0
- data/lib/davinci_crd_test_kit/server/server_base_urls.rb +30 -0
- data/lib/davinci_crd_test_kit/{server_hook_helper.rb → server/server_hook_helper.rb} +1 -1
- data/lib/davinci_crd_test_kit/{server_hook_request_validation.rb → server/server_hook_request_validation.rb} +1 -1
- data/lib/davinci_crd_test_kit/{test_helper.rb → server/server_test_helper.rb} +7 -3
- data/lib/davinci_crd_test_kit/server/v2.0.1/crd_metadata/Appointment.yml +5 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/crd_metadata/ClaimResponse.yml +5 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/crd_metadata/CommunicationRequest.yml +5 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/crd_metadata/Coverage.yml +21 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/crd_metadata/Device.yml +5 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/crd_metadata/DeviceRequest.yml +5 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/crd_metadata/Encounter.yml +7 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/crd_metadata/Location.yml +5 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/crd_metadata/MedicationRequest.yml +5 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/crd_metadata/NutritionOrder.yml +5 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/crd_metadata/Organization.yml +5 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/crd_metadata/Patient.yml +5 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/crd_metadata/Practitioner.yml +5 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/crd_metadata/PractitionerRole.yml +40 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/crd_metadata/ServiceRequest.yml +5 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/crd_metadata/Task.yml +5 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/crd_metadata/VisionPrescription.yml +5 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/crd_server_suite.rb +99 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/discovery/discovery_endpoint_test.rb +90 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/discovery/discovery_services_validation_test.rb +67 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/interaction/server_invoke_hook_test.rb +12 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/must_support/coverage_information_system_action_across_hooks_validation_test.rb +34 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/must_support/external_reference_card_across_hooks_validation_test.rb +30 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/must_support/instructions_card_received_across_hooks_test.rb +27 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/server_appointment_book_group.rb +191 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/server_demonstrate_hook_response_group.rb +93 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/server_discovery_group.rb +62 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/server_encounter_discharge_group.rb +186 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/server_encounter_start_group.rb +186 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/server_hooks_group.rb +73 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/server_order_dispatch_group.rb +191 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/server_order_select_group.rb +211 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/server_order_sign_group.rb +216 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/server_required_card_response_validation_group.rb +28 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/server_urls.rb +13 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/verify_request/service_request_context_validation_test.rb +30 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/verify_request/service_request_optional_fields_validation_test.rb +39 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/verify_request/service_request_required_fields_validation_test.rb +40 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/verify_response/additional_orders_validation_test.rb +59 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/verify_response/card_optional_fields_validation_test.rb +51 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/verify_response/coverage_information_system_action_received_test.rb +65 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/verify_response/coverage_information_system_action_validation_test.rb +120 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/verify_response/create_or_update_coverage_info_response_validation_test.rb +70 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/verify_response/external_reference_card_validation_test.rb +37 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/verify_response/form_completion_response_validation_test.rb +67 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/verify_response/instructions_card_received_test.rb +30 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/verify_response/launch_smart_app_card_validation_test.rb +39 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/verify_response/propose_alternate_request_card_validation_test.rb +46 -0
- data/lib/davinci_crd_test_kit/server/v2.0.1/verify_response/service_response_validation_test.rb +83 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/crd_metadata/Appointment_withorder.yml +5 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/crd_metadata/Appointment_withoutorder.yml +5 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/crd_metadata/CommunicationRequest.yml +5 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/crd_metadata/Coverage.yml +5 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/crd_metadata/Device.yml +5 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/crd_metadata/DeviceRequest.yml +5 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/crd_metadata/Encounter.yml +5 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/crd_metadata/Location.yml +5 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/crd_metadata/MedicationRequest.yml +5 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/crd_metadata/NutritionOrder.yml +5 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/crd_metadata/Organization.yml +5 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/crd_metadata/Patient.yml +5 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/crd_metadata/PractitionerRole.yml +5 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/crd_metadata/ServiceRequest.yml +5 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/crd_metadata/VisionPrescription.yml +5 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/crd_server_suite.rb +115 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/discovery/discovery_configuration_test.rb +159 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/discovery/discovery_endpoint_test.rb +90 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/discovery/discovery_prefetch_support_test.rb +43 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/discovery/discovery_services_validation_test.rb +121 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/interaction/server_invoke_hook_test.rb +17 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/must_support/coverage_information_must_support_test.rb +71 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/must_support/coverage_information_system_action_across_hooks_validation_test.rb +36 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/must_support/supported_us_core_versions_test.rb +118 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/server_appointment_book_group.rb +213 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/server_demonstrate_hook_response_group.rb +93 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/server_discovery_group.rb +69 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/server_encounter_discharge_group.rb +194 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/server_encounter_start_group.rb +194 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/server_hooks_group.rb +73 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/server_order_dispatch_group.rb +214 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/server_order_select_group.rb +219 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/server_order_sign_group.rb +241 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/server_required_card_response_validation_group.rb +30 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/server_urls.rb +13 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/verify_request/service_request_context_validation_test.rb +30 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/verify_request/service_request_no_custom_extensions_test.rb +120 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/verify_request/service_request_optional_fields_validation_test.rb +39 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/verify_request/service_request_required_fields_validation_test.rb +40 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/verify_response/additional_orders_validation_test.rb +66 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/verify_response/all_responses_include_coverage_information_test.rb +123 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/verify_response/card_optional_fields_validation_test.rb +57 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/verify_response/coverage_info_configuration_test.rb +83 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/verify_response/coverage_information_system_action_received_test.rb +65 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/verify_response/coverage_information_system_action_validation_test.rb +184 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/verify_response/create_or_update_coverage_info_response_validation_test.rb +75 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/verify_response/external_reference_card_validation_test.rb +47 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/verify_response/form_completion_response_validation_test.rb +91 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/verify_response/hook_request_resource_resolution.rb +137 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/verify_response/instructions_card_received_test.rb +32 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/verify_response/launch_smart_app_card_validation_test.rb +49 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/verify_response/order_dispatch_coverage_information_test.rb +38 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/verify_response/propose_alternate_request_card_validation_test.rb +54 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/verify_response/service_response_validation_test.rb +97 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/verify_response/unknown_cds_hooks_elements_test.rb +78 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/verify_response/unknown_configuration_test.rb +78 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/verify_response/unknown_context_test.rb +78 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/verify_response/verify_response_without_billing_options_test.rb +43 -0
- data/lib/davinci_crd_test_kit/server/v2.2.1/verify_response/verify_response_without_configuration_test.rb +44 -0
- data/lib/davinci_crd_test_kit/version.rb +2 -2
- data/lib/davinci_crd_test_kit.rb +4 -2
- metadata +308 -101
- data/lib/davinci_crd_test_kit/client_fhir_api_group.rb +0 -785
- data/lib/davinci_crd_test_kit/client_hooks_group.rb +0 -75
- data/lib/davinci_crd_test_kit/client_tests/appointment_book_receive_request_test.rb +0 -93
- data/lib/davinci_crd_test_kit/client_tests/client_appointment_book_group.rb +0 -75
- data/lib/davinci_crd_test_kit/client_tests/client_display_cards_attest.rb +0 -48
- data/lib/davinci_crd_test_kit/client_tests/client_encounter_discharge_group.rb +0 -73
- data/lib/davinci_crd_test_kit/client_tests/client_encounter_start_group.rb +0 -73
- data/lib/davinci_crd_test_kit/client_tests/client_fhir_api_create_test.rb +0 -41
- data/lib/davinci_crd_test_kit/client_tests/client_fhir_api_read_test.rb +0 -39
- data/lib/davinci_crd_test_kit/client_tests/client_fhir_api_search_test.rb +0 -232
- data/lib/davinci_crd_test_kit/client_tests/client_fhir_api_update_test.rb +0 -41
- data/lib/davinci_crd_test_kit/client_tests/client_fhir_api_validation_test.rb +0 -60
- data/lib/davinci_crd_test_kit/client_tests/client_order_dispatch_group.rb +0 -79
- data/lib/davinci_crd_test_kit/client_tests/client_order_select_group.rb +0 -82
- data/lib/davinci_crd_test_kit/client_tests/client_order_sign_group.rb +0 -81
- data/lib/davinci_crd_test_kit/client_tests/client_registration_verification_test.rb +0 -88
- data/lib/davinci_crd_test_kit/client_tests/decode_auth_token_test.rb +0 -60
- data/lib/davinci_crd_test_kit/client_tests/encounter_discharge_receive_request_test.rb +0 -90
- data/lib/davinci_crd_test_kit/client_tests/encounter_start_receive_request_test.rb +0 -90
- data/lib/davinci_crd_test_kit/client_tests/hook_request_optional_fields_test.rb +0 -57
- data/lib/davinci_crd_test_kit/client_tests/hook_request_required_fields_test.rb +0 -49
- data/lib/davinci_crd_test_kit/client_tests/hook_request_valid_context_test.rb +0 -68
- data/lib/davinci_crd_test_kit/client_tests/hook_request_valid_prefetch_test.rb +0 -69
- data/lib/davinci_crd_test_kit/client_tests/order_dispatch_receive_request_test.rb +0 -102
- data/lib/davinci_crd_test_kit/client_tests/order_select_receive_request_test.rb +0 -98
- data/lib/davinci_crd_test_kit/client_tests/order_sign_receive_request_test.rb +0 -101
- data/lib/davinci_crd_test_kit/client_tests/retrieve_jwks_test.rb +0 -105
- data/lib/davinci_crd_test_kit/client_tests/submitted_response_validation.rb +0 -44
- data/lib/davinci_crd_test_kit/client_tests/token_header_test.rb +0 -65
- data/lib/davinci_crd_test_kit/client_tests/token_payload_test.rb +0 -78
- data/lib/davinci_crd_test_kit/crd_client_suite.rb +0 -185
- data/lib/davinci_crd_test_kit/crd_options.rb +0 -9
- data/lib/davinci_crd_test_kit/crd_server_suite.rb +0 -125
- data/lib/davinci_crd_test_kit/igs/davinci-crd-2.0.1.tgz +0 -0
- data/lib/davinci_crd_test_kit/routes/cds_services_discovery_handler.rb +0 -18
- data/lib/davinci_crd_test_kit/routes/hook_request_endpoint.rb +0 -77
- data/lib/davinci_crd_test_kit/routes/jwk_set_endpoint_handler.rb +0 -15
- data/lib/davinci_crd_test_kit/server_appointment_book_group.rb +0 -176
- data/lib/davinci_crd_test_kit/server_demonstrate_hook_response_group.rb +0 -77
- data/lib/davinci_crd_test_kit/server_discovery_group.rb +0 -60
- data/lib/davinci_crd_test_kit/server_encounter_discharge_group.rb +0 -170
- data/lib/davinci_crd_test_kit/server_encounter_start_group.rb +0 -170
- data/lib/davinci_crd_test_kit/server_hooks_group.rb +0 -71
- data/lib/davinci_crd_test_kit/server_order_dispatch_group.rb +0 -176
- data/lib/davinci_crd_test_kit/server_order_select_group.rb +0 -195
- data/lib/davinci_crd_test_kit/server_order_sign_group.rb +0 -201
- data/lib/davinci_crd_test_kit/server_required_card_response_validation_group.rb +0 -26
- data/lib/davinci_crd_test_kit/server_tests/additional_orders_validation_test.rb +0 -68
- data/lib/davinci_crd_test_kit/server_tests/card_optional_fields_validation_test.rb +0 -47
- data/lib/davinci_crd_test_kit/server_tests/coverage_information_system_action_across_hooks_validation_test.rb +0 -32
- data/lib/davinci_crd_test_kit/server_tests/coverage_information_system_action_received_test.rb +0 -63
- data/lib/davinci_crd_test_kit/server_tests/coverage_information_system_action_validation_test.rb +0 -118
- data/lib/davinci_crd_test_kit/server_tests/create_or_update_coverage_info_response_validation_test.rb +0 -71
- data/lib/davinci_crd_test_kit/server_tests/discovery_endpoint_test.rb +0 -88
- data/lib/davinci_crd_test_kit/server_tests/discovery_services_validation_test.rb +0 -65
- data/lib/davinci_crd_test_kit/server_tests/external_reference_card_across_hooks_validation_test.rb +0 -28
- data/lib/davinci_crd_test_kit/server_tests/external_reference_card_validation_test.rb +0 -36
- data/lib/davinci_crd_test_kit/server_tests/form_completion_response_validation_test.rb +0 -78
- data/lib/davinci_crd_test_kit/server_tests/instructions_card_received_across_hooks_test.rb +0 -25
- data/lib/davinci_crd_test_kit/server_tests/instructions_card_received_test.rb +0 -26
- data/lib/davinci_crd_test_kit/server_tests/launch_smart_app_card_validation_test.rb +0 -38
- data/lib/davinci_crd_test_kit/server_tests/propose_alternate_request_card_validation_test.rb +0 -63
- data/lib/davinci_crd_test_kit/server_tests/service_call_test.rb +0 -101
- data/lib/davinci_crd_test_kit/server_tests/service_request_context_validation_test.rb +0 -28
- data/lib/davinci_crd_test_kit/server_tests/service_request_optional_fields_validation_test.rb +0 -37
- data/lib/davinci_crd_test_kit/server_tests/service_request_required_fields_validation_test.rb +0 -38
- data/lib/davinci_crd_test_kit/server_tests/service_response_validation_test.rb +0 -81
- data/lib/davinci_crd_test_kit/tags.rb +0 -10
- data/lib/davinci_crd_test_kit/urls.rb +0 -52
- /data/lib/davinci_crd_test_kit/{card_responses → client/endpoints/mocked_card_responses}/external_reference.json +0 -0
- /data/lib/davinci_crd_test_kit/{card_responses → client/endpoints/mocked_card_responses}/instructions.json +0 -0
- /data/lib/davinci_crd_test_kit/{crd_jwks.json → server/endpoints/crd_jwks.json} +0 -0
- /data/lib/davinci_crd_test_kit/{jwks.rb → server/endpoints/jwks.rb} +0 -0
data/lib/davinci_crd_test_kit/requirements/generated/crd_client_v221_requirements_coverage.csv
ADDED
|
@@ -0,0 +1,1430 @@
|
|
|
1
|
+
Req Set,ID,URL,Requirement,Conformance,Actors,Conditionality,Not Tested Reason,Not Tested Details,Da Vinci CRD Client v2.2.1 Test Suite Short ID(s),Da Vinci CRD Client v2.2.1 Test Suite Full ID(s)
|
|
2
|
+
hl7.fhir.us.davinci-crd_2.2.1,billopt-1,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/StructureDefinition-ext-billing-options.html#ci-c-billopt-1,"CRD clients **SHALL** use the billing-options extension to convey likely billing codes if they are known, but are not required to know billing codes (e.g. if ordering and performing systems will differ).",SHALL,CRD Client,true,,,"1.2.1.3.01, 1.2.2.3.01, 1.2.3.3.01, 1.2.4.3.01, 1.2.5.3.01, 1.2.6.3.01","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_conformance"
|
|
3
|
+
hl7.fhir.us.davinci-crd_2.2.1,conf-1,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/conformance.html#ci-c-conf-1,CRD clients **SHALL** support at least one of the three specified versions of US Core.,SHALL,CRD Client,false,,,2,crd_client_v221-crd_v221_client_fhir_api
|
|
4
|
+
hl7.fhir.us.davinci-crd_2.2.1,conf-3,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/conformance.html#ci-c-conf-3,"If the CRD client maintains a mustSupport data element and surfaces it to users, then it **SHALL** be exposed in their FHIR interface when the data exists and privacy constraints permit.",SHALL,CRD Client,true,,,"",""
|
|
5
|
+
hl7.fhir.us.davinci-crd_2.2.1,conf-6,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/conformance.html#ci-c-conf-6,CRD clients **SHALL** make the mustSupport data available to the appropriate user (clinical or administrative) or leverage the data within their workflow as necessary to follow the intention of the provided decision support.,SHALL,CRD Client,false,,,"",""
|
|
6
|
+
hl7.fhir.us.davinci-crd_2.2.1,conf-10,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/conformance.html#ci-c-conf-10,CRD clients **SHALL NOT** depend on or set expectations for CRD servers to communicate data elements not marked as mandatory or mustSupport in the CRD specification.,SHALL NOT,CRD Client,false,,,"",""
|
|
7
|
+
hl7.fhir.us.davinci-crd_2.2.1,conf-11,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/conformance.html#ci-c-conf-11,"implementations **MAY**, by mutual agreement, pre-adopt the use of those additional CI-build profiles and/or mustSupport data elements and not be considered in violation of #1 or #3 above.",MAY,"CRD Client,CRD Server",true,,,"",""
|
|
8
|
+
hl7.fhir.us.davinci-crd_2.2.1,conf-12,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/conformance.html#ci-c-conf-12,"Where cardinality and other constraints present in profiles allow data elements to be omitted, CRD compliant systems **SHALL NOT** treat the omission of those elements as an error.",SHALL NOT,"CRD Client,CRD Server",true,,,"",""
|
|
9
|
+
hl7.fhir.us.davinci-crd_2.2.1,conf-13,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/conformance.html#ci-c-conf-13,CRD clients and services and **SHALL** use standard CRD data elements (i.e. elements found within CRD-defined or inherited profiles and marked as mandatory or mustSupport) to communicate needed data where the elements are intended to convey such information.,SHALL,"CRD Client,CRD Server",false,,,"",""
|
|
10
|
+
hl7.fhir.us.davinci-crd_2.2.1,dev-3-A,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/deviations.html#ci-c-dev-3,The requestedVersion extension **SHALL** be present if the service indicates it supports multiple versions for that hook,SHALL,CRD Client,true,,,"1.2.1.3.02, 1.2.2.3.02, 1.2.3.3.02, 1.2.4.3.02, 1.2.5.3.02, 1.2.6.3.02","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_requested_version, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group03-crd_v221_hook_request_requested_version, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group03-crd_v221_hook_request_requested_version, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_requested_version, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group03-crd_v221_hook_request_requested_version, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_requested_version"
|
|
11
|
+
hl7.fhir.us.davinci-crd_2.2.1,dev-3-B,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/deviations.html#ci-c-dev-3,The requestedVersion extension ... **MAY** be present always.,MAY,CRD Client,true,,,"",""
|
|
12
|
+
hl7.fhir.us.davinci-crd_2.2.1,dev-11,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/deviations.html#ci-c-dev-11,CRD Clients **SHOULD** expose configuration options through a configuration screen to allow users and/or system administrators to control the types of information returned.,SHOULD,CRD Client,false,,,"",""
|
|
13
|
+
hl7.fhir.us.davinci-crd_2.2.1,dev-12,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/deviations.html#ci-c-dev-12,CRD Clients **SHALL** convey configuration options when invoking the hook using the davinci-crd.configuration extension. It will be a single object whose properties will be drawn from the code values from configuration options and whose values will be of the type defined for that option.,SHALL,CRD Client,false,,,"1.2.1.3.02, 1.2.2.3.02, 1.2.3.3.02, 1.2.4.3.02, 1.2.5.3.02, 1.2.6.3.02","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_requested_version, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group03-crd_v221_hook_request_requested_version, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group03-crd_v221_hook_request_requested_version, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_requested_version, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group03-crd_v221_hook_request_requested_version, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_requested_version"
|
|
14
|
+
hl7.fhir.us.davinci-crd_2.2.1,dev-13,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/deviations.html#ci-c-dev-13,"CRD Clients **SHOULD** provide an ability to leverage the dynamic configuration capabilities of payer services based on provider role, individual provider, and/or hook invocation location as best meets the needs of their users.",SHOULD,CRD Client,false,,,"",""
|
|
15
|
+
hl7.fhir.us.davinci-crd_2.2.1,dev-16,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/deviations.html#ci-c-dev-16,CRD Clients **MAY** send configuration information that CRD Servers do not support.,MAY,CRD Client,false,,,"",""
|
|
16
|
+
hl7.fhir.us.davinci-crd_2.2.1,dev-21,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/deviations.html#ci-c-dev-21,"For the purposes of this implementation guide, the inclusion of the `id` element in 'created' resources and references in created and updated resources within multi-action suggestions **SHALL** be handled as per FHIR's [transaction processing rules](http://hl7.org/fhir/R4/http.html#trules).",SHALL,CRD Client,false,,,"",""
|
|
17
|
+
hl7.fhir.us.davinci-crd_2.2.1,dev-22,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/deviations.html#ci-c-dev-22,"Specifically, this means that if a FHIR Reference points to the resource type and `id` of a resource of another 'create' Action in the same Suggestion, then the reference to that resource **SHALL** be updated by the CRD client to point to the `id` assigned by the client when performing the 'create'.",SHALL,CRD Client,false,,,"",""
|
|
18
|
+
hl7.fhir.us.davinci-crd_2.2.1,dev-23,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/deviations.html#ci-c-dev-23,CRD Clients **SHALL** perform 'creates' in an order that ensures that referenced resources are created prior to referencing resources.,SHALL,CRD Client,false,,,"",""
|
|
19
|
+
hl7.fhir.us.davinci-crd_2.2.1,dev-26,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/deviations.html#ci-c-dev-26,CRD clients **SHALL** only invoke hooks on payer services where the patient record indicates active coverage with the payer associated with the service and where there is no recorded indication the patient intends to bypass insurance coverage (i.e. the service or product is not flagged as 'patient-pay').,SHALL,CRD Client,false,,,"",""
|
|
20
|
+
hl7.fhir.us.davinci-crd_2.2.1,dev-27,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/deviations.html#ci-c-dev-27,"CRD clients **MAY** limit hook invocation to only those payers that are believed to potentially have relevant information related to the current action - for example, clinical guidance, contraindication detection, etc.",MAY,CRD Client,false,,,"",""
|
|
21
|
+
hl7.fhir.us.davinci-crd_2.2.1,dev-28,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/deviations.html#ci-c-dev-28,"To avoid confusion for providers, where a patient has multiple active coverages that could be relevant to the current order/appointment/etc., CRD clients **SHALL** select from those coverages which is most likely to be primary and only solicit coverage information for that one payer.",SHALL,CRD Client,true,,,"",""
|
|
22
|
+
hl7.fhir.us.davinci-crd_2.2.1,dev-29-A,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/deviations.html#ci-c-dev-29,This primary coverage **SHALL** be the only one included in the prefetch content as part of the CRD request,SHALL,CRD Client,false,,,"1.2.1.3.04, 1.2.1.3.05, 1.2.2.3.04, 1.2.2.3.05, 1.2.3.3.04, 1.2.3.3.05, 1.2.4.3.04, 1.2.4.3.05, 1.2.5.3.04, 1.2.5.3.05, 1.2.6.3.04, 1.2.6.3.05","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_coverage_verification, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group03-crd_v221_hook_request_coverage_verification, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group03-crd_v221_hook_request_coverage_verification, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_coverage_verification, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group03-crd_v221_hook_request_coverage_verification, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_coverage_verification"
|
|
23
|
+
hl7.fhir.us.davinci-crd_2.2.1,dev-29-B,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/deviations.html#ci-c-dev-29,[O]ther [non-primary] coverages **MAY** be exposed over the CRD client's FHIR API.,MAY,CRD Client,false,,,"",""
|
|
24
|
+
hl7.fhir.us.davinci-crd_2.2.1,dev-30,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/deviations.html#ci-c-dev-30,"If they invoke CRD on other payers, CRD clients **SHALL** ensure that response types that return coverage information are disabled for those 'likely secondary' payers.",SHALL,CRD Client,true,,,"",""
|
|
25
|
+
hl7.fhir.us.davinci-crd_2.2.1,dev-31,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/deviations.html#ci-c-dev-31,"In situations where a CRD client determines that there are different primary coverages for different items in the same order action, they **MAY** choose to send separate CRD calls (each with its own access token) for the collection of services pertinent to that Coverage.",MAY,CRD Client,true,,,"",""
|
|
26
|
+
hl7.fhir.us.davinci-crd_2.2.1,dev-32,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/deviations.html#ci-c-dev-32,"Where the patient has multiple active coverages that the CRD client deems appropriate to call the respective CRD servers for, the CRD client **SHALL** invoke all CRD server calls in parallel and display results simultaneously to ensure timely response to user action.",SHALL,CRD Client,true,,,"",""
|
|
27
|
+
hl7.fhir.us.davinci-crd_2.2.1,found-1,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/foundation.html#ci-c-found-1,"CRD servers and CRD clients **MAY** mutually agree to support additional hooks, additional card patterns, additional resources, additional extensions, etc. not found in this specification.",MAY,"CRD Client,CRD Server",false,,,"",""
|
|
28
|
+
hl7.fhir.us.davinci-crd_2.2.1,found-3,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/foundation.html#ci-c-found-3,"If a CRD client does not receive a response within the 5 or 10-second window, it **MAY** either abandon the call or process the response asynchronously.",MAY,CRD Client,true,,,"",""
|
|
29
|
+
hl7.fhir.us.davinci-crd_2.2.1,found-6,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/foundation.html#ci-c-found-6,CRD clients **SHALL** provide a mechanism for providers to bypass a CRD process that is taking longer than the aforementioned time limit to ensure users are not blocked from proceeding with their business flow.,SHALL,CRD Client,false,,,1.4.02,crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_long_running_hook-crd_v221_client_skip_long_running_attestation_test
|
|
30
|
+
hl7.fhir.us.davinci-crd_2.2.1,found-7,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/foundation.html#ci-c-found-7,"Where a CRD client opts to not block users from proceeding for responses that come back in a period of time longer than the target time window in this guide (i.e., 5s or 10s), the client **SHOULD** ensure that users are made aware of the information when it is available.",SHOULD,CRD Client,false,,,"",""
|
|
31
|
+
hl7.fhir.us.davinci-crd_2.2.1,found-8,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/foundation.html#ci-c-found-8,"For responses that come back in a time period that exceeds the time maximm duration specifd in this guide, CRD clients **MAY** ignore the resulting cards and/or system actions.",MAY,CRD Client,true,,,"",""
|
|
32
|
+
hl7.fhir.us.davinci-crd_2.2.1,found-12,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/foundation.html#ci-c-found-12,"Where the selected code is not already a billing code and CRD clients are able to automatically determine what the corresponding billing code is, they **SHOULD** send a Coding with the billing code alongside the clinical code to reduce the risk of the receiving payer making a different translation.",SHOULD,CRD Client,true,,,"",""
|
|
33
|
+
hl7.fhir.us.davinci-crd_2.2.1,found-16,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/foundation.html#ci-c-found-16,"When the connection between a particular client and server has evolved to an automated configuration approach, CRD Clients **SHOULD** perform the discovery process on the CRD server at least once per day to detect any changes to supported hooks, prefetch requirements, and/or configuration options.",SHOULD,CRD Client,false,,,"",""
|
|
34
|
+
hl7.fhir.us.davinci-crd_2.2.1,found-17,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/foundation.html#ci-c-found-17,"If a CRD client encounters an error when invoking a hook, they **SHOULD** re-run the discovery process before failing.",SHOULD,CRD Client,true,,,"",""
|
|
35
|
+
hl7.fhir.us.davinci-crd_2.2.1,found-18,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/foundation.html#ci-c-found-18,CRD clients and servers **MAY** leverage the [payer registry](http://hl7.org/fhir/us/davinci-pdex-plan-net) developed by PDex (which will eventually fold into the [national directory under FAST](https://confluence.hl7.org/display/FAST/National+Healthcare+Directory)) as a means of determining which endpoints exist for which payers as candidates for configuration.,MAY,"CRD Client,CRD Server",false,,,"",""
|
|
36
|
+
hl7.fhir.us.davinci-crd_2.2.1,found-19,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/foundation.html#ci-c-found-19,"Once plans are in the national directory, CRD clients **SHOULD** include that plan identifier to uniquely identify a plan.",SHOULD,CRD Client,true,,,"",""
|
|
37
|
+
hl7.fhir.us.davinci-crd_2.2.1,found-20,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/foundation.html#ci-c-found-20,"When a CRD client invokes a CRD server via CDS Hooks, it **SHALL** provide an access token that allows the CRD server to retrieve additional patient information.",SHALL,CRD Client,false,,,"1.2.1.3.06, 1.2.2.3.06, 1.2.3.3.06, 1.2.4.3.06, 1.2.5.3.06, 1.2.6.3.06","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_data_fetch_verification, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group03-crd_v221_hook_data_fetch_verification, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group03-crd_v221_hook_data_fetch_verification, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_data_fetch_verification, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group03-crd_v221_hook_data_fetch_verification, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_data_fetch_verification"
|
|
38
|
+
hl7.fhir.us.davinci-crd_2.2.1,found-21,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/foundation.html#ci-c-found-21,The CRD client **SHALL** limit the scopes provided in their access token as narrowly as feasible to reflect the data requirements identified by the CRD server as necessary to perform their decision support.,SHALL,CRD Client,false,,,"1.2.1.3.07, 1.2.2.3.07, 1.2.3.3.07, 1.2.4.3.07, 1.2.5.3.07, 1.2.6.3.07","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_granted_scopes, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group03-crd_v221_hook_request_granted_scopes, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group03-crd_v221_hook_request_granted_scopes, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_granted_scopes, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group03-crd_v221_hook_request_granted_scopes, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_granted_scopes"
|
|
39
|
+
hl7.fhir.us.davinci-crd_2.2.1,found-22,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/foundation.html#ci-c-found-22,Such access tokens **SHOULD** have an expiration time of no longer than 30 seconds which should be sufficient for even 'parallel' decision support with something like 'Order Select' where a user continues to work while the decision support call is processing.,SHOULD,CRD Client,false,,,"",""
|
|
40
|
+
hl7.fhir.us.davinci-crd_2.2.1,found-23,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/foundation.html#ci-c-found-23,CRD Clients **SHALL** be able to parse and execute prefetches that use the simple FHIRPath approach and not fail if that syntax is present.,SHALL,CRD Client,false,,,"1.2.1.3.04, 1.2.2.3.04, 1.2.3.3.04, 1.2.4.3.04, 1.2.5.3.04, 1.2.6.3.04","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_prefetch_complete"
|
|
41
|
+
hl7.fhir.us.davinci-crd_2.2.1,found-24,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/foundation.html#ci-c-found-24,"For this release of the IG, conformant CRD clients and servers **SHALL** support the CDS Hooks prefetch capability.",SHALL,"CRD Client,CRD Server",false,,,"1.2.1.3.04, 1.2.2.3.04, 1.2.3.3.04, 1.2.4.3.04, 1.2.5.3.04, 1.2.6.3.04","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_prefetch_complete"
|
|
42
|
+
hl7.fhir.us.davinci-crd_2.2.1,found-25-A,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/foundation.html#ci-c-found-25,Clients **SHALL** be able to supply the information listed in the bullets above via prefetch for the request resources they support when data exists using the search parameters and FHIRPath expressions covered in the [standard prefetch](https://hl7.org/fhir/us/davinci-crd/2.2.1/en/conformancedetails.html#standard-prefetch) section below. This includes the ability to fetch subsets of the specified queries.,SHALL,CRD Client,false,,,"1.2.1.3.04, 1.2.2.3.04, 1.2.3.3.04, 1.2.4.3.04, 1.2.5.3.04, 1.2.6.3.04, 1.3.05","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_cross_hook-crd_v221_client_prefetch_complete_and_subset"
|
|
43
|
+
hl7.fhir.us.davinci-crd_2.2.1,found-25-B,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/foundation.html#ci-c-found-25,Clients **SHALL** be able to supply ... subsets of the specified [prefetch] queries.,SHALL,CRD Client,false,,,"1.2.1.3.04, 1.2.2.3.04, 1.2.3.3.04, 1.2.4.3.04, 1.2.5.3.04, 1.2.6.3.04, 1.3.05","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_cross_hook-crd_v221_client_prefetch_complete_and_subset"
|
|
44
|
+
hl7.fhir.us.davinci-crd_2.2.1,found-30,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/foundation.html#ci-c-found-30,CRD client implementations **SHOULD NOT** depend on standardized prefetch key names or a specific ordering of search filters.,SHOULD NOT,CRD Client,false,,,"",""
|
|
45
|
+
hl7.fhir.us.davinci-crd_2.2.1,found-31,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/foundation.html#ci-c-found-31,CRD clients **SHALL** inspect the CDS Hooks discovery endpoint to determine exact prefetch key names and queries.,SHALL,CRD Client,false,,,"1.2.1.3.04, 1.2.2.3.04, 1.2.3.3.04, 1.2.4.3.04, 1.2.5.3.04, 1.2.6.3.04","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_prefetch_complete"
|
|
46
|
+
hl7.fhir.us.davinci-crd_2.2.1,found-33,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/foundation.html#ci-c-found-33,CRD clients and servers **SHALL** ignore unexpected elements when processing instances.,SHALL,"CRD Client,CRD Server",false,,,"",""
|
|
47
|
+
hl7.fhir.us.davinci-crd_2.2.1,found-35-A,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/foundation.html#ci-c-found-35,"In the specific case of order-based hooks, ""what if"" **SHOULD** use the Order Sign hook",SHOULD,CRD Client,false,,,"",""
|
|
48
|
+
hl7.fhir.us.davinci-crd_2.2.1,found-35-B,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/foundation.html#ci-c-found-35,"In the specific case of order-based hooks, ""what if"" ... **SHALL** pass the [unsolicited-determ](https://hl7.org/fhir/us/davinci-crd/2.2.1/en/ValueSet-cardType.html#expansion) configuration option with a value of 'false' to prevent the return of an unsolicited determination",SHALL,CRD Client,false,,,"",""
|
|
49
|
+
hl7.fhir.us.davinci-crd_2.2.1,found-35-C,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/foundation.html#ci-c-found-35,"In the specific case of order-based hooks, ""what if"" ... **MAY** use configuration options to prevent the return of other irrelevant types of cards (e.g., duplicate therapy).",MAY,CRD Client,false,,,"",""
|
|
50
|
+
hl7.fhir.us.davinci-crd_2.2.1,found-36-A,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/foundation.html#ci-c-found-36,"When CRD clients pass resources to a CRD server as part of context, the resources **SHALL** have an 'id'",SHALL,CRD Client,false,,,"1.2.1.3.01, 1.2.2.3.01, 1.2.3.3.01, 1.2.4.3.01, 1.2.5.3.01, 1.2.6.3.01","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_conformance"
|
|
51
|
+
hl7.fhir.us.davinci-crd_2.2.1,found-36-B,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/foundation.html#ci-c-found-36,"When CRD clients pass resources to a CRD server as part of context, the ... 'id' [of each resource] **SHALL** be usable as a target for references [(in resource ids and Reference elements)] in resources manipulated by CDS Hooks actions and/or by SMART apps.",SHALL,CRD Client,false,,,"2.1.2.01, 2.2.2.01, 2.3.2.01","crd_client_v221-crd_v221_client_fhir_api-us_core_v311_fhir_api-crd_v221_us_core_311_client_update_verification-crd_v221_client_coverage_info_update, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-crd_v221_us_core_610_client_update_verification-crd_v221_client_coverage_info_update, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-crd_v221_us_core_700_client_update_verification-crd_v221_client_coverage_info_update"
|
|
52
|
+
hl7.fhir.us.davinci-crd_2.2.1,found-37,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/foundation.html#ci-c-found-37,"Therefore, in addition to any logging performed for security purposes, both CRD clients and CRD servers **SHALL** retain logs of all CRD-related hook invocations and their responses for access in the event of a dispute.",SHALL,"CRD Client,CRD Server",false,,,"",""
|
|
53
|
+
hl7.fhir.us.davinci-crd_2.2.1,found-39,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/foundation.html#ci-c-found-39,CRD clients **SHOULD** ensure that multiple cards with the same advice are handled in a way that will not create a burden on the user.,SHOULD,CRD Client,false,,,"",""
|
|
54
|
+
hl7.fhir.us.davinci-crd_2.2.1,found-40,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/foundation.html#ci-c-found-40,Conformant systems **SHOULD** omit non-significant whitespace in transmitted instances for performance reasons.,SHOULD,"CRD Client,CRD Server",false,,,"",""
|
|
55
|
+
hl7.fhir.us.davinci-crd_2.2.1,hook-1,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/hooks.html#ci-c-hook-1,CRD Clients conforming to this implementation guide **SHALL** be able to determine the correct payer CRD server to use for each request.,SHALL,CRD Client,false,,,"1.2.1.3.05, 1.2.2.3.05, 1.2.3.3.05, 1.2.4.3.05, 1.2.5.3.05, 1.2.6.3.05","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_coverage_verification, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group03-crd_v221_hook_request_coverage_verification, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group03-crd_v221_hook_request_coverage_verification, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_coverage_verification, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group03-crd_v221_hook_request_coverage_verification, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_coverage_verification"
|
|
56
|
+
hl7.fhir.us.davinci-crd_2.2.1,hook-2-A,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/hooks.html#ci-c-hook-2,CRD Clients conforming to this implementation guide **SHALL** support at least one of the hooks,SHALL,CRD Client,false,,,"1.2.1, 1.2.2, 1.2.3, 1.2.4, 1.2.5, 1.2.6","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign"
|
|
57
|
+
hl7.fhir.us.davinci-crd_2.2.1,hook-2-B,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/hooks.html#ci-c-hook-2,"CRD Clients conforming to this implementation guide **SHALL** support ... (for order-centric hooks), at least one of the order resource types listed below",SHALL,CRD Client,false,,,"1.2.4, 1.2.5, 1.2.6","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign"
|
|
58
|
+
hl7.fhir.us.davinci-crd_2.2.1,hook-2-C,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/hooks.html#ci-c-hook-2,CRD Clients conforming to this implementation guide … **SHOULD** support all [order resource types listed below] that apply to the context of their system [for order centric hooks].,SHOULD,CRD Client,false,,,"",""
|
|
59
|
+
hl7.fhir.us.davinci-crd_2.2.1,hook-3,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/hooks.html#ci-c-hook-3,"For systems that support ordering products or services covered by one of the CRD-supported request types, such clients **SHALL** support the order-sign hook for the order types they support.",SHALL,CRD Client,true,,,"",""
|
|
60
|
+
hl7.fhir.us.davinci-crd_2.2.1,hook-5,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/hooks.html#ci-c-hook-5,CRD Clients and CRD Servers **MAY** choose to support additional hooks available in the registry on the [CDS Hooks continuous integration build](https://build.fhir.org/ig/HL7/cds-hooks-library) or custom hooks defined elsewhere.,MAY,"CRD Client,CRD Server",false,,,"",""
|
|
61
|
+
hl7.fhir.us.davinci-crd_2.2.1,hook-6,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/hooks.html#ci-c-hook-6,"When supporting hooks not covered by this guide, systems **SHOULD** adhere to the general conformance expectations defined in this specification for those additional hooks.",SHOULD,"CRD Client,CRD Server",true,,,"",""
|
|
62
|
+
hl7.fhir.us.davinci-crd_2.2.1,hook-7,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/hooks.html#ci-c-hook-7,CRD clients **SHALL** allow hook invocation to occur transparently as part of user workflow.,SHALL,CRD Client,false,,,"",""
|
|
63
|
+
hl7.fhir.us.davinci-crd_2.2.1,hook-8,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/hooks.html#ci-c-hook-8,"CRD clients **SHALL NOT** require transcription of order, appointment, or other data into a separate interface distinct from regular provider workflow unless performing ""what if"" situations.",SHALL NOT,CRD Client,true,,,"",""
|
|
64
|
+
hl7.fhir.us.davinci-crd_2.2.1,hook-11,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/hooks.html#ci-c-hook-11,The CRD Client **MAY** display to the user that the Coverage Requirements Discovery Service is unavailable.,MAY,CRD Client,false,,,"",""
|
|
65
|
+
hl7.fhir.us.davinci-crd_2.2.1,hook-12,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/hooks.html#ci-c-hook-12,"If additional information (e.g. number to call) is available, it **MAY** also be included in the message to the user.",MAY,CRD Client,true,,,"",""
|
|
66
|
+
hl7.fhir.us.davinci-crd_2.2.1,hook-15,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/hooks.html#ci-c-hook-15,A CRD client **MAY** opt to re-invoke a CRD hook either due to manual user intervention or automatically in the background if there is a reason to believe that a substantive change in the patient's record and/or coverage might produce a different CRD response.,MAY,CRD Client,true,,,"",""
|
|
67
|
+
hl7.fhir.us.davinci-crd_2.2.1,hook-17,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/hooks.html#ci-c-hook-17,"These hooks **MAY** return cards or system actions, but are not expected to, and CRD clients are free to ignore any cards or actions returned.",MAY,CRD Client,false,,,"",""
|
|
68
|
+
hl7.fhir.us.davinci-crd_2.2.1,hook-18,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/hooks.html#ci-c-hook-18,CRD clients **SHOULD** use the [configuration options](https://hl7.org/fhir/us/davinci-crd/2.2.1/en/deviations.html#new-hook-configuration-mechanism) to instruct CRD servers to not even try to return responses if the client does not intend to display/process them.,SHOULD,CRD Client,true,,,"",""
|
|
69
|
+
hl7.fhir.us.davinci-crd_2.2.1,hook-20,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/hooks.html#ci-c-hook-20,"The body of hook invocations **SHALL** conform to the [CRD CDSHooks Request logical model. Additionally, profiles are provided in a table for the hook sections below.",SHALL,CRD Client,false,,,"1.2.1.3.01, 1.2.2.3.01, 1.2.3.3.01, 1.2.4.3.01, 1.2.5.3.01, 1.2.6.3.01","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_conformance"
|
|
70
|
+
hl7.fhir.us.davinci-crd_2.2.1,hook-21,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/hooks.html#ci-c-hook-21,CRD clients **SHALL** ensure that data included in the hook invocation complies with the listed profiles.,SHALL,CRD Client,false,,,"1.2.1.3.01, 1.2.1.3.03, 1.2.2.3.01, 1.2.2.3.03, 1.2.3.3.01, 1.2.3.3.03, 1.2.4.3.01, 1.2.4.3.03, 1.2.5.3.01, 1.2.5.3.03, 1.2.6.3.01, 1.2.6.3.03","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_prefetch_profiles"
|
|
71
|
+
hl7.fhir.us.davinci-crd_2.2.1,hook-24,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/hooks.html#ci-c-hook-24,The 'context' field in invocations of the appointment-book hook **SHALL** conform to the logical model specified [here](https://hl7.org/fhir/us/davinci-crd/2.2.1/en/StructureDefinition-CRDAppointmentBookContext.html),SHALL,CRD Client,true,,,1.2.1.3.01,crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_conformance
|
|
72
|
+
hl7.fhir.us.davinci-crd_2.2.1,hook-26,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/hooks.html#ci-c-hook-26,"CRD clients and servers **SHALL**, at minimum, support returning and processing the [Coverage Information](https://hl7.org/fhir/us/davinci-crd/2.2.1/en/StructureDefinition-ext-coverage-information.html) system action for all invocations of the appointment-book hook.",SHALL,"CRD Client,CRD Server",false,,,1.2.1.4.03,crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group04-crd_v221_client_hook_response_support_coverage_information
|
|
73
|
+
hl7.fhir.us.davinci-crd_2.2.1,hook-27,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/hooks.html#ci-c-hook-27,The 'context' field in invocations of the encounter-start hook **SHALL** conform to the logical model specified [here](http://hl7.org/fhir/tools/1.1.2/StructureDefinition-CDSHookEncounterStartContext.html),SHALL,CRD Client,true,,,1.2.3.3.01,crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group03-crd_v221_hook_request_conformance
|
|
74
|
+
hl7.fhir.us.davinci-crd_2.2.1,hook-29,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/hooks.html#ci-c-hook-29,The 'context' field in invocations of the encounter-discharge hook **SHALL** conform to the logical model specified [here](http://hl7.org/fhir/tools/1.1.2/StructureDefinition-CDSHookEncounterDischargeContext.html),SHALL,CRD Client,true,,,1.2.2.3.01,crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group03-crd_v221_hook_request_conformance
|
|
75
|
+
hl7.fhir.us.davinci-crd_2.2.1,hook-31,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/hooks.html#ci-c-hook-31,The 'context' field in invocations of the order-dispatch hook **SHALL** conform to the logical model specified [here](https://hl7.org/fhir/us/davinci-crd/2.2.1/en/StructureDefinition-CRDOrderDispatchContext.html),SHALL,CRD Client,true,,,1.2.5.3.01,crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group03-crd_v221_hook_request_conformance
|
|
76
|
+
hl7.fhir.us.davinci-crd_2.2.1,hook-33,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/hooks.html#ci-c-hook-33,"CRD clients and servers **SHALL**, at minimum, support returning and processing the [Coverage Information](https://hl7.org/fhir/us/davinci-crd/2.2.1/en/StructureDefinition-ext-coverage-information.html) system action for all invocations of the order-dispatch hook.",SHALL,"CRD Client,CRD Server",false,,,1.2.5.4.03,crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group04-crd_v221_client_hook_response_support_coverage_information
|
|
77
|
+
hl7.fhir.us.davinci-crd_2.2.1,hook-35,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/hooks.html#ci-c-hook-35,The 'context' field in invocations of the order-select hook **SHALL** conform to the logical model specified [here](https://hl7.org/fhir/us/davinci-crd/2.2.1/en/StructureDefinition-CRDOrderSelectContext.html),SHALL,CRD Client,true,,,1.2.4.3.01,crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_conformance
|
|
78
|
+
hl7.fhir.us.davinci-crd_2.2.1,hook-36,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/hooks.html#ci-c-hook-36,"Where CRD Clients have an appropriate workflow and data capture mechanism, the order-select hook **MAY** be used in scenarios that do not involve creating a true order.",MAY,CRD Client,true,,,"",""
|
|
79
|
+
hl7.fhir.us.davinci-crd_2.2.1,hook-37,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/hooks.html#ci-c-hook-37,The 'context' field in invocations of the order-sign hook **SHALL** conform to the logical model specified [here](https://hl7.org/fhir/us/davinci-crd/2.2.1/en/StructureDefinition-CRDOrderSignContext.html),SHALL,CRD Client,true,,,1.2.6.3.01,crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_conformance
|
|
80
|
+
hl7.fhir.us.davinci-crd_2.2.1,hook-39,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/hooks.html#ci-c-hook-39,"CRD clients and servers **SHALL**, at minimum, support returning and processing the [Coverage Information](https://hl7.org/fhir/us/davinci-crd/2.2.1/en/StructureDefinition-ext-coverage-information.html) system action for all invocations of the order-select hook.",SHALL,"CRD Client,CRD Server",false,,,1.2.6.4.03,crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group04-crd_v221_client_hook_response_support_coverage_information
|
|
81
|
+
hl7.fhir.us.davinci-crd_2.2.1,impl-1,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/implementation.html#ci-c-impl-1,Clients that suppress 'default presumption' coverage-information of messages **SHALL** mitigate the potential for misinterpretation in the event CRD is unavailable.,SHALL,CRD Client,false,,,"",""
|
|
82
|
+
hl7.fhir.us.davinci-crd_2.2.1,impl-3,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/implementation.html#ci-c-impl-3,"Even if implemented using multiple components, there is still a requirement that the exchanges between the provider HIT (including any ePA coordinators) and the payer HIT (including any ePA coordinators) **SHALL** replicate all of the defined exchanges between provider and payer.",SHALL,"CRD Client,CRD Server",false,,,suite,crd_client_v221
|
|
83
|
+
hl7.fhir.us.davinci-crd_2.2.1,impl-4,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/implementation.html#ci-c-impl-4,"In situations where CRD clients are aware of the likely billing codes at the time of ordering, they **MAY** send these codes as additional CodeableConcept.coding repetitions to assist in server processing.",MAY,CRD Client,true,,,"",""
|
|
84
|
+
hl7.fhir.us.davinci-crd_2.2.1,metric-1,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/metrics.html#ci-c-metric-1,"Each of these IGs recommends a set of metrics that **SHOULD** or **MAY** be collected by their respective implementations to facilitate the evaluation of adoption, functionality, processes, and improved outcomes.",SHOULD,"CRD Client,CRD Server",false,,,"",""
|
|
85
|
+
hl7.fhir.us.davinci-crd_2.2.1,ops-1,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/operational.html#ci-c-ops-1,"CRD clients and servers **SHOULD** support encounter-start and order-select, both to allow payer caching and to allow payers to return useful responses when possible (e.g. coverage expired, service not covered) with the limited information available in those hooks.",SHOULD,"CRD Client,CRD Server",false,,,"",""
|
|
86
|
+
hl7.fhir.us.davinci-crd_2.2.1,prof-1,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/StructureDefinition-profile-appointment-no-order.html#ci-c-prof-1,CRD Clients **SHALL** use either this Appointment without Order profile and/or the [with-order](https://hl7.org/fhir/us/davinci-crd/2.2.1/en/StructureDefinition-profile-appointment-with-order.html) to provide `appointments` context objects to CRD Servers when invoking the [appointment-book](https://hl7.org/fhir/us/davinci-crd/2.2.1/en/hooks.html#appointment-book) hook as well as to [resolve other references](https://hl7.org/fhir/us/davinci-crd/2.2.1/en/foundation.html#additional-data-retrieval) to Appointment resources.,SHALL,CRD Client,false,,,1.2.1.3.01,crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_conformance
|
|
87
|
+
hl7.fhir.us.davinci-crd_2.2.1,prof-2,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/StructureDefinition-profile-appointment-with-order.html#ci-c-prof-2,CRD Clients **SHALL** use either this Appointment with Order and/or the [no-order](https://hl7.org/fhir/us/davinci-crd/2.2.1/en/StructureDefinition-profile-appointment-no-order.html) to provide `appointments` context objects to CRD Servers when invoking the [appointment-book](https://hl7.org/fhir/us/davinci-crd/2.2.1/en/hooks.html#appointment-book) hook as well as to [resolve other references](https://hl7.org/fhir/us/davinci-crd/2.2.1/en/foundation.html#additional-data-retrieval) to Appointment resources.,SHALL,CRD Client,false,,,1.2.1.3.01,crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_conformance
|
|
88
|
+
hl7.fhir.us.davinci-crd_2.2.1,prof-3,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/StructureDefinition-profile-communicationrequest.html#ci-c-prof-3,CRD Clients SHALL use the CRD CommunicationRequest profile to resolve references to CommunicationRequest resources passed to CRD Servers (e.g. selections context references) and to populate draftOrders context objects.,SHALL,CRD Client,false,,,"1.2.1.3.03, 1.2.2.3.03, 1.2.3.3.03, 1.2.4.3.01, 1.2.4.3.03, 1.2.5.3.03, 1.2.6.3.01, 1.2.6.3.03","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_prefetch_profiles"
|
|
89
|
+
hl7.fhir.us.davinci-crd_2.2.1,prof-4,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/StructureDefinition-profile-coverage.html#ci-c-prof-4,CRD Clients **SHALL** use the CRD Coverage profile to [resolve references](https://hl7.org/fhir/us/davinci-crd/2.2.1/en/foundation.html#additional-data-retrieval) to insurance Coverage resources passed to CRD Servers.,SHALL,CRD Client,false,,,"1.2.1.3.03, 1.2.2.3.03, 1.2.3.3.03, 1.2.4.3.03, 1.2.5.3.03, 1.2.6.3.03","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_prefetch_profiles"
|
|
90
|
+
hl7.fhir.us.davinci-crd_2.2.1,prof-5,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/StructureDefinition-profile-device.html#ci-c-prof-5,CRD Clients **SHALL** use the CRD Device profile to [resolve references](https://hl7.org/fhir/us/davinci-crd/2.2.1/en/foundation.html#additional-data-retrieval) to Device resources passed to CRD Servers.,SHALL,CRD Client,false,,,"1.2.1.3.03, 1.2.2.3.03, 1.2.3.3.03, 1.2.4.3.03, 1.2.5.3.03, 1.2.6.3.03","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_prefetch_profiles"
|
|
91
|
+
hl7.fhir.us.davinci-crd_2.2.1,prof-6,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/StructureDefinition-profile-devicerequest.html#ci-c-prof-6,CRD Clients SHALL use the CRD DeviceRequest profile to resolve references to DeviceRequest resources passed to CRD Servers (e.g. selections context references) and to populate draftOrders context objects.,SHALL,CRD Client,false,,,"1.2.1.3.03, 1.2.2.3.03, 1.2.3.3.03, 1.2.4.3.01, 1.2.4.3.03, 1.2.5.3.03, 1.2.6.3.01, 1.2.6.3.03","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_prefetch_profiles"
|
|
92
|
+
hl7.fhir.us.davinci-crd_2.2.1,prof-7,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/StructureDefinition-profile-encounter.html#ci-c-prof-7,"CRD Clients SHALL use the CRD Encounter profile to resolve references to Encounter resources passed to CRD Servers, including encounterId context references.",SHALL,CRD Client,false,,,"1.2.1.3.03, 1.2.2.3.03, 1.2.3.3.03, 1.2.4.3.03, 1.2.5.3.03, 1.2.6.3.03","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_prefetch_profiles"
|
|
93
|
+
hl7.fhir.us.davinci-crd_2.2.1,prof-8,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/StructureDefinition-profile-location.html#ci-c-prof-8,CRD Clients **SHALL** use the CRD Location profile to [resolve references](https://hl7.org/fhir/us/davinci-crd/2.2.1/en/foundation.html#additional-data-retrieval) to insurance Location resources passed to CRD Servers.,SHALL,CRD Client,false,,,"1.2.1.3.03, 1.2.2.3.03, 1.2.3.3.03, 1.2.4.3.03, 1.2.5.3.03, 1.2.6.3.03","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_prefetch_profiles"
|
|
94
|
+
hl7.fhir.us.davinci-crd_2.2.1,prof-9,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/StructureDefinition-profile-medicationrequest.html#ci-c-prof-9,CRD Clients SHALL use the CRD MedicationRequest profile to resolve references to MedicationRequest resources passed to CRD Servers (e.g. selections context references) and to populate draftOrders context objects,SHALL,CRD Client,false,,,"1.2.1.3.03, 1.2.2.3.03, 1.2.3.3.03, 1.2.4.3.01, 1.2.4.3.03, 1.2.5.3.03, 1.2.6.3.01, 1.2.6.3.03","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_prefetch_profiles"
|
|
95
|
+
hl7.fhir.us.davinci-crd_2.2.1,prof-10,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/StructureDefinition-profile-nutritionorder.html#ci-c-prof-10,CRD Clients SHALL use CRD NutritionOrder profile to resolve references to NutritionOrder resources passed to CRD Servers (e.g. selections context references) and to populate draftOrders context objects.,SHALL,CRD Client,false,,,"1.2.1.3.03, 1.2.2.3.03, 1.2.3.3.03, 1.2.4.3.01, 1.2.4.3.03, 1.2.5.3.03, 1.2.6.3.01, 1.2.6.3.03","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_prefetch_profiles"
|
|
96
|
+
hl7.fhir.us.davinci-crd_2.2.1,prof-11,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/StructureDefinition-profile-servicerequest.html#ci-c-prof-11,CRD Clients SHALL use the CRD ServiceRequest profile to resolve references to ServiceRequest resources passed to CRD Servers (e.g. selections context references) and to populate draftOrders context objects.,SHALL,CRD Client,false,,,"1.2.1.3.03, 1.2.2.3.03, 1.2.3.3.03, 1.2.4.3.01, 1.2.4.3.03, 1.2.5.3.03, 1.2.6.3.01, 1.2.6.3.03","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_prefetch_profiles"
|
|
97
|
+
hl7.fhir.us.davinci-crd_2.2.1,prof-12,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/StructureDefinition-profile-visionprescription.html#ci-c-prof-12,CRD Clients SHALL use the CRD VisionPrescription profile to resolve references to VisionPrescription resources passed to CRD Servers (e.g. selections context references) and to populate draftOrders context objects.,SHALL,CRD Client,false,,,"1.2.1.3.03, 1.2.2.3.03, 1.2.3.3.03, 1.2.4.3.01, 1.2.4.3.03, 1.2.5.3.03, 1.2.6.3.01, 1.2.6.3.03","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group03-crd_v221_hook_request_prefetch_profiles, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_prefetch_profiles"
|
|
98
|
+
hl7.fhir.us.davinci-crd_2.2.1,prof-13,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/StructureDefinition-profile-location.html#ci-c-prof-13,"If a Location is a fine-grained location such as a bed or room, the address **SHALL** be propagated from the higher-level location it is part of.",SHALL,CRD Client,true,,,1.3.02,crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_cross_hook-crd_v221_client_location_address_propagation
|
|
99
|
+
hl7.fhir.us.davinci-crd_2.2.1,prof-14,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/StructureDefinition-profile-medicationrequest.html#ci-c-prof-14,"While the codes for the medication are expected to be drawn from RxNorm, EHRs **MAY** send additional coding repetions to communicate other code systems (e.g. HCPCS J codes).",MAY,CRD Client,false,,,"",""
|
|
100
|
+
hl7.fhir.us.davinci-crd_2.2.1,resp-14,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/cards.html#ci-c-resp-14,Conformant CRD clients and services **SHALL** support the [Coverage Information](https://hl7.org/fhir/us/davinci-crd/2.2.1/en/conformancedetails.html#coverage-information-response-type) response type.,SHALL,"CRD Client,CRD Server",false,,,1.3.01,crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_cross_hook-crd_v221_client_card_must_support_coverage_information
|
|
101
|
+
hl7.fhir.us.davinci-crd_2.2.1,resp-15,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/cards.html#ci-c-resp-15,Conformant CRD clients and services **SHOULD** support the additional (non-coverage information) types defined by this guide.,SHOULD,"CRD Client,CRD Server",false,,,"",""
|
|
102
|
+
hl7.fhir.us.davinci-crd_2.2.1,resp-31,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/cards.html#ci-c-resp-31,"If a CRD client submits a claim related to an order for which it has received a coverage-information extension for the coverage type associated with the claim, that claim **SHALL** include the `coverage-assertion-id` in the form of a FHIR ServiceRequest or other Request resource with an embedded coverage-information extension as an attachment to the X12 837 submission and, if applicable, the satisfied-pa-id in the X12 837 REF-Prior Authorization segment.",SHALL,CRD Client,true,,,"",""
|
|
103
|
+
hl7.fhir.us.davinci-crd_2.2.1,resp-34,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/cards.html#ci-c-resp-34,Systems **MAY** make CRD calls to servers related to orders even if there is already a coverage assertion recorded on the order.,MAY,CRD Client,false,,,"",""
|
|
104
|
+
hl7.fhir.us.davinci-crd_2.2.1,resp-40,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/cards.html#ci-c-resp-40,"When a *coverage-information* response type indicates that additional clinical or patient documentation is needed and the CRD client supports DTR, CRD clients **SHALL** ensure that clinical users have an opportunity to launch their DTR solution as part of the current workflow.",SHALL,CRD Client,true,,,"",""
|
|
105
|
+
hl7.fhir.us.davinci-crd_2.2.1,resp-41,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/cards.html#ci-c-resp-41,CRD clients **SHOULD** allow clinical users to have an opportunity to launch their DTR solution but **SHOULD** make it clear that the information to be captured is non-clinical.,SHOULD,CRD Client,false,,,"",""
|
|
106
|
+
hl7.fhir.us.davinci-crd_2.2.1,resp-46,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/cards.html#ci-c-resp-46,"If a system action containing a coverage-information extension is returned, the CRD client **SHALL** retain that coverage-information extension and expose it as part of the Request resource in all subsequent communications with that payer, including communications made using DTR and PAS.",SHALL,CRD Client,true,,,"2.1.2.01, 2.2.2.01, 2.3.2.01","crd_client_v221-crd_v221_client_fhir_api-us_core_v311_fhir_api-crd_v221_us_core_311_client_update_verification-crd_v221_client_coverage_info_update, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-crd_v221_us_core_610_client_update_verification-crd_v221_client_coverage_info_update, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-crd_v221_us_core_700_client_update_verification-crd_v221_client_coverage_info_update"
|
|
107
|
+
hl7.fhir.us.davinci-crd_2.2.1,resp-48,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/cards.html#ci-c-resp-48,"CRD clients and servers **SHALL** support the new CDS Hooks system action functionality to cause annotations to automatically be stored on the relevant request, appointment, etc. without any user intervention.",SHALL,"CRD Client,CRD Server",false,,,"",""
|
|
108
|
+
hl7.fhir.us.davinci-crd_2.2.1,resp-49,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/cards.html#ci-c-resp-49,"In this case, the discrete information propagated into the order extension **SHALL** be available to the user for viewing. However, this might be managed with icons, flyovers, or alternate mechanisms than traditional CDS Hooks card rendering.",SHALL,CRD Client,false,,,"",""
|
|
109
|
+
hl7.fhir.us.davinci-crd_2.2.1,resp-50,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/cards.html#ci-c-resp-50,"CRD clients **MAY** be configured to not execute system actions under some circumstances, for example if the order has been cancelled or abandoned.",MAY,CRD Client,false,,,"",""
|
|
110
|
+
hl7.fhir.us.davinci-crd_2.2.1,resp-61,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/cards.html#ci-c-resp-61,CRD clients supporting the Request Form Completion response type **SHALL** support both the card and systemAction approach.,SHALL,CRD Client,true,,,"",""
|
|
111
|
+
hl7.fhir.us.davinci-crd_2.2.1,resp-64,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/cards.html#ci-c-resp-64,CRD clients **SHOULD** retain a copy of all completed forms for future reference.,SHOULD,CRD Client,false,,,"",""
|
|
112
|
+
hl7.fhir.us.davinci-crd_2.2.1,resp-67,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/cards.html#ci-c-resp-67,CRD clients supporting the Update Coverage Records response type **SHALL** support both the card and system action approach.,SHALL,CRD Client,false,,,"",""
|
|
113
|
+
hl7.fhir.us.davinci-crd_2.2.1,resp-68,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/cards.html#ci-c-resp-68,"If receiving a system action, a CRD client **MAY** opt to place the updated record in a holding area for human review rather than directly modifying their source of truth.",MAY,CRD Client,true,,,"",""
|
|
114
|
+
hl7.fhir.us.davinci-crd_2.2.1,sec-1,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/security.html#ci-c-sec-1,Implementers SHALL adhere to inherited security and privacy rules,SHALL,"CRD Client,CRD Server",false,,,"",""
|
|
115
|
+
hl7.fhir.us.davinci-crd_2.2.1,sec-2,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/security.html#ci-c-sec-2,"As per the CDS Hooks specification, communications between CRD clients and CRD servers **SHALL** use TLS.",SHALL,"CRD Client,CRD Server",false,,,"1.2.1.3.08, 1.2.2.3.08, 1.2.3.3.08, 1.2.4.3.08, 1.2.5.3.08, 1.2.6.3.08","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_secured_transport, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group03-crd_v221_hook_request_secured_transport, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group03-crd_v221_hook_request_secured_transport, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_secured_transport, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group03-crd_v221_hook_request_secured_transport, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_secured_transport"
|
|
116
|
+
hl7.fhir.us.davinci-crd_2.2.1,sec-3,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/security.html#ci-c-sec-3,CRD servers and CRD clients **SHOULD** enforce a minimum version and other TLS configuration requirements based on [HRex rules](http://hl7.org/fhir/us/davinci-hrex/1.2.0/security.html#exchange-security) for PHI exchange.,SHOULD,"CRD Client,CRD Server",false,,,"",""
|
|
117
|
+
hl7.fhir.us.davinci-crd_2.2.1,sec-4,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/security.html#ci-c-sec-4,CRD clients that support the Launch SMART Application Response Type **SHALL** support running applications that adhere to the SMART on FHIR [confidential app](https://hl7.org/fhir/smart-app-launch/STU2.2/app-launch.html#support-for-public-and-confidential-apps) profile.,SHALL,CRD Client,true,,,"",""
|
|
118
|
+
hl7.fhir.us.davinci-crd_2.2.1,sec-7,https://hl7.org/fhir/us/davinci-crd/2.2.1/en/security.html#ci-c-sec-7,CRD clients **SHALL** ensure that the resource identifiers exposed over the CRD interface are distinct from and have no determinable relationship with any business identifiers associated with those records.,SHALL,CRD Client,false,,,"",""
|
|
119
|
+
cds-hooks_3.0.0-ballot,1,https://cds-hooks.hl7.org/2026Jan/en/index.html#use-of-json,All data exchanged through production RESTful APIs MUST be sent and received as JSON (JavaScript Object Notation) structures.,SHALL,"Client,Service",,,,suite,crd_client_v221
|
|
120
|
+
cds-hooks_3.0.0-ballot,2,https://cds-hooks.hl7.org/2026Jan/en/index.html#use-of-json,All data exchanged through production RESTful APIs MUST be ... transmitted over HTTPS,SHALL,"Client,Service",,,,"1.2.1.3.08, 1.2.2.3.08, 1.2.3.3.08, 1.2.4.3.08, 1.2.5.3.08, 1.2.6.3.08","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_secured_transport, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group03-crd_v221_hook_request_secured_transport, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group03-crd_v221_hook_request_secured_transport, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_secured_transport, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group03-crd_v221_hook_request_secured_transport, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_secured_transport"
|
|
121
|
+
cds-hooks_3.0.0-ballot,221,https://cds-hooks.hl7.org/2026Jan/en/index.html#use-of-json,JSON comments and trailing commas SHOULD NOT be transmitted as they are not part of the JSON specification.,SHOULD NOT,"Client,Service",,,,"",""
|
|
122
|
+
cds-hooks_3.0.0-ballot,3,https://cds-hooks.hl7.org/2026Jan/en/index.html#use-of-json,"JSON elements SHALL NOT be null … [or] empty, unless otherwise specified (e.g. to indicate no guidance with an empty array of cards in the CDS Hooks response).",SHALL NOT,"Client,Service",,,,"1.2.1.3.01, 1.2.1.4.01, 1.2.2.3.01, 1.2.2.4.01, 1.2.3.3.01, 1.2.3.4.01, 1.2.4.3.01, 1.2.4.4.01, 1.2.5.3.01, 1.2.5.4.01, 1.2.6.3.01, 1.2.6.4.01","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group04-crd_v221_inferno_response_validation, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group04-crd_v221_inferno_response_validation, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group04-crd_v221_inferno_response_validation, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group04-crd_v221_inferno_response_validation, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group04-crd_v221_inferno_response_validation, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group04-crd_v221_inferno_response_validation"
|
|
123
|
+
cds-hooks_3.0.0-ballot,222,https://cds-hooks.hl7.org/2026Jan/en/index.html#use-of-json,"If a JSON attribute is defined as OPTIONAL, and does not have a value, implementers MUST omit it.",SHALL,"Client,Service",,,,"1.2.1.3.01, 1.2.1.4.01, 1.2.2.3.01, 1.2.2.4.01, 1.2.3.3.01, 1.2.3.4.01, 1.2.4.3.01, 1.2.4.4.01, 1.2.5.3.01, 1.2.5.4.01, 1.2.6.3.01, 1.2.6.4.01","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group04-crd_v221_inferno_response_validation, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group04-crd_v221_inferno_response_validation, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group04-crd_v221_inferno_response_validation, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group04-crd_v221_inferno_response_validation, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group04-crd_v221_inferno_response_validation, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group04-crd_v221_inferno_response_validation"
|
|
124
|
+
cds-hooks_3.0.0-ballot,223,https://cds-hooks.hl7.org/2026Jan/en/index.html#use-of-json,"Unless otherwise specified, JSON attribute values SHALL NOT be null or empty, so null, """", [], or {} are prohibited",SHALL NOT,"Client,Service",,,,"1.2.1.3.01, 1.2.1.4.01, 1.2.2.3.01, 1.2.2.4.01, 1.2.3.3.01, 1.2.3.4.01, 1.2.4.3.01, 1.2.4.4.01, 1.2.5.3.01, 1.2.5.4.01, 1.2.6.3.01, 1.2.6.4.01","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group04-crd_v221_inferno_response_validation, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group04-crd_v221_inferno_response_validation, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group04-crd_v221_inferno_response_validation, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group04-crd_v221_inferno_response_validation, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group04-crd_v221_inferno_response_validation, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group04-crd_v221_inferno_response_validation"
|
|
125
|
+
cds-hooks_3.0.0-ballot,224,https://cds-hooks.hl7.org/2026Jan/en/index.html#use-of-json,"If a JSON attribute is defined with as OPTIONAL, and does not have a value, implementers SHALL omit it.",SHALL,"Client,Service",,,,"1.2.1.3.01, 1.2.1.4.01, 1.2.2.3.01, 1.2.2.4.01, 1.2.3.3.01, 1.2.3.4.01, 1.2.4.3.01, 1.2.4.4.01, 1.2.5.3.01, 1.2.5.4.01, 1.2.6.3.01, 1.2.6.4.01","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group04-crd_v221_inferno_response_validation, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group04-crd_v221_inferno_response_validation, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group04-crd_v221_inferno_response_validation, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group04-crd_v221_inferno_response_validation, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group04-crd_v221_inferno_response_validation, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_conformance, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group04-crd_v221_inferno_response_validation"
|
|
126
|
+
cds-hooks_3.0.0-ballot,225,https://cds-hooks.hl7.org/2026Jan/en/index.html#capability-documentation,[C]lients SHALL indicate whether they support the actionSelectionBehavior feature,SHALL,Client,,,,"",""
|
|
127
|
+
cds-hooks_3.0.0-ballot,226,https://cds-hooks.hl7.org/2026Jan/en/index.html#capability-documentation,[C[lients … SHOULD document any other feature support necessary to ensure safe operation of CDS Services.,SHOULD,Client,,,,"",""
|
|
128
|
+
cds-hooks_3.0.0-ballot,15,https://cds-hooks.hl7.org/2026Jan/en/index.html#http-request-1,A CDS Client SHALL call a CDS Service by POSTing a JSON document to the service,SHALL,Client,,,,suite,crd_client_v221
|
|
129
|
+
cds-hooks_3.0.0-ballot,17,https://cds-hooks.hl7.org/2026Jan/en/index.html#http-request-1,"CDS Clients may add additional requirements for the triggering of a hook, based upon the user, workflow, CDS Service or other reasons (e.g. if the service is provided by a payer, the patient has active coverage with that payer).",MAY,Client,,,,"",""
|
|
130
|
+
cds-hooks_3.0.0-ballot,21,https://cds-hooks.hl7.org/2026Jan/en/index.html#http-request-1,"The [service invocation] request SHALL include a JSON POST body with the following input fields [including]:
|
|
131
|
+
- field: fhirAuthorization
|
|
132
|
+
- optionality: OPTIONAL
|
|
133
|
+
- type: object
|
|
134
|
+
- description: A structure holding an OAuth 2.0 bearer access token granting the CDS Service access to FHIR resources, along with supplemental information relating to the token.",MAY,Client,,,,"",""
|
|
135
|
+
cds-hooks_3.0.0-ballot,23,https://cds-hooks.hl7.org/2026Jan/en/index.html#http-request-1,"The [service invocation] request SHALL include a JSON POST body with the following input fields [including]:
|
|
136
|
+
- field: prefetch
|
|
137
|
+
- optionality: OPTIONAL
|
|
138
|
+
- type: object
|
|
139
|
+
- description: The FHIR data that was prefetched by the CDS Client",MAY,Client,,,,"",""
|
|
140
|
+
cds-hooks_3.0.0-ballot,25,https://cds-hooks.hl7.org/2026Jan/en/index.html#hookinstance,the hookInstance is globally unique,SHALL,Client,,,,1.3.04,crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_cross_hook-crd_v221_client_hook_instances_unique
|
|
141
|
+
cds-hooks_3.0.0-ballot,26,https://cds-hooks.hl7.org/2026Jan/en/index.html#hookinstance,the hookInstance ... should contain enough entropy to be un-guessable.,SHOULD,Client,,,,"",""
|
|
142
|
+
cds-hooks_3.0.0-ballot,30,https://cds-hooks.hl7.org/2.0/#providing-fhir-resources-to-a-cds-service,"The [prefetched] FHIR resources are passed as key-value pairs, with each key matching a key described in the discovery response, and each value being a FHIR resource. Note that in the case of searches, this resource may be a searchset Bundle.",SHALL,Client,true,,,"1.2.1.3.04, 1.2.2.3.04, 1.2.3.3.04, 1.2.4.3.04, 1.2.5.3.04, 1.2.6.3.04","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_prefetch_complete"
|
|
143
|
+
cds-hooks_3.0.0-ballot,32,https://cds-hooks.hl7.org/2.0/#providing-fhir-resources-to-a-cds-service,"Some CDS Clients MAY pass prefetched data, along with a bearer token for the CDS Service to use if additional resources are required.",MAY,Client,false,,,"",""
|
|
144
|
+
cds-hooks_3.0.0-ballot,35,https://cds-hooks.hl7.org/2026Jan/en/index.html#prefetch-template,"To allow for prefetch templates that are dependent on the workflow context, prefetch templates may include references to context using prefetch tokens.",MAY,"Client,Service",false,,,"",""
|
|
145
|
+
cds-hooks_3.0.0-ballot,37,https://cds-hooks.hl7.org/2026Jan/en/index.html#prefetch-template,"CDS Client MAY choose to honor zero, some, or all of the desired prefetch templates",MAY,Client,false,,,"",""
|
|
146
|
+
cds-hooks_3.0.0-ballot,38,https://cds-hooks.hl7.org/2026Jan/en/index.html#prefetch-template,A CDS Client MAY ... choose the most appropriate source for … [its prefetch] data,MAY,Client,false,,,"",""
|
|
147
|
+
cds-hooks_3.0.0-ballot,39,https://cds-hooks.hl7.org/2026Jan/en/index.html#prefetch-template,"[To avoid a network call,] the CDS Client MAY ... [use] prefetched data already in memory",MAY,Client,false,,,"",""
|
|
148
|
+
cds-hooks_3.0.0-ballot,40,https://cds-hooks.hl7.org/2026Jan/en/index.html#prefetch-template,"[To minimize the number of calls,] the CDS Client MAY compute an efficient set of prefetch templates from multiple CDS Services",MAY,Client,false,,,"",""
|
|
149
|
+
cds-hooks_3.0.0-ballot,41,https://cds-hooks.hl7.org/2026Jan/en/index.html#prefetch-template,The CDS Client MAY satisfy some of the desired prefetched templates via some internal service or even its own FHIR server.,MAY,Client,false,,,"",""
|
|
150
|
+
cds-hooks_3.0.0-ballot,42,https://cds-hooks.hl7.org/2026Jan/en/index.html#prefetch-template,"[When providing prefetched data, t]he CDS Client SHALL only provide access to resources that are within the user's authorized scope.",SHALL,Client,false,,,"",""
|
|
151
|
+
cds-hooks_3.0.0-ballot,231,https://cds-hooks.hl7.org/2026Jan/en/index.html#prefetch-template,"As part of preparing the request, a CDS Client processes each prefetch template it intends to satisfy by replacing the prefetch tokens in the prefetch template to construct a relative FHIR request URL.",SHALL,Client,false,,,"1.2.1.3.04, 1.2.2.3.04, 1.2.3.3.04, 1.2.4.3.04, 1.2.5.3.04, 1.2.6.3.04","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_prefetch_complete"
|
|
152
|
+
cds-hooks_3.0.0-ballot,43,https://cds-hooks.hl7.org/2026Jan/en/index.html#prefetch-template,The relative URL [constructed when a CDS client processes prefetch templates] may be appended to the base URL for the CDS Client's FHIR server and directly invoked,MAY,Client,false,,,"",""
|
|
153
|
+
cds-hooks_3.0.0-ballot,44,https://cds-hooks.hl7.org/2026Jan/en/index.html#prefetch-template,CDS Clients may use internal infrastructure to satisfy the [prefetch] request in the same way that invoking against the FHIR server would.,MAY,Client,false,,,"",""
|
|
154
|
+
cds-hooks_3.0.0-ballot,45,https://cds-hooks.hl7.org/2026Jan/en/index.html#prefetch-template,the prefetched data given to the CDS Service MUST be equivalent to the data the CDS Service would receive if it were making its own call to the CDS Client's FHIR server using the parameterized prefetch template.,SHALL,Client,false,,,"1.2.1.3.04, 1.2.2.3.04, 1.2.3.3.04, 1.2.4.3.04, 1.2.5.3.04, 1.2.6.3.04","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_prefetch_complete"
|
|
155
|
+
cds-hooks_3.0.0-ballot,46,https://cds-hooks.hl7.org/2026Jan/en/index.html#prefetch-template,Prefetch data for other services registered to the same hook MUST NOT be provided [to a CDS service that has not requested or is not authorized to receive it],SHALL NOT,Client,false,,,"1.2.1.3.04, 1.2.2.3.04, 1.2.3.3.04, 1.2.4.3.04, 1.2.5.3.04, 1.2.6.3.04","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_prefetch_complete"
|
|
156
|
+
cds-hooks_3.0.0-ballot,47,https://cds-hooks.hl7.org/2026Jan/en/index.html#prefetch-template,[CDS] services SHALL only receive the data they requested in their prefetch.,SHALL,Client,false,,,"1.2.1.3.04, 1.2.2.3.04, 1.2.3.3.04, 1.2.4.3.04, 1.2.5.3.04, 1.2.6.3.04","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_prefetch_complete"
|
|
157
|
+
cds-hooks_3.0.0-ballot,232,https://cds-hooks.hl7.org/2026Jan/en/index.html#prefetch-template,The resulting response [of the prefetch query] is passed along to the CDS Service using the prefetch parameter,SHALL,Client,false,,,"1.2.1.3.04, 1.2.2.3.04, 1.2.3.3.04, 1.2.4.3.04, 1.2.5.3.04, 1.2.6.3.04","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_prefetch_complete"
|
|
158
|
+
cds-hooks_3.0.0-ballot,48,https://cds-hooks.hl7.org/2026Jan/en/index.html#prefetch-template,CDS Client MAY paginate prefetch results,MAY,Client,false,,,"",""
|
|
159
|
+
cds-hooks_3.0.0-ballot,50,https://cds-hooks.hl7.org/2026Jan/en/index.html#prefetch-template,"If the CDS Client encounters errors prefetching the requested data, OperationOutcome(s) SHOULD be used to communicate those errors to prevent the CDS Service from incurring an unneeded follow-up query.",SHOULD,Client,true,,,"",""
|
|
160
|
+
cds-hooks_3.0.0-ballot,51,https://cds-hooks.hl7.org/2026Jan/en/index.html#prefetch-template,CDS Clients MUST omit the prefetch key if relevant details cannot be provided (e.g. intermittent connectivity issues),SHALL,Client,false,,,"",""
|
|
161
|
+
cds-hooks_3.0.0-ballot,53,https://cds-hooks.hl7.org/2026Jan/en/index.html#prefetch-template,"If the CDS Client has no data to populate a template prefetch key, the prefetch template key MUST have a value of null. In case the prefetch url is a single-resource request, the search result may be null, otherwise it is a search and could be a bundle with zero entries.",SHALL,Client,true,,,"1.2.1.3.04, 1.2.2.3.04, 1.2.3.3.04, 1.2.4.3.04, 1.2.5.3.04, 1.2.6.3.04","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_prefetch_complete"
|
|
162
|
+
cds-hooks_3.0.0-ballot,233,https://cds-hooks.hl7.org/2026Jan/en/index.html#prefetch-tokens-containing-simpler-fhirpath,"[When evaluating prefetch tokens] CDS Clients can support a limited, targeted subset of FHIRPath aligned with [x-fhir-query](https://hl7.org/fhir/r5/fhir-xquery.html)...:
|
|
163
|
+
- the 'context' object, which corresponds to the context element passed in the CDS Hooks call
|
|
164
|
+
- variables that correspond to the names of prior prefetch templates
|
|
165
|
+
- simple chaining through element paths
|
|
166
|
+
- the following FHIRPath functions: ofType(), resolve(), today()
|
|
167
|
+
- the '+' and '-' math options",MAY,Client,,,,"",""
|
|
168
|
+
cds-hooks_3.0.0-ballot,235,https://cds-hooks.hl7.org/2026Jan/en/index.html#simple-fhirpath-for-relative-dates,"[When evaluating prefetch tokens] CDS Clients SHOULD support:
|
|
169
|
+
- the [FHIRPath `today()`](https://hl7.org/fhirpath/N1/index.html#current-date-and-time-functions) function
|
|
170
|
+
- [addition](https://hl7.org/fhirpath/N1/index.html#addition-2) and [subtraction](https://hl7.org/fhirpath/N1/index.html#subtraction-2) of quantity unit [days](https://hl7.org/fhirpath/N1/index.html#datetime-arithmetic),",SHOULD,Client,,,,"",""
|
|
171
|
+
cds-hooks_3.0.0-ballot,237,https://cds-hooks.hl7.org/2026Jan/en/index.html#simpler-fhirpath-support-for-querystring-syntax,[When evaluating prefetch tokens] CDS Clients SHOULD support paths to References,SHOULD,Client,,,,"",""
|
|
172
|
+
cds-hooks_3.0.0-ballot,238,https://cds-hooks.hl7.org/2026Jan/en/index.html#simpler-fhirpath-support-for-querystring-syntax,[When evaluating prefetch tokens] CDS Clients … MAY support paths to any element within a FHIR resource in context.,MAY,Client,,,,"",""
|
|
173
|
+
cds-hooks_3.0.0-ballot,239,https://cds-hooks.hl7.org/2026Jan/en/index.html#simpler-fhirpath-support-for-querystring-syntax,[When evaluating prefetch tokens] FHIRPath collections of simple data types are represented as comma-delimited strings,SHALL,Client,true,,,1.3.03,crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_cross_hook-crd_v221_client_fhir_path_collection_as_comma_delimited_string
|
|
174
|
+
cds-hooks_3.0.0-ballot,240,https://cds-hooks.hl7.org/2026Jan/en/index.html#simpler-fhirpath-support-for-querystring-syntax,[When evaluating prefetch tokens] other prefetch parameters can be referenced in token expressions as FHIRPath variables by placing '%' in front of the prefetch parameter name.,SHALL,Client,,,,"1.2.1.3.04, 1.2.2.3.04, 1.2.3.3.04, 1.2.4.3.04, 1.2.5.3.04, 1.2.6.3.04","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group03-crd_v221_hook_request_prefetch_complete, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_prefetch_complete"
|
|
175
|
+
cds-hooks_3.0.0-ballot,242,https://cds-hooks.hl7.org/2026Jan/en/index.html#simpler-fhirpath-support-for-querystring-syntax,[When evaluating prefetch tokens a] prefetch token ... Contain[ing] multiple path selectors delimited with pipes [SHALL be interpretted as a union of the individual parts],SHALL,Client,,,,1.3.03,crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_cross_hook-crd_v221_client_fhir_path_collection_as_comma_delimited_string
|
|
176
|
+
cds-hooks_3.0.0-ballot,63,https://cds-hooks.hl7.org/2026Jan/en/index.html#fhir-resource-access,"[When executing a CDS request on behalf of a user,] the data to which the CDS Service is given access by the CDS Client MUST be limited to the same restrictions and authorizations afforded the current user.",SHALL,Client,true,,,"",""
|
|
177
|
+
cds-hooks_3.0.0-ballot,64,https://cds-hooks.hl7.org/2026Jan/en/index.html#fhir-resource-access,"[When executing a CDS request on behalf of a user,] the access token SHALL be scoped to: The CDS Service being invoked [and] the current user",SHALL,Client,true,,,"",""
|
|
178
|
+
cds-hooks_3.0.0-ballot,71,https://cds-hooks.hl7.org/2026Jan/en/index.html#passing-the-access-token-to-the-cds-service,"[When sending a fhirAuthorization request parameter and] the access token is restricted to a specific patient, [the] patient field SHOULD be populated to identify the FHIR id of that patient [as a] string data type",SHOULD,Client,true,,,"",""
|
|
179
|
+
cds-hooks_3.0.0-ballot,72,https://cds-hooks.hl7.org/2026Jan/en/index.html#passing-the-access-token-to-the-cds-service,The `expires_in` value is established by the authorization server and SHOULD BE very short lived,SHOULD,Client,false,,,"",""
|
|
180
|
+
cds-hooks_3.0.0-ballot,73,https://cds-hooks.hl7.org/2026Jan/en/index.html#passing-the-access-token-to-the-cds-service,CDS Clients SHOULD revoke an issued access token upon the completion of the CDS Hooks request/response to limit the validity period of the token.,SHOULD,Client,true,,,"",""
|
|
181
|
+
cds-hooks_3.0.0-ballot,79,https://cds-hooks.hl7.org/2026Jan/en/index.html#card-attributes,[When receiving a card object] the uuid field SHALL be included in any subsequent calls to the CDS service's feedback endpoint.,SHALL,Client,true,,,"",""
|
|
182
|
+
cds-hooks_3.0.0-ballot,82,https://cds-hooks.hl7.org/2026Jan/en/index.html#card-attributes,[When sending a card object] the uuid field MAY be used for auditing and logging cards,MAY,Client,true,,,"",""
|
|
183
|
+
cds-hooks_3.0.0-ballot,86,https://cds-hooks.hl7.org/2026Jan/en/index.html#card-attributes,"For non-urgent cards, the CDS Client MAY hide [the information from the detail field] until the user clicks a link like ""view more details.",MAY,Client,true,,,"",""
|
|
184
|
+
cds-hooks_3.0.0-ballot,89,https://cds-hooks.hl7.org/2026Jan/en/index.html#card-attributes,"[When sending a card object,] the CDS Client MAY use [the indicator] field to help make UI display decisions such as sort order or coloring.",MAY,Client,true,,,"",""
|
|
185
|
+
cds-hooks_3.0.0-ballot,91,https://cds-hooks.hl7.org/2026Jan/en/index.html#card-attributes,"[When receiving a card object,] the source field [/ source object] should be the primary source of guidance for the decision support the card represents.",SHOULD,Client,true,,,"",""
|
|
186
|
+
cds-hooks_3.0.0-ballot,97,https://cds-hooks.hl7.org/2026Jan/en/index.html#card-attributes,"[When receiving a card object,] CDS Clients that do not understand the value [in the selectionBehavior field] MUST treat the card as an error.",SHALL,Client,true,,,"",""
|
|
187
|
+
cds-hooks_3.0.0-ballot,101,https://cds-hooks.hl7.org/2026Jan/en/index.html#card-attributes,"[When receiving a card object,] if override reasons are present … the CDS Client SHOULD present these reasons to the clinician when they dismiss a card.",SHOULD,Client,true,,,"",""
|
|
188
|
+
cds-hooks_3.0.0-ballot,102,https://cds-hooks.hl7.org/2026Jan/en/index.html#card-attributes,"[When receiving a card object,] if override reasons are present … a CDS Client MAY augment the override reasons presented to the user with its own reasons.",MAY,Client,true,,,"",""
|
|
189
|
+
cds-hooks_3.0.0-ballot,114,https://cds-hooks.hl7.org/2026Jan/en/index.html#source,"[When receiving a Source object,] the CDS Client may ignore or scale the image during display as appropriate for user experience.",MAY,Client,true,,,"",""
|
|
190
|
+
cds-hooks_3.0.0-ballot,125,https://cds-hooks.hl7.org/2026Jan/en/index.html#suggestion,"Within a suggestion, all actions … [SHALL use] AND [logic], such that a user selecting a suggestion selects all of the actions within it [unless a different behavior is indicated by the `actionSelectionBehavior` field].",SHALL,Client,true,,,"",""
|
|
191
|
+
cds-hooks_3.0.0-ballot,126,https://cds-hooks.hl7.org/2026Jan/en/index.html#suggestion,"[When receiving a Suggestion object,] When a suggestion contains multiple actions, the actions SHOULD be processed as per FHIR's rules for processing [transactions](https://hl7.org/fhir/http.html#trules) with the CDS Client's fhirServer as the base url for the inferred full URL of the transaction bundle entries. (Specifically, deletes happen first, then creates, then updates).",SHOULD,Client,true,,,"",""
|
|
192
|
+
cds-hooks_3.0.0-ballot,247,https://cds-hooks.hl7.org/2026Jan/en/index.html#suggestion,[When receiving a Suggestion object Clients MAY not support the `actionSelectionBehavior` field],MAY,Client,,,,"",""
|
|
193
|
+
cds-hooks_3.0.0-ballot,129,https://cds-hooks.hl7.org/2026Jan/en/index.html#action,"[When receiveing an Action object,] the description field MAY be presented to the end-user",MAY,Client,true,,,"",""
|
|
194
|
+
cds-hooks_3.0.0-ballot,248,https://cds-hooks.hl7.org/2026Jan/en/index.html#action,"[When receiveing an Action object, t]he CDS Client may reject conflicting changes, for example, due to [concurrency](https://www.hl7.org/fhir/http.html#concurrency).",MAY,Client,,,,"",""
|
|
195
|
+
cds-hooks_3.0.0-ballot,137,https://cds-hooks.hl7.org/2026Jan/en/index.html#reasons-for-rejecting-a-card,CDS Clients MAY incorporate [the card.overrideReason.display] into their user interface,MAY,Client,false,,,"",""
|
|
196
|
+
cds-hooks_3.0.0-ballot,143,https://cds-hooks.hl7.org/2026Jan/en/index.html#link,"[When receiving a Link object and the link.type field is smart,] CDS Client should ensure the SMART app launch URL is populated with the appropriate SMART launch parameters.",SHOULD,Client,true,,,"",""
|
|
197
|
+
cds-hooks_3.0.0-ballot,251,https://cds-hooks.hl7.org/2026Jan/en/index.html#link,[When receiving a Link object] CDS Clients SHOULD support passing appCOntext from the CDS Service to a launched SMART app.,SHOULD,Client,,,,"",""
|
|
198
|
+
cds-hooks_3.0.0-ballot,255,https://cds-hooks.hl7.org/2026Jan/en/index.html#system-action,[When receiving a systemAction] actions aren't displayed to users in cards,SHOULD NOT,Client,,,,"",""
|
|
199
|
+
cds-hooks_3.0.0-ballot,256,https://cds-hooks.hl7.org/2026Jan/en/index.html#system-action,[When receiving a systemAction] actions … can be automatically applied without requiring user intervention … and the CDS Client is expected to process them.,SHOULD,Client,,,,"",""
|
|
200
|
+
cds-hooks_3.0.0-ballot,149,https://cds-hooks.hl7.org/2026Jan/en/index.html#feedback,a CDS Client SHOULD be capable of sending feedback [to send suggestion analytics to the CDS service],SHOULD,Client,false,,,"",""
|
|
201
|
+
cds-hooks_3.0.0-ballot,150,https://cds-hooks.hl7.org/2026Jan/en/index.html#feedback,CDS Clients should report ... end-user interactions as feedback.,SHOULD,Client,false,,,"",""
|
|
202
|
+
cds-hooks_3.0.0-ballot,151,https://cds-hooks.hl7.org/2026Jan/en/index.html#feedback,A CDS Client provides feedback by POSTing a JSON document,SHALL,Client,false,,,"",""
|
|
203
|
+
cds-hooks_3.0.0-ballot,152,https://cds-hooks.hl7.org/2026Jan/en/index.html#feedback,"The [service's] feedback endpoint can ([SHALL]) be constructed from the CDS Service endpoint and a path segment of ""feedback"" as {baseUrl}/cds-services/{service.id}/feedback",SHALL,Client,true,,,"",""
|
|
204
|
+
cds-hooks_3.0.0-ballot,153,https://cds-hooks.hl7.org/2026Jan/en/index.html#feedback,"The feedback endpoint [for submission] can ([SHALL]) be constructed from the CDS Service endpoint and a path segment of ""feedback"" as {baseUrl}/cds-services/{service.id}/feedback",SHALL,Client,false,,,"",""
|
|
205
|
+
cds-hooks_3.0.0-ballot,154,https://cds-hooks.hl7.org/2026Jan/en/index.html#feedback,The request to the feedback endpoint SHALL be an object containing an array [of [Feedback](https://cds-hooks.hl7.org/2.0/#feedback) objects],SHALL,Client,false,,,"",""
|
|
206
|
+
cds-hooks_3.0.0-ballot,155,https://cds-hooks.hl7.org/2026Jan/en/index.html#feedback,"[When sending a feedback object,] the card field is required [and SHALL be a] string data type [containing] the card.uuid from the CDS Hooks response",SHALL,Client,true,,,"",""
|
|
207
|
+
cds-hooks_3.0.0-ballot,156,https://cds-hooks.hl7.org/2026Jan/en/index.html#feedback,"[When sending a feedback object,] the outcome field is required [and SHALL be a] string data type [with a value of either] accepted or overridden",SHALL,Client,true,,,"",""
|
|
208
|
+
cds-hooks_3.0.0-ballot,158,https://cds-hooks.hl7.org/2026Jan/en/index.html#feedback,"[When sending a feedback object,] the acceptedSuggestions field is an array of json objects identifying one or more of the user's AcceptedSuggestions [and is r]equired [when feedback.outcome is accepted]",SHALL,Client,true,,,"",""
|
|
209
|
+
cds-hooks_3.0.0-ballot,159,https://cds-hooks.hl7.org/2026Jan/en/index.html#feedback,"[When sending a feedback object,] the overrideReason field is a overrideReason object",SHALL,Client,true,,,"",""
|
|
210
|
+
cds-hooks_3.0.0-ballot,160,https://cds-hooks.hl7.org/2026Jan/en/index.html#feedback,"[When sending a feedback object,] the overrideReason field is optional",MAY,Client,true,,,"",""
|
|
211
|
+
cds-hooks_3.0.0-ballot,161,https://cds-hooks.hl7.org/2026Jan/en/index.html#feedback,"[When sending a feedback object,] the outcomeTimestamp field is required [and SHALL be a] string data type [using the] [ISO8601](https://en.wikipedia.org/wiki/ISO_8601) representation of the date and time in Coordinated Universal Time (UTC) when action was taken on the card, as profiled in [section 5.6 of RFC3339](https://datatracker.ietf.org/doc/html/rfc3339#section-5.6)",SHALL,Client,true,,,"",""
|
|
212
|
+
cds-hooks_3.0.0-ballot,162,https://cds-hooks.hl7.org/2026Jan/en/index.html#suggestion-accepted,"[When sending an AcceptedSuggestion object], the id field is required [and SHALL be a] string data type [containing] card.suggestion.uuid from the CDS Hooks response",SHALL,Client,true,,,"",""
|
|
213
|
+
cds-hooks_3.0.0-ballot,163,https://cds-hooks.hl7.org/2026Jan/en/index.html#suggestion-accepted,"If either the card or the suggestion has no uuid, the CDS Client does not send a [feedback] notification",SHALL,Client,true,,,"",""
|
|
214
|
+
cds-hooks_3.0.0-ballot,164,https://cds-hooks.hl7.org/2026Jan/en/index.html#card-ignored,If the end-user doesn't interact with the CDS Service's card at all … the CDS Client [SHALL NOT] inform the CDS Service of the rejected guidance,SHALL NOT,Client,true,,,"",""
|
|
215
|
+
cds-hooks_3.0.0-ballot,257,https://cds-hooks.hl7.org/2026Jan/en/index.html#overridden-guidance,A CDS Client may enable the end user to override guidance without providing an explicit reason for doing so. The CDS Client can inform the service when a card was dismissed by specifying an outcome of overridden without providing an overrideReason.,MAY,Client,,,,"",""
|
|
216
|
+
cds-hooks_3.0.0-ballot,165,https://cds-hooks.hl7.org/2026Jan/en/index.html#overridereason,"[When sending a overrideReason object,] the reason field is required if user selected an override reason from the list of reasons provided in the Card [and SHALL be a] coding object",SHALL,Client,true,,,"",""
|
|
217
|
+
cds-hooks_3.0.0-ballot,166,https://cds-hooks.hl7.org/2026Jan/en/index.html#overridereason,"[When sending a overrideReason object,] the userComment field is a string data type",SHALL,Client,true,,,"",""
|
|
218
|
+
cds-hooks_3.0.0-ballot,167,https://cds-hooks.hl7.org/2026Jan/en/index.html#overridereason,"[When sending a overrideReason object,] the userComment field is optional [and contains a] further explain[ation of] why the card was rejected with free text.",MAY,Client,true,,,"",""
|
|
219
|
+
cds-hooks_3.0.0-ballot,168,https://cds-hooks.hl7.org/2026Jan/en/index.html#security-and-safety,"All data exchanged through the RESTful APIs MUST be transmitted over channels secured using the Hypertext Transfer Protocol (HTTP) over Transport Layer Security (TLS), also known as HTTPS and defined in [RFC2818](https://tools.ietf.org/html/rfc2818)",SHALL,"Client,Service",false,,,"1.2.1.3.08, 1.2.2.3.08, 1.2.3.3.08, 1.2.4.3.08, 1.2.5.3.08, 1.2.6.3.08","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_secured_transport, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group03-crd_v221_hook_request_secured_transport, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group03-crd_v221_hook_request_secured_transport, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_secured_transport, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group03-crd_v221_hook_request_secured_transport, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_secured_transport"
|
|
220
|
+
cds-hooks_3.0.0-ballot,169,https://cds-hooks.hl7.org/2026Jan/en/index.html#trusting-cds-services,"Each CDS Client vendor/provider SHOULD maintain an ""allow list"" (and/or ""deny list"") of the CDS Services it has vetted",SHOULD,Client,false,,,"",""
|
|
221
|
+
cds-hooks_3.0.0-ballot,170,https://cds-hooks.hl7.org/2026Jan/en/index.html#trusting-cds-services,"Each CDS Client vendor/provider SHOULD maintain an ""allow list"" (and/or ""deny list"") of ... the Card links that have been deemed safe to display from within the CDS Client context",SHOULD,Client,false,,,"",""
|
|
222
|
+
cds-hooks_3.0.0-ballot,171,https://cds-hooks.hl7.org/2026Jan/en/index.html#trusting-cds-services,The CDS Service can be registered with the CDS Client's authorization server,MAY,Client,false,,,"",""
|
|
223
|
+
cds-hooks_3.0.0-ballot,172,https://cds-hooks.hl7.org/2026Jan/en/index.html#trusting-cds-services,Every interaction between a CDS Client and a CDS Service is initiated by the CDS Client sending a service request to a CDS Service endpoint protected using the [Transport Layer Security protocol] (https://tools.ietf.org/html/rfc5246),SHALL,Client,false,,,"1.2.1.3.08, 1.2.2.3.08, 1.2.3.3.08, 1.2.4.3.08, 1.2.5.3.08, 1.2.6.3.08","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_secured_transport, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group03-crd_v221_hook_request_secured_transport, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group03-crd_v221_hook_request_secured_transport, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_secured_transport, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group03-crd_v221_hook_request_secured_transport, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_secured_transport"
|
|
224
|
+
cds-hooks_3.0.0-ballot,173,https://cds-hooks.hl7.org/2026Jan/en/index.html#trusting-cds-services,CDS Client SHALL deny access to a requested resource if it is outside the user's authorized scope,SHALL,Client,false,,,"",""
|
|
225
|
+
cds-hooks_3.0.0-ballot,174,https://cds-hooks.hl7.org/2026Jan/en/index.html#trusting-cds-services,"If a CDS Client is satisfying prefetch requests from a CDS Service or sends a non-null fhirAuthorization object to a CDS Service so that it can call the FHIR server, the CDS Service MUST be pre-registered with the authorization server protecting access to the FHIR server",SHALL,Client,true,,,1.1.02,crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_registration-crd_v221_client_service_registration_attestation
|
|
226
|
+
cds-hooks_3.0.0-ballot,178,https://cds-hooks.hl7.org/2026Jan/en/index.html#trusting-cds-clients,"Each time a CDS Client transmits a request to a CDS Service which requires authentication, the request MUST include an Authorization header presenting the JWT as a “Bearer” token:
|
|
227
|
+
Authorization: Bearer {{JWT}}",SHALL,Client,true,,,"1.2.1.2.01, 1.2.2.2.01, 1.2.3.2.01, 1.2.4.2.01, 1.2.5.2.01, 1.2.6.2.01","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group02-crd_v221_decode_auth_token, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group02-crd_v221_decode_auth_token, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group02-crd_v221_decode_auth_token, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group02-crd_v221_decode_auth_token, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group02-crd_v221_decode_auth_token, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group02-crd_v221_decode_auth_token"
|
|
228
|
+
cds-hooks_3.0.0-ballot,179,https://cds-hooks.hl7.org/2026Jan/en/index.html#trusting-cds-clients,mutual TLS MAY be used alongside JSON web tokens to establish trust of the CDS Client by the CDS Service,MAY,"Client,Service",false,,,"",""
|
|
229
|
+
cds-hooks_3.0.0-ballot,180,https://cds-hooks.hl7.org/2026Jan/en/index.html#trusting-cds-clients,"The CDS Client MUST use its private key to digitally sign the JWT, using the [JSON Web Signatures (rfc7515)](https://tools.ietf.org/html/rfc7515) standard",SHALL,Client,false,,,"1.2.1.2.04, 1.2.2.2.04, 1.2.3.2.04, 1.2.4.2.04, 1.2.5.2.04, 1.2.6.2.04","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group02-crd_v221_token_payload, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group02-crd_v221_token_payload, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group02-crd_v221_token_payload, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group02-crd_v221_token_payload, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group02-crd_v221_token_payload, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group02-crd_v221_token_payload"
|
|
230
|
+
cds-hooks_3.0.0-ballot,181,https://cds-hooks.hl7.org/2026Jan/en/index.html#trusting-cds-clients,"[When sending a JWT header,] the alg field is required [and SHALL be a] string data type [containing] the cryptographic algorithm used to sign this JWT.",SHALL,Client,true,,,"1.2.1.2.04, 1.2.2.2.04, 1.2.3.2.04, 1.2.4.2.04, 1.2.5.2.04, 1.2.6.2.04","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group02-crd_v221_token_payload, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group02-crd_v221_token_payload, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group02-crd_v221_token_payload, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group02-crd_v221_token_payload, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group02-crd_v221_token_payload, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group02-crd_v221_token_payload"
|
|
231
|
+
cds-hooks_3.0.0-ballot,182,https://cds-hooks.hl7.org/2026Jan/en/index.html#trusting-cds-clients,"[When sending a JWT header,] the kid field is required [and SHALL be a] string data type [containing] the identifier of the key-pair used to sign this JWT.",SHALL,Client,true,,,"1.2.1.2.03, 1.2.2.2.03, 1.2.3.2.03, 1.2.4.2.03, 1.2.5.2.03, 1.2.6.2.03","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group02-crd_v221_token_header, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group02-crd_v221_token_header, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group02-crd_v221_token_header, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group02-crd_v221_token_header, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group02-crd_v221_token_header, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group02-crd_v221_token_header"
|
|
232
|
+
cds-hooks_3.0.0-ballot,183,https://cds-hooks.hl7.org/2026Jan/en/index.html#trusting-cds-clients,"[When sending a JWT header,] the kid field MUST be unique within the CDS Client's JWK Set.",SHALL,Client,true,,,"1.2.1.2.02, 1.2.2.2.02, 1.2.3.2.02, 1.2.4.2.02, 1.2.5.2.02, 1.2.6.2.02","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group02-crd_v221_retrieve_jwks, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group02-crd_v221_retrieve_jwks, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group02-crd_v221_retrieve_jwks, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group02-crd_v221_retrieve_jwks, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group02-crd_v221_retrieve_jwks, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group02-crd_v221_retrieve_jwks"
|
|
233
|
+
cds-hooks_3.0.0-ballot,184,https://cds-hooks.hl7.org/2026Jan/en/index.html#trusting-cds-clients,"[When sending a JWT header,] the typ field is required [and SHALL be a] string data type and SHALL be 'JWT'",SHALL,Client,true,,,"1.2.1.2.03, 1.2.2.2.03, 1.2.3.2.03, 1.2.4.2.03, 1.2.5.2.03, 1.2.6.2.03","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group02-crd_v221_token_header, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group02-crd_v221_token_header, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group02-crd_v221_token_header, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group02-crd_v221_token_header, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group02-crd_v221_token_header, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group02-crd_v221_token_header"
|
|
234
|
+
cds-hooks_3.0.0-ballot,185,https://cds-hooks.hl7.org/2026Jan/en/index.html#trusting-cds-clients,"[When sending a JWT header,] the jku field is a url data type [containing] the URL to the JWK Set containing the public key(s)",SHALL,Client,true,,,"1.2.1.2.02, 1.2.2.2.02, 1.2.3.2.02, 1.2.4.2.02, 1.2.5.2.02, 1.2.6.2.02","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group02-crd_v221_retrieve_jwks, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group02-crd_v221_retrieve_jwks, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group02-crd_v221_retrieve_jwks, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group02-crd_v221_retrieve_jwks, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group02-crd_v221_retrieve_jwks, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group02-crd_v221_retrieve_jwks"
|
|
235
|
+
cds-hooks_3.0.0-ballot,186,https://cds-hooks.hl7.org/2026Jan/en/index.html#trusting-cds-clients,"[When sending a JWT header,] the jku field is optional",MAY,Client,true,,,"",""
|
|
236
|
+
cds-hooks_3.0.0-ballot,187,https://cds-hooks.hl7.org/2026Jan/en/index.html#trusting-cds-clients,"[When sending a JWT payload,] the iss field is required [and SHALL be a] string data type [containing] the URI of the issuer of the JWT",SHALL,Client,true,,,"1.2.1.2.04, 1.2.2.2.04, 1.2.3.2.04, 1.2.4.2.04, 1.2.5.2.04, 1.2.6.2.04","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group02-crd_v221_token_payload, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group02-crd_v221_token_payload, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group02-crd_v221_token_payload, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group02-crd_v221_token_payload, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group02-crd_v221_token_payload, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group02-crd_v221_token_payload"
|
|
237
|
+
cds-hooks_3.0.0-ballot,188,https://cds-hooks.hl7.org/2026Jan/en/index.html#trusting-cds-clients,"The JWT MAY be self-issued by the CDS Client, or MAY be issued by a third-party identity provider.",MAY,Client,true,,,"",""
|
|
238
|
+
cds-hooks_3.0.0-ballot,189,https://cds-hooks.hl7.org/2026Jan/en/index.html#trusting-cds-clients,"[When sending a JWT payload,] the aud field is required [and SHALL be a] string data type or an array of strings [per [rfc7519](https://tools.ietf.org/html/rfc7519#section-4.1.3) containing] the CDS Service endpoint that is being called by the CDS Client",SHALL,Client,true,,,"1.2.1.2.04, 1.2.2.2.04, 1.2.3.2.04, 1.2.4.2.04, 1.2.5.2.04, 1.2.6.2.04","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group02-crd_v221_token_payload, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group02-crd_v221_token_payload, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group02-crd_v221_token_payload, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group02-crd_v221_token_payload, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group02-crd_v221_token_payload, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group02-crd_v221_token_payload"
|
|
239
|
+
cds-hooks_3.0.0-ballot,190,https://cds-hooks.hl7.org/2026Jan/en/index.html#trusting-cds-clients,"[When sending a JWT payload,] the exp field is required [and SHALL be a] number data type [containing the] expiration time integer for this authentication JWT, expressed in seconds since the ""Epoch"" (1970-01-01T00:00:00Z UTC).",SHALL,Client,true,,,"1.2.1.2.04, 1.2.2.2.04, 1.2.3.2.04, 1.2.4.2.04, 1.2.5.2.04, 1.2.6.2.04","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group02-crd_v221_token_payload, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group02-crd_v221_token_payload, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group02-crd_v221_token_payload, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group02-crd_v221_token_payload, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group02-crd_v221_token_payload, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group02-crd_v221_token_payload"
|
|
240
|
+
cds-hooks_3.0.0-ballot,191,https://cds-hooks.hl7.org/2026Jan/en/index.html#trusting-cds-clients,"[When sending a JWT payload,] the iat field is required [and SHALL be a] number data type [containing] the time at which this JWT was issued, expressed in seconds since the ""Epoch"" (1970-01-01T00:00:00Z UTC)",SHALL,Client,true,,,"1.2.1.2.04, 1.2.2.2.04, 1.2.3.2.04, 1.2.4.2.04, 1.2.5.2.04, 1.2.6.2.04","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group02-crd_v221_token_payload, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group02-crd_v221_token_payload, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group02-crd_v221_token_payload, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group02-crd_v221_token_payload, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group02-crd_v221_token_payload, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group02-crd_v221_token_payload"
|
|
241
|
+
cds-hooks_3.0.0-ballot,192,https://cds-hooks.hl7.org/2026Jan/en/index.html#trusting-cds-clients,"[When sending a JWT payload,] the jti field is required [and SHALL be a] string data type [containing] a nonce string value that uniquely identifies this authentication JWT (used to protect against replay attacks)",SHALL,Client,true,,,"1.2.1.2.04, 1.2.2.2.04, 1.2.3.2.04, 1.2.4.2.04, 1.2.5.2.04, 1.2.6.2.04","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group02-crd_v221_token_payload, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group02-crd_v221_token_payload, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group02-crd_v221_token_payload, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group02-crd_v221_token_payload, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group02-crd_v221_token_payload, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group02-crd_v221_token_payload"
|
|
242
|
+
cds-hooks_3.0.0-ballot,193,https://cds-hooks.hl7.org/2026Jan/en/index.html#trusting-cds-clients,"[When sending a JWT payload,] the tenant field is optional [SHALL be a] string data type [containing] an opaque string identifying the healthcare organization that is invoking the CDS Hooks request",MAY,Client,true,,,"",""
|
|
243
|
+
cds-hooks_3.0.0-ballot,194,https://cds-hooks.hl7.org/2026Jan/en/index.html#trusting-cds-clients,"[When sending a JWT payload,] the tenant field is optional",MAY,Client,true,,,"",""
|
|
244
|
+
cds-hooks_3.0.0-ballot,196,https://cds-hooks.hl7.org/2026Jan/en/index.html#trusting-cds-clients,"For CDS Hooks, [the aud] value MUST be the URL of the CDS Service endpoint being invoked",SHALL,Client,false,,,"1.2.1.2.04, 1.2.2.2.04, 1.2.3.2.04, 1.2.4.2.04, 1.2.5.2.04, 1.2.6.2.04","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group02-crd_v221_token_payload, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group02-crd_v221_token_payload, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group02-crd_v221_token_payload, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group02-crd_v221_token_payload, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group02-crd_v221_token_payload, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group02-crd_v221_token_payload"
|
|
245
|
+
cds-hooks_3.0.0-ballot,197,https://cds-hooks.hl7.org/2026Jan/en/index.html#trusting-cds-clients,"The CDS Client MUST make its public key, expressed as a JSON Web Key (JWK), available in a JWK Set, as defined by [rfc7517](https://tools.ietf.org/html/rfc7517)",SHALL,Client,false,,,"1.2.1.2.02, 1.2.2.2.02, 1.2.3.2.02, 1.2.4.2.02, 1.2.5.2.02, 1.2.6.2.02","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group02-crd_v221_retrieve_jwks, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group02-crd_v221_retrieve_jwks, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group02-crd_v221_retrieve_jwks, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group02-crd_v221_retrieve_jwks, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group02-crd_v221_retrieve_jwks, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group02-crd_v221_retrieve_jwks"
|
|
246
|
+
cds-hooks_3.0.0-ballot,198,https://cds-hooks.hl7.org/2026Jan/en/index.html#trusting-cds-clients,"The CDS Client MAY make its JWK Set available via a URL identified by the jku header field, as defined by [rfc7515 4.1.2](https://tools.ietf.org/html/rfc7515#section-4.1.2)",MAY,Client,false,,,"",""
|
|
247
|
+
cds-hooks_3.0.0-ballot,199,https://cds-hooks.hl7.org/2026Jan/en/index.html#trusting-cds-clients,"If the jku header field is ommitted, the CDS Client and CDS Service SHALL communicate the JWK Set out-of-band.",SHALL,"Client,Service",true,,,"1.1.01, 1.2.1.2.02, 1.2.2.2.02, 1.2.3.2.02, 1.2.4.2.02, 1.2.5.2.02, 1.2.6.2.02","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_registration-crd_v221_client_registration_verification, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group02-crd_v221_retrieve_jwks, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group02-crd_v221_retrieve_jwks, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group02-crd_v221_retrieve_jwks, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group02-crd_v221_retrieve_jwks, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group02-crd_v221_retrieve_jwks, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group02-crd_v221_retrieve_jwks"
|
|
248
|
+
cds-hooks_3.0.0-ballot,200,https://cds-hooks.hl7.org/2026Jan/en/index.html#jwt-signing-algorithm,[JSON Web Algorithms (rfc7518)](https://tools.ietf.org/html/rfc7518) defines several cryptographic algorithms for use in signing JWTs and should be referenced by CDS Hooks implementers.,SHOULD,"Client,Service",false,,,"",""
|
|
249
|
+
cds-hooks_3.0.0-ballot,202,https://cds-hooks.hl7.org/2026Jan/en/index.html#jwt-signing-algorithm,"JWTs SHALL NOT be signed [by Clients] using the none algorithm, referred to in rfc7518 as unsecured JSON Web Signatures, as the lack of a cryptographic signature does not provide any integrity protection.",SHALL NOT,Client,false,,,"1.2.1.2.03, 1.2.2.2.03, 1.2.3.2.03, 1.2.4.2.03, 1.2.5.2.03, 1.2.6.2.03","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group02-crd_v221_token_header, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group02-crd_v221_token_header, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group02-crd_v221_token_header, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group02-crd_v221_token_header, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group02-crd_v221_token_header, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group02-crd_v221_token_header"
|
|
250
|
+
cds-hooks_3.0.0-ballot,203,https://cds-hooks.hl7.org/2026Jan/en/index.html#jwt-signing-algorithm,JWTs SHALL NOT be signed using any symmetric algorithm as these algorithms require the CDS Client and CDS Service to share a private key in order to verify the signature,SHALL NOT,"Client,Service",false,,,"1.2.1.2.04, 1.2.2.2.04, 1.2.3.2.04, 1.2.4.2.04, 1.2.5.2.04, 1.2.6.2.04","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group02-crd_v221_token_payload, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group02-crd_v221_token_payload, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group02-crd_v221_token_payload, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group02-crd_v221_token_payload, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group02-crd_v221_token_payload, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group02-crd_v221_token_payload"
|
|
251
|
+
cds-hooks_3.0.0-ballot,204,https://cds-hooks.hl7.org/2026Jan/en/index.html#jwt-signing-algorithm,"When choosing an algorithm to sign their JWTs, CDS Clients SHOULD consider not only the algorithms (and key sizes) that are recommended within the security industry, but also how well those algorithms are supported in the various programming languages and libraries that may be used by CDS Services.",SHOULD,Client,false,,,"",""
|
|
252
|
+
cds-hooks_3.0.0-ballot,205,https://cds-hooks.hl7.org/2026Jan/en/index.html#jwt-signing-algorithm,"At publication time of this specification, both ES384 and RS384 are RECOMMENDED for their regard within the larger security industry, strength, and support across popular programming languages and libraries.",SHOULD,"Client,Service",false,,,"",""
|
|
253
|
+
cds-hooks_3.0.0-ballot,206,https://cds-hooks.hl7.org/2026Jan/en/index.html#jwt-signing-algorithm,"Stronger and better algorithms [than ES384 and RS384] are continually being introduced due to new threats, weaknesses, and increases in computing power [and] CDS Clients SHOULD continually re-evaluate their choice of an algorithm based upon these ever changing conditions.",SHOULD,"Client,Service",false,,,"",""
|
|
254
|
+
cds-hooks_3.0.0-ballot,208,https://cds-hooks.hl7.org/2026Jan/en/index.html#cross-origin-resource-sharing,CDS Services and browser-based CDS Clients will require CORS support. [Cross-origin resource sharing (CORS)](https://www.w3.org/TR/cors/) is a [World Wide Web Consortium (W3C)](https://www.w3.org/Consortium/) standard mechanism that uses additional HTTP headers to enable a web browser to gain permission to access resources from an Internet domain different from that which the browser is currently accessing.,SHALL,"Client,Service",true,,,suite,crd_client_v221
|
|
255
|
+
cds-hooks_3.0.0-ballot,209,https://cds-hooks.hl7.org/2026Jan/en/index.html#update-stale-guidance,"In the case that CDS Hooks cards are persisted, clients should take care to ensure that stale guidance does not negatively impact patient care.",SHOULD,Client,true,,,"",""
|
|
256
|
+
cds-hooks_3.0.0-ballot,214,https://cds-hooks.hl7.org/2026Jan/en/index.html#extensions,The value of an extension element MUST be a pre-coordinated JSON object,SHALL,"Client,Service",false,,,"1.2.1.3.02, 1.2.2.3.02, 1.2.3.3.02, 1.2.4.3.02, 1.2.5.3.02, 1.2.6.3.02","crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_appointment_book-Group03-crd_v221_hook_request_requested_version, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_start-Group03-crd_v221_hook_request_requested_version, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_encounter_discharge-Group03-crd_v221_hook_request_requested_version, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_select-Group03-crd_v221_hook_request_requested_version, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_dispatch-Group03-crd_v221_hook_request_requested_version, crd_client_v221-crd_v221_client_hook_invocation-crd_v221_client_hooks-crd_v221_client_order_sign-Group03-crd_v221_hook_request_requested_version"
|
|
257
|
+
cds-hooks_3.0.0-ballot,215,https://cds-hooks.hl7.org/2026Jan/en/index.html#extensions,"Extension structures SHOULD use a strategy for naming that ensures global uniqueness, such as reverse-domain-name notation",SHOULD,"Client,Service",false,,,"",""
|
|
258
|
+
hl7.fhir.us.core_6.1.0,1,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#profile-only-support,"To support a US Core Profile, a server: **SHALL** Be able to populate all profile data elements that are mandatory and/or flagged as Must Support as defined by that profile’s StructureDefinition.",SHALL,Server,false,,,"2.2.1.06, 2.2.3.12, 2.2.4.06, 2.2.5.08, 2.2.6.07, 2.2.7.14, 2.2.8.14, 2.2.9.05, 2.2.10.07, 2.2.11.10, 2.2.12.10, 2.2.13.11, 2.2.14.13, 2.2.15.08, 2.2.16.07, 2.2.17.07, 2.2.18.09, 2.2.19.09, 2.2.20.09, 2.2.21.09, 2.2.22.09, 2.2.23.09, 2.2.24.09, 2.2.25.09, 2.2.26.09, 2.2.27.09, 2.2.28.09, 2.2.29.09, 2.2.30.09, 2.2.31.09, 2.2.32.09, 2.2.33.09, 2.2.34.09, 2.2.35.09, 2.2.36.09, 2.2.37.09, 2.2.38.09, 2.2.39.09, 2.2.40.08, 2.2.41.09, 2.2.42.11, 2.2.43.05, 2.2.44.06, 2.2.45.05, 2.2.46.03, 2.2.47.08, 2.2.48.05","crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_capability_statement-us_core_instantiate, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_allergy_intolerance-us_core_v610_allergy_intolerance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_coverage-us_core_v610_coverage_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_device-us_core_v610_device_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_organization-us_core_v610_organization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_provenance-us_core_v610_provenance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_specimen-us_core_v610_specimen_must_support_test"
|
|
259
|
+
hl7.fhir.us.core_6.1.0,2,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#profile-only-support,"To support a US Core Profile, a server: **SHOULD** declare support for a US Core Profile by including its official URL in the server’s `CapabilityStatement.rest.resource.supportedProfile` element.",SHOULD,Server,false,,,"",""
|
|
260
|
+
hl7.fhir.us.core_6.1.0,3,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#profile-support--interaction-support,Servers may deploy and support one or more US Core Profiles to represent clinical information,MAY,Server,true,,,"",""
|
|
261
|
+
hl7.fhir.us.core_6.1.0,4,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#profile-support--interaction-support,Server may deploy and support ... the following US Core interaction: “Quick Start” defined for each Profile,MAY,Server,true,,,"",""
|
|
262
|
+
hl7.fhir.us.core_6.1.0,5,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#profile-support--interaction-support,Server may deploy and support ... the following US Core interaction: [Clinical Notes](https://hl7.org/fhir/us/core/clinical-notes.html),MAY,Server,true,,,"",""
|
|
263
|
+
hl7.fhir.us.core_6.1.0,6,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#profile-support--interaction-support,Server may deploy and support ... the following US Core interaction: [Medication List](https://hl7.org/fhir/us/core/medication-list.html),MAY,Server,true,,,"",""
|
|
264
|
+
hl7.fhir.us.core_6.1.0,7,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#profile-support--interaction-support,Server may deploy and support ... the following US Core interaction: [Basic Provenance](https://hl7.org/fhir/us/core/basic-provenance.html),MAY,Server,true,,,"",""
|
|
265
|
+
hl7.fhir.us.core_6.1.0,8,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#profile-support--interaction-support,Server may deploy and support ... the following US Core interaction: [Screening and Assessments](https://hl7.org/fhir/us/core/screening-and-assessments.html),MAY,Server,true,,,"",""
|
|
266
|
+
hl7.fhir.us.core_6.1.0,9,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#profile-support--interaction-support,Servers implementing ... [clinical information representation] can claim conformance to the US Core Profile content structure ... by implementing all or parts of the US Core CapabilityStatement into their capabilities.,MAY,Server,true,,,"",""
|
|
267
|
+
hl7.fhir.us.core_6.1.0,10,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#profile-support--interaction-support,Servers implementing ... [interactions] can claim conformance to the ... RESTful interactions defined by implementing all or parts of the US Core CapabilityStatement into their capabilities,MAY,Server,true,,,"",""
|
|
268
|
+
hl7.fhir.us.core_6.1.0,11,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#profile-support--interaction-support,A server that certifies to the [21st Century Cures Act for accessing patient data](https://www.federalregister.gov/d/2020-07419/p-1177) must implement all components in the USCDI [[USCDI link](https://www.healthit.gov/isp/united-states-core-data-interoperability-uscdi)],SHALL,Server,true,Not Tested,This requirement is specific to testing for the 21st Century Cures Act and is not relevant to the IG tests,NA,NA
|
|
269
|
+
hl7.fhir.us.core_6.1.0,12,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#profile-support--interaction-support,A server that certifies to the [21st Century Cures Act for accessing patient data](https://www.federalregister.gov/d/2020-07419/p-1177) must implement all components in the ... the US Core CapabilityStatement [[Definition](https://hl7.org/fhir/us/core/CapabilityStatement-us-core-server.html)] .,SHALL,Server,true,Not Tested,This requirement is specific to testing for the 21st Century Cures Act and is not relevant to the IG tests,NA,NA
|
|
270
|
+
hl7.fhir.us.core_6.1.0,13,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#claiming-conformance-to-a-us-core-profile,"[To claim conformance to a US Core Profile] a conformant server:
|
|
271
|
+
|
|
272
|
+
**SHALL** Be able to populate all profile data elements that are mandatory and/or flagged as Must Support as defined by that profile’s StructureDefinition.",SHALL,Server,false,,,"2.2.3.12, 2.2.4.06, 2.2.5.08, 2.2.6.07, 2.2.7.14, 2.2.8.14, 2.2.9.05, 2.2.10.07, 2.2.11.10, 2.2.12.10, 2.2.13.11, 2.2.14.13, 2.2.15.08, 2.2.16.07, 2.2.17.07, 2.2.18.09, 2.2.19.09, 2.2.20.09, 2.2.21.09, 2.2.22.09, 2.2.23.09, 2.2.24.09, 2.2.25.09, 2.2.26.09, 2.2.27.09, 2.2.28.09, 2.2.29.09, 2.2.30.09, 2.2.31.09, 2.2.32.09, 2.2.33.09, 2.2.34.09, 2.2.35.09, 2.2.36.09, 2.2.37.09, 2.2.38.09, 2.2.39.09, 2.2.40.08, 2.2.41.09, 2.2.42.11, 2.2.43.05, 2.2.44.06, 2.2.45.05, 2.2.46.03, 2.2.47.08, 2.2.48.05","crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_allergy_intolerance-us_core_v610_allergy_intolerance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_coverage-us_core_v610_coverage_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_device-us_core_v610_device_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_organization-us_core_v610_organization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_provenance-us_core_v610_provenance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_specimen-us_core_v610_specimen_must_support_test"
|
|
273
|
+
hl7.fhir.us.core_6.1.0,14,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#claiming-conformance-to-a-us-core-profile,"[To claim conformance to a US Core Profile] a conformant server:
|
|
274
|
+
|
|
275
|
+
**SHALL** declare conformance with the US [Core Server Capability Statement](https://hl7.org/fhir/us/core/CapabilityStatement-us-core-server.html) by including its official URL in the server’s `CapabilityStatement.instantiates` element: `http://hl7.org/fhir/us/core/CapabilityStatement/us-core-server`",SHALL,Server,false,,,2.2.1.06,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_capability_statement-us_core_instantiate
|
|
276
|
+
hl7.fhir.us.core_6.1.0,15,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#claiming-conformance-to-a-us-core-profile,"[To claim conformance to a US Core Profile] a conformant server:
|
|
277
|
+
|
|
278
|
+
**SHALL** specify the full capability details from the US Core CapabilityStatement it claims to implement.",SHALL,Server,false,,,"",""
|
|
279
|
+
hl7.fhir.us.core_6.1.0,16,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#claiming-conformance-to-a-us-core-profile,"[To claim conformance to a US Core Profile] a conformant server:
|
|
280
|
+
|
|
281
|
+
**SHALL**… Declare support for the US Core Profile by including its official URL in the server’s CapabilityStatement.rest.resource.supportedProfile element.",SHALL,Server,false,,,2.2.1.05,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_capability_statement-us_core_profile_support
|
|
282
|
+
hl7.fhir.us.core_6.1.0,17,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#claiming-conformance-to-a-us-core-profile,"[To claim conformance to a US Core Profile] a conformant server:
|
|
283
|
+
|
|
284
|
+
**SHALL**… Declare support for the US Core Profile’s FHIR RESTful transactions.",SHALL,Server,false,,,"",""
|
|
285
|
+
hl7.fhir.us.core_6.1.0,18,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#required-bindings-for-coded-elements,[Required binding](http://hl7.org/fhir/R4/terminologies.html#required) to a ValueSet definition means that one of the codes from the specified ValueSet **SHALL** be used.,SHALL,Server,false,,,"2.2.3.11, 2.2.4.05, 2.2.5.07, 2.2.6.06, 2.2.7.13, 2.2.8.13, 2.2.9.04, 2.2.10.06, 2.2.11.09, 2.2.12.09, 2.2.13.10, 2.2.14.12, 2.2.15.07, 2.2.16.06, 2.2.17.06, 2.2.18.07, 2.2.18.08, 2.2.19.08, 2.2.20.08, 2.2.21.08, 2.2.22.08, 2.2.23.08, 2.2.24.08, 2.2.25.08, 2.2.26.08, 2.2.27.08, 2.2.28.08, 2.2.29.08, 2.2.30.08, 2.2.31.08, 2.2.32.08, 2.2.33.08, 2.2.34.08, 2.2.35.08, 2.2.36.08, 2.2.37.08, 2.2.38.08, 2.2.39.08, 2.2.40.07, 2.2.41.08, 2.2.42.10, 2.2.43.04, 2.2.44.05, 2.2.45.04, 2.2.46.02, 2.2.47.07, 2.2.48.04","crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_allergy_intolerance-us_core_v610_allergy_intolerance_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_coverage-us_core_v610_coverage_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_device-us_core_v610_device_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_organization-us_core_v610_organization_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_provenance-us_core_v610_provenance_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_specimen-us_core_v610_specimen_validation_test"
|
|
286
|
+
hl7.fhir.us.core_6.1.0,19,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#required-bindings-for-coded-elements,"For `CodeableConcept`, which permits multiple codings and a text element, this [[Required binding](http://hl7.org/fhir/R4/terminologies.html#required) to a ValueSet definition] rule applies to at least one of the codings",SHALL,Server,true,,,"2.2.3.11, 2.2.4.05, 2.2.5.07, 2.2.6.06, 2.2.7.13, 2.2.8.13, 2.2.9.04, 2.2.10.06, 2.2.11.09, 2.2.12.09, 2.2.13.10, 2.2.14.12, 2.2.15.07, 2.2.16.06, 2.2.17.06, 2.2.18.07, 2.2.18.08, 2.2.19.08, 2.2.20.08, 2.2.21.08, 2.2.22.08, 2.2.23.08, 2.2.24.08, 2.2.25.08, 2.2.26.08, 2.2.27.08, 2.2.28.08, 2.2.29.08, 2.2.30.08, 2.2.31.08, 2.2.32.08, 2.2.33.08, 2.2.34.08, 2.2.35.08, 2.2.36.08, 2.2.37.08, 2.2.38.08, 2.2.39.08, 2.2.40.07, 2.2.41.08, 2.2.42.10, 2.2.43.04, 2.2.44.05, 2.2.45.04, 2.2.46.02, 2.2.47.07, 2.2.48.04","crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_allergy_intolerance-us_core_v610_allergy_intolerance_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_coverage-us_core_v610_coverage_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_device-us_core_v610_device_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_organization-us_core_v610_organization_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_provenance-us_core_v610_provenance_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_specimen-us_core_v610_specimen_validation_test"
|
|
287
|
+
hl7.fhir.us.core_6.1.0,20,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#required-bindings-for-coded-elements,"For a [[required binding](http://hl7.org/fhir/R4/terminologies.html#required) to a ValueSet definition], a `CodeableConcept`which permits multiple codings and a text element … [using] only text is not valid.",SHALL NOT,Server,false,,,"2.2.3.11, 2.2.4.05, 2.2.5.07, 2.2.6.06, 2.2.7.13, 2.2.8.13, 2.2.9.04, 2.2.10.06, 2.2.11.09, 2.2.12.09, 2.2.13.10, 2.2.14.12, 2.2.15.07, 2.2.16.06, 2.2.17.06, 2.2.18.07, 2.2.18.08, 2.2.19.08, 2.2.20.08, 2.2.21.08, 2.2.22.08, 2.2.23.08, 2.2.24.08, 2.2.25.08, 2.2.26.08, 2.2.27.08, 2.2.28.08, 2.2.29.08, 2.2.30.08, 2.2.31.08, 2.2.32.08, 2.2.33.08, 2.2.34.08, 2.2.35.08, 2.2.36.08, 2.2.37.08, 2.2.38.08, 2.2.39.08, 2.2.40.07, 2.2.41.08, 2.2.42.10, 2.2.43.04, 2.2.44.05, 2.2.45.04, 2.2.46.02, 2.2.47.07, 2.2.48.04","crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_allergy_intolerance-us_core_v610_allergy_intolerance_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_coverage-us_core_v610_coverage_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_device-us_core_v610_device_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_organization-us_core_v610_organization_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_provenance-us_core_v610_provenance_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_specimen-us_core_v610_specimen_validation_test"
|
|
288
|
+
hl7.fhir.us.core_6.1.0,21,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#required-bindings-for-coded-elements,[When populating a coded element with a [required binding](http://hl7.org/fhir/R4/terminologies.html#required] to a ValueSet definition] US Core Responders **SHALL** provide a code exclusively from [the required binding] ValueSet,SHALL,Server,true,,,"2.2.3.11, 2.2.4.05, 2.2.5.07, 2.2.6.06, 2.2.7.13, 2.2.8.13, 2.2.9.04, 2.2.10.06, 2.2.11.09, 2.2.12.09, 2.2.13.10, 2.2.14.12, 2.2.15.07, 2.2.16.06, 2.2.17.06, 2.2.18.07, 2.2.18.08, 2.2.19.08, 2.2.20.08, 2.2.21.08, 2.2.22.08, 2.2.23.08, 2.2.24.08, 2.2.25.08, 2.2.26.08, 2.2.27.08, 2.2.28.08, 2.2.29.08, 2.2.30.08, 2.2.31.08, 2.2.32.08, 2.2.33.08, 2.2.34.08, 2.2.35.08, 2.2.36.08, 2.2.37.08, 2.2.38.08, 2.2.39.08, 2.2.40.07, 2.2.41.08, 2.2.42.10, 2.2.43.04, 2.2.44.05, 2.2.45.04, 2.2.46.02, 2.2.47.07, 2.2.48.04","crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_allergy_intolerance-us_core_v610_allergy_intolerance_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_coverage-us_core_v610_coverage_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_device-us_core_v610_device_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_organization-us_core_v610_organization_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_provenance-us_core_v610_provenance_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_specimen-us_core_v610_specimen_validation_test"
|
|
289
|
+
hl7.fhir.us.core_6.1.0,23,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#extensible-binding-for-coded-elements,[Extensible binding] (http://hl7.org/fhir/R4/terminologies.html#extensible) means that one of the codes from the specified ValueSet **SHALL** be used if an applicable concept is present.,SHALL,Server,true,,,"2.2.3.11, 2.2.4.05, 2.2.5.07, 2.2.6.06, 2.2.7.13, 2.2.8.13, 2.2.9.04, 2.2.10.06, 2.2.11.09, 2.2.12.09, 2.2.13.10, 2.2.14.12, 2.2.15.07, 2.2.16.06, 2.2.17.06, 2.2.18.07, 2.2.18.08, 2.2.19.08, 2.2.20.08, 2.2.21.08, 2.2.22.08, 2.2.23.08, 2.2.24.08, 2.2.25.08, 2.2.26.08, 2.2.27.08, 2.2.28.08, 2.2.29.08, 2.2.30.08, 2.2.31.08, 2.2.32.08, 2.2.33.08, 2.2.34.08, 2.2.35.08, 2.2.36.08, 2.2.37.08, 2.2.38.08, 2.2.39.08, 2.2.40.07, 2.2.41.08, 2.2.42.10, 2.2.43.04, 2.2.44.05, 2.2.45.04, 2.2.46.02, 2.2.47.07, 2.2.48.04","crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_allergy_intolerance-us_core_v610_allergy_intolerance_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_coverage-us_core_v610_coverage_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_device-us_core_v610_device_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_organization-us_core_v610_organization_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_provenance-us_core_v610_provenance_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_specimen-us_core_v610_specimen_validation_test"
|
|
290
|
+
hl7.fhir.us.core_6.1.0,24,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#extensible-binding-for-coded-elements,"[When using an [extensible Binding] (http://hl7.org/fhir/R4/terminologies.html#extensible)] If no suitable code exists in the [extensible] ValueSet, alternate code(s) may be provided.",MAY,Server,true,,,"",""
|
|
291
|
+
hl7.fhir.us.core_6.1.0,26,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#extensible-binding-for-coded-elements,"For `CodeableConcept` [with an [extensible binding] (http://hl7.org/fhir/R4/terminologies.html#extensible) … If only text is available, then just text may be used.",MAY,Server,true,,,"",""
|
|
292
|
+
hl7.fhir.us.core_6.1.0,27,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#extensible-binding-for-coded-elements,"When claiming conformance to ... [to a US Core profile extensible binding rule, a] US Core Responders Shall provide:
|
|
293
|
+
A code from … [the] valueset 'DataElement.code.code' if the concept exists in the valueset [for a DataElement.code that has an extensible binding]
|
|
294
|
+
Or an alternative code if the concept does not exist in the valueset [for a DataElement.code that has an extensible binding]
|
|
295
|
+
Or text in ... `[DataElement.code.text]’ if only text is available [for a DataElement.code that has an extensible binding]",SHALL,Server,true,,,"2.2.3.11, 2.2.4.05, 2.2.5.07, 2.2.6.06, 2.2.7.13, 2.2.8.13, 2.2.9.04, 2.2.10.06, 2.2.11.09, 2.2.12.09, 2.2.13.10, 2.2.14.12, 2.2.15.07, 2.2.16.06, 2.2.17.06, 2.2.18.07, 2.2.18.08, 2.2.19.08, 2.2.20.08, 2.2.21.08, 2.2.22.08, 2.2.23.08, 2.2.24.08, 2.2.25.08, 2.2.26.08, 2.2.27.08, 2.2.28.08, 2.2.29.08, 2.2.30.08, 2.2.31.08, 2.2.32.08, 2.2.33.08, 2.2.34.08, 2.2.35.08, 2.2.36.08, 2.2.37.08, 2.2.38.08, 2.2.39.08, 2.2.40.07, 2.2.41.08, 2.2.42.10, 2.2.43.04, 2.2.44.05, 2.2.45.04, 2.2.46.02, 2.2.47.07, 2.2.48.04","crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_allergy_intolerance-us_core_v610_allergy_intolerance_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_coverage-us_core_v610_coverage_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_device-us_core_v610_device_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_organization-us_core_v610_organization_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_provenance-us_core_v610_provenance_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_specimen-us_core_v610_specimen_validation_test"
|
|
296
|
+
hl7.fhir.us.core_6.1.0,28.A,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#extensible-binding-for-coded-elements,US Core guidance provides ... flexibility for situations where implementers cannot fully comply with the FHIR guidance [to extensible bindings]. This flexibility is sometimes necessary and expected for legacy and text-only data [which MAY ignore normal extensible binding rules].,MAY,Server,true,,,"",""
|
|
297
|
+
hl7.fhir.us.core_6.1.0,28.B,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#extensible-binding-for-coded-elements,"[F]or newly recorded, non-legacy data, a system **SHOULD** adhere to the extensible binding rules.",SHOULD,Server,true,,,"",""
|
|
298
|
+
hl7.fhir.us.core_6.1.0,29,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#translations,Alternate codes may be provided in addition to the standard codes defined in required or extensible ValueSets. These alternate codes are called “translations”.,MAY,Server,false,,,"",""
|
|
299
|
+
hl7.fhir.us.core_6.1.0,30,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#translations,[The translations] may be equivalent to or narrower in meaning than the standard concept code.,MAY,Server,false,,,"",""
|
|
300
|
+
hl7.fhir.us.core_6.1.0,33,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#modifier-elements,"Not all modifier elements are Mandatory or Must Support, and there is no requirement for supporting them",MAY,Server,false,,,"",""
|
|
301
|
+
hl7.fhir.us.core_6.1.0,34,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#modifier-elements,"Servers **MAY** communicate a system-wide profile in their CapabilityStatement to identify which additional elements, including modifier elements, they support",MAY,Server,false,,,"",""
|
|
302
|
+
hl7.fhir.us.core_6.1.0,38,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#modifier-elements,Implementers SHOULD review the “Key Elements Tab” on the US Core profile pages.,SHOULD,"Client,Server",false,,,"",""
|
|
303
|
+
hl7.fhir.us.core_6.1.0,39,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#missing-data,"If the source system does not have data for an element with a minimum cardinality = 0 (including elements labeled Must Support), the data element **SHALL** be omitted from the resource.",SHALL,Server,true,,,"",""
|
|
304
|
+
hl7.fhir.us.core_6.1.0,40,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#missing-data,"If the data element is a Mandatory element (in other words, where the minimum cardinality is > 0), it **SHALL** be present even if the source system does not have data.",SHALL,Server,true,,,"2.2.3.11, 2.2.4.05, 2.2.5.07, 2.2.6.06, 2.2.7.13, 2.2.8.13, 2.2.9.04, 2.2.10.06, 2.2.11.09, 2.2.12.09, 2.2.13.10, 2.2.14.12, 2.2.15.07, 2.2.16.06, 2.2.17.06, 2.2.18.07, 2.2.18.08, 2.2.19.08, 2.2.20.08, 2.2.21.08, 2.2.22.08, 2.2.23.08, 2.2.24.08, 2.2.25.08, 2.2.26.08, 2.2.27.08, 2.2.28.08, 2.2.29.08, 2.2.30.08, 2.2.31.08, 2.2.32.08, 2.2.33.08, 2.2.34.08, 2.2.35.08, 2.2.36.08, 2.2.37.08, 2.2.38.08, 2.2.39.08, 2.2.40.07, 2.2.41.08, 2.2.42.10, 2.2.43.04, 2.2.44.05, 2.2.45.04, 2.2.46.02, 2.2.47.07, 2.2.48.04","crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_allergy_intolerance-us_core_v610_allergy_intolerance_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_coverage-us_core_v610_coverage_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_device-us_core_v610_device_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_organization-us_core_v610_organization_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_provenance-us_core_v610_provenance_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_specimen-us_core_v610_specimen_validation_test"
|
|
305
|
+
hl7.fhir.us.core_6.1.0,41,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#missing-data,"For [mandatory] non-coded data elements [where data is not available], use the [DataAbsentReason Extension](http://hl7.org/fhir/R4/extension-data-absent-reason.html) in the data type ... [with] the code `unknown` - The value is expected to exist but is not known.",SHALL,Server,true,,,2.2.51,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_311_data_absent_reason
|
|
306
|
+
hl7.fhir.us.core_6.1.0,42,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#missing-data,"[In situations where data is not available] for [mandatory] coded data elements … [with] *example*, *preferred*, or *extensible* binding strengths (CodeableConcept or Coding datatypes) If the source system has text but no coded data, only the text element is used.",SHALL,Server,true,,,"",""
|
|
307
|
+
hl7.fhir.us.core_6.1.0,43,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#missing-data,"[In situations where data is not available] for [mandatory] coded data elements… [with] *example*, *preferred*, or *extensible* binding strengths (CodeableConcept or Coding datatypes):
|
|
308
|
+
For Coding datatypes, the text-only data is represented as a display element",SHALL,Server,true,,,"",""
|
|
309
|
+
hl7.fhir.us.core_6.1.0,44,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#missing-data,"[In situations where data is not available] for [mandatory] coded data elements… [with] *example*, *preferred*, or *extensible* binding strengths (CodeableConcept or Coding datatypes): … If there is neither text nor coded data ... [then] use the appropriate “unknown” concept code from the ValueSet if available.",SHALL,Server,true,,,"",""
|
|
310
|
+
hl7.fhir.us.core_6.1.0,45,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#missing-data,"[In situations where data is not available] for [mandatory] coded data elements… [with] *example*, *preferred*, or *extensible* binding strengths (CodeableConcept or Coding datatypes): … If there is neither text nor coded data ... [then] if the ValueSet does not have the appropriate “unknown” concept code, use unknown from the [DataAbsentReason Code System](http://hl7.org/fhir/R4/codesystem-data-absent-reason.html).",SHALL,Server,true,,,2.2.51,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_311_data_absent_reason
|
|
311
|
+
hl7.fhir.us.core_6.1.0,46,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#missing-data,[In situations where data is not available] for [mandatory] coded data elements… [with] *required* binding strength (CodeableConcept or code datatypes): use the appropriate “unknown” concept code from the ValueSet if available,SHALL,Server,true,,,"",""
|
|
312
|
+
hl7.fhir.us.core_6.1.0,47,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#missing-data,"[In situations where data is not available] for [mandatory] coded data elements… [with] *required* binding strength (CodeableConcept or code datatypes): If the ValueSet does not have the appropriate “unknown” concept code, you must use a concept from the ValueSet. Otherwise, the instance will not be conformant",SHALL,Server,true,,,"",""
|
|
313
|
+
hl7.fhir.us.core_6.1.0,48,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#missing-data,"[If the source system does not have data for a Mandatory element for a coded data element with *required* binding strength] If any of these status codes is missing [meaning it lacks an ""unknown"" or otherwise appropriate concept code from the ValueSet, a] 404 HTTP error code and an OperationOutcome **SHALL** be returned in response to a read transaction on the resource.",SHALL,Server,true,,,"",""
|
|
314
|
+
hl7.fhir.us.core_6.1.0,49,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#missing-data,"[If the source system does not have data for a Mandatory element for a coded data element with *required* binding strength, and the ValueSet does not have the appropriate ""unknown"" concept code, then] if returning a response to a search, the problematic resource **SHALL** be excluded from the search set",SHALL,Server,true,,,"",""
|
|
315
|
+
hl7.fhir.us.core_6.1.0,50,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#missing-data,"[If the source system does not have data for a Mandatory element for a coded data element with *required* binding strength, and the ValueSet does not have the appropriate ""unknown"" concept code, then] if returning a response to a search, … a *warning* OperationOutcome **SHOULD** be included indicating that other search results were found but could not be compliantly expressed and have been suppressed.",SHOULD,Server,true,,,"",""
|
|
316
|
+
hl7.fhir.us.core_6.1.0,51,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#fhir-restful-search-api-requirements,The [FHIR RESTful Search API](http://hl7.org/fhir/R4/http.html#search) requires that servers that support search **SHALL** support the HTTP `POST`-based search.,SHALL,Server,false,,,"2.2.3.01, 2.2.3.02, 2.2.3.03, 2.2.3.06, 2.2.3.07, 2.2.4.01, 2.2.5.01, 2.2.6.01, 2.2.7.01, 2.2.7.02, 2.2.8.01, 2.2.8.02, 2.2.9.01, 2.2.10.01, 2.2.11.01, 2.2.11.02, 2.2.11.05, 2.2.11.06, 2.2.12.01, 2.2.12.02, 2.2.12.05, 2.2.12.06, 2.2.13.01, 2.2.13.02, 2.2.13.03, 2.2.13.06, 2.2.13.07, 2.2.14.01, 2.2.14.02, 2.2.14.07, 2.2.15.01, 2.2.16.01, 2.2.17.01, 2.2.18.01, 2.2.18.03, 2.2.19.01, 2.2.19.04, 2.2.19.05, 2.2.20.01, 2.2.20.04, 2.2.20.05, 2.2.21.01, 2.2.21.04, 2.2.21.05, 2.2.22.01, 2.2.22.04, 2.2.22.05, 2.2.23.01, 2.2.23.04, 2.2.23.05, 2.2.24.01, 2.2.24.04, 2.2.24.05, 2.2.25.01, 2.2.25.04, 2.2.25.05, 2.2.26.01, 2.2.26.04, 2.2.26.05, 2.2.27.01, 2.2.27.04, 2.2.27.05, 2.2.28.01, 2.2.28.04, 2.2.28.05, 2.2.29.01, 2.2.29.04, 2.2.29.05, 2.2.30.01, 2.2.31.01, 2.2.31.04, 2.2.31.05, 2.2.32.01, 2.2.32.04, 2.2.32.05, 2.2.33.01, 2.2.33.04, 2.2.33.05, 2.2.34.01, 2.2.34.04, 2.2.34.05, 2.2.35.01, 2.2.35.04, 2.2.35.05, 2.2.36.01, 2.2.36.04, 2.2.36.05, 2.2.37.01, 2.2.37.04, 2.2.37.05, 2.2.38.01, 2.2.38.04, 2.2.38.05, 2.2.39.01, 2.2.39.04, 2.2.39.05, 2.2.40.01, 2.2.40.04, 2.2.41.01, 2.2.41.02, 2.2.42.01, 2.2.42.02, 2.2.42.03, 2.2.42.05, 2.2.42.07, 2.2.43.02, 2.2.43.03, 2.2.44.03, 2.2.44.04, 2.2.45.02, 2.2.45.03, 2.2.47.03, 2.2.48.03","crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_identifier_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_birthdate_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_gender_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_allergy_intolerance-us_core_v610_allergy_intolerance_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_patient_status_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_coverage-us_core_v610_coverage_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_device-us_core_v610_device_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_patient_type_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_date_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_patient_intent_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_patient_intent_status_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_patient_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_patient_category_authored_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_organization-us_core_v610_organization_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_organization-us_core_v610_organization_address_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner_identifier_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_specialty_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_practitioner_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_specimen-us_core_v610_specimen__id_search_test"
|
|
317
|
+
hl7.fhir.us.core_6.1.0,52,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#fhir-restful-search-api-requirements,"For all the supported search interactions in this guide, servers **SHALL** also support the `GET`-based search.",SHALL,Server,false,,,"2.2.3.01, 2.2.3.02, 2.2.3.03, 2.2.3.06, 2.2.3.07, 2.2.4.01, 2.2.5.01, 2.2.6.01, 2.2.7.01, 2.2.7.02, 2.2.8.01, 2.2.8.02, 2.2.9.01, 2.2.10.01, 2.2.11.01, 2.2.11.02, 2.2.11.05, 2.2.11.06, 2.2.12.01, 2.2.12.02, 2.2.12.05, 2.2.12.06, 2.2.13.01, 2.2.13.02, 2.2.13.03, 2.2.13.06, 2.2.13.07, 2.2.14.01, 2.2.14.02, 2.2.14.07, 2.2.15.01, 2.2.16.01, 2.2.17.01, 2.2.18.01, 2.2.18.03, 2.2.19.01, 2.2.19.04, 2.2.19.05, 2.2.20.01, 2.2.20.04, 2.2.20.05, 2.2.21.01, 2.2.21.04, 2.2.21.05, 2.2.22.01, 2.2.22.04, 2.2.22.05, 2.2.23.01, 2.2.23.04, 2.2.23.05, 2.2.24.01, 2.2.24.04, 2.2.24.05, 2.2.25.01, 2.2.25.04, 2.2.25.05, 2.2.26.01, 2.2.26.04, 2.2.26.05, 2.2.27.01, 2.2.27.04, 2.2.27.05, 2.2.28.01, 2.2.28.04, 2.2.28.05, 2.2.29.01, 2.2.29.04, 2.2.29.05, 2.2.30.01, 2.2.31.01, 2.2.31.04, 2.2.31.05, 2.2.32.01, 2.2.32.04, 2.2.32.05, 2.2.33.01, 2.2.33.04, 2.2.33.05, 2.2.34.01, 2.2.34.04, 2.2.34.05, 2.2.35.01, 2.2.35.04, 2.2.35.05, 2.2.36.01, 2.2.36.04, 2.2.36.05, 2.2.37.01, 2.2.37.04, 2.2.37.05, 2.2.38.01, 2.2.38.04, 2.2.38.05, 2.2.39.01, 2.2.39.04, 2.2.39.05, 2.2.40.01, 2.2.40.04, 2.2.41.01, 2.2.41.02, 2.2.42.01, 2.2.42.02, 2.2.42.03, 2.2.42.05, 2.2.42.07, 2.2.43.02, 2.2.43.03, 2.2.44.03, 2.2.44.04, 2.2.45.02, 2.2.45.03, 2.2.47.03, 2.2.48.03","crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_identifier_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_birthdate_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_gender_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_allergy_intolerance-us_core_v610_allergy_intolerance_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_patient_status_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_coverage-us_core_v610_coverage_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_device-us_core_v610_device_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_patient_type_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_date_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_patient_intent_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_patient_intent_status_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_patient_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_patient_category_authored_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_organization-us_core_v610_organization_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_organization-us_core_v610_organization_address_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner_identifier_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_specialty_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_practitioner_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_specimen-us_core_v610_specimen__id_search_test"
|
|
318
|
+
hl7.fhir.us.core_6.1.0,55,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#fhir-restful-search-api-requirements,When searching using the `token` type searchparameter [(how to search by token)](http://hl7.org/fhir/R4/search.html#token) The server **SHALL** support both [system and code values],SHALL,Server,false,,,"2.2.3.01, 2.2.3.02, 2.2.3.03, 2.2.3.06, 2.2.3.07, 2.2.4.01, 2.2.5.01, 2.2.6.01, 2.2.7.01, 2.2.7.02, 2.2.8.01, 2.2.8.02, 2.2.9.01, 2.2.10.01, 2.2.11.01, 2.2.11.02, 2.2.11.05, 2.2.11.06, 2.2.12.01, 2.2.12.02, 2.2.12.05, 2.2.12.06, 2.2.13.01, 2.2.13.02, 2.2.13.03, 2.2.13.06, 2.2.13.07, 2.2.14.01, 2.2.14.02, 2.2.14.07, 2.2.15.01, 2.2.16.01, 2.2.17.01, 2.2.18.01, 2.2.18.03, 2.2.19.01, 2.2.19.04, 2.2.19.05, 2.2.20.01, 2.2.20.04, 2.2.20.05, 2.2.21.01, 2.2.21.04, 2.2.21.05, 2.2.22.01, 2.2.22.04, 2.2.22.05, 2.2.23.01, 2.2.23.04, 2.2.23.05, 2.2.24.01, 2.2.24.04, 2.2.24.05, 2.2.25.01, 2.2.25.04, 2.2.25.05, 2.2.26.01, 2.2.26.04, 2.2.26.05, 2.2.27.01, 2.2.27.04, 2.2.27.05, 2.2.28.01, 2.2.28.04, 2.2.28.05, 2.2.29.01, 2.2.29.04, 2.2.29.05, 2.2.30.01, 2.2.31.01, 2.2.31.04, 2.2.31.05, 2.2.32.01, 2.2.32.04, 2.2.32.05, 2.2.33.01, 2.2.33.04, 2.2.33.05, 2.2.34.01, 2.2.34.04, 2.2.34.05, 2.2.35.01, 2.2.35.04, 2.2.35.05, 2.2.36.01, 2.2.36.04, 2.2.36.05, 2.2.37.01, 2.2.37.04, 2.2.37.05, 2.2.38.01, 2.2.38.04, 2.2.38.05, 2.2.39.01, 2.2.39.04, 2.2.39.05, 2.2.40.01, 2.2.40.04, 2.2.41.01, 2.2.41.02, 2.2.42.01, 2.2.42.02, 2.2.42.03, 2.2.42.05, 2.2.42.07, 2.2.43.02, 2.2.43.03, 2.2.44.03, 2.2.44.04, 2.2.45.02, 2.2.45.03, 2.2.47.03, 2.2.48.03","crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_identifier_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_birthdate_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_gender_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_allergy_intolerance-us_core_v610_allergy_intolerance_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_patient_status_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_coverage-us_core_v610_coverage_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_device-us_core_v610_device_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_patient_type_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_date_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_patient_intent_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_patient_intent_status_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_patient_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_patient_category_authored_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_organization-us_core_v610_organization_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_organization-us_core_v610_organization_address_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner_identifier_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_specialty_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_practitioner_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_specimen-us_core_v610_specimen__id_search_test"
|
|
319
|
+
hl7.fhir.us.core_6.1.0,58,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#fhir-restful-search-api-requirements,When searching using the `reference` type searchparameter [(how to search by reference)](http://hl7.org/fhir/R4/search.html#reference) The server **SHALL** support both [id and Type values],SHALL,Server,false,,,"2.2.3.01, 2.2.3.02, 2.2.3.03, 2.2.3.06, 2.2.3.07, 2.2.4.01, 2.2.5.01, 2.2.6.01, 2.2.7.01, 2.2.7.02, 2.2.8.01, 2.2.8.02, 2.2.9.01, 2.2.10.01, 2.2.11.01, 2.2.11.02, 2.2.11.05, 2.2.11.06, 2.2.12.01, 2.2.12.02, 2.2.12.05, 2.2.12.06, 2.2.13.01, 2.2.13.02, 2.2.13.03, 2.2.13.06, 2.2.13.07, 2.2.14.01, 2.2.14.02, 2.2.14.07, 2.2.15.01, 2.2.16.01, 2.2.17.01, 2.2.18.01, 2.2.18.03, 2.2.19.01, 2.2.19.04, 2.2.19.05, 2.2.20.01, 2.2.20.04, 2.2.20.05, 2.2.21.01, 2.2.21.04, 2.2.21.05, 2.2.22.01, 2.2.22.04, 2.2.22.05, 2.2.23.01, 2.2.23.04, 2.2.23.05, 2.2.24.01, 2.2.24.04, 2.2.24.05, 2.2.25.01, 2.2.25.04, 2.2.25.05, 2.2.26.01, 2.2.26.04, 2.2.26.05, 2.2.27.01, 2.2.27.04, 2.2.27.05, 2.2.28.01, 2.2.28.04, 2.2.28.05, 2.2.29.01, 2.2.29.04, 2.2.29.05, 2.2.30.01, 2.2.31.01, 2.2.31.04, 2.2.31.05, 2.2.32.01, 2.2.32.04, 2.2.32.05, 2.2.33.01, 2.2.33.04, 2.2.33.05, 2.2.34.01, 2.2.34.04, 2.2.34.05, 2.2.35.01, 2.2.35.04, 2.2.35.05, 2.2.36.01, 2.2.36.04, 2.2.36.05, 2.2.37.01, 2.2.37.04, 2.2.37.05, 2.2.38.01, 2.2.38.04, 2.2.38.05, 2.2.39.01, 2.2.39.04, 2.2.39.05, 2.2.40.01, 2.2.40.04, 2.2.41.01, 2.2.41.02, 2.2.42.01, 2.2.42.02, 2.2.42.03, 2.2.42.05, 2.2.42.07, 2.2.43.02, 2.2.43.03, 2.2.44.03, 2.2.44.04, 2.2.45.02, 2.2.45.03, 2.2.47.03, 2.2.48.03","crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_identifier_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_birthdate_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_gender_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_allergy_intolerance-us_core_v610_allergy_intolerance_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_patient_status_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_coverage-us_core_v610_coverage_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_device-us_core_v610_device_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_patient_type_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_date_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_patient_intent_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_patient_intent_status_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_patient_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_patient_category_authored_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_organization-us_core_v610_organization_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_organization-us_core_v610_organization_address_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner_identifier_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_specialty_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_practitioner_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_specimen-us_core_v610_specimen__id_search_test"
|
|
320
|
+
hl7.fhir.us.core_6.1.0,61,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#fhir-restful-search-api-requirements,When searching using the `date` type searchparameter [(how to search by date)](http://hl7.org/fhir/R4/search.html#date) The server **SHALL** support values precise to the day for elements of datatype `date`,SHALL,Server,false,,,"2.2.3.01, 2.2.3.02, 2.2.3.03, 2.2.3.06, 2.2.3.07, 2.2.4.01, 2.2.5.01, 2.2.6.01, 2.2.7.01, 2.2.7.02, 2.2.8.01, 2.2.8.02, 2.2.9.01, 2.2.10.01, 2.2.11.01, 2.2.11.02, 2.2.11.05, 2.2.11.06, 2.2.12.01, 2.2.12.02, 2.2.12.05, 2.2.12.06, 2.2.13.01, 2.2.13.02, 2.2.13.03, 2.2.13.06, 2.2.13.07, 2.2.14.01, 2.2.14.02, 2.2.14.07, 2.2.15.01, 2.2.16.01, 2.2.17.01, 2.2.18.01, 2.2.18.03, 2.2.19.01, 2.2.19.04, 2.2.19.05, 2.2.20.01, 2.2.20.04, 2.2.20.05, 2.2.21.01, 2.2.21.04, 2.2.21.05, 2.2.22.01, 2.2.22.04, 2.2.22.05, 2.2.23.01, 2.2.23.04, 2.2.23.05, 2.2.24.01, 2.2.24.04, 2.2.24.05, 2.2.25.01, 2.2.25.04, 2.2.25.05, 2.2.26.01, 2.2.26.04, 2.2.26.05, 2.2.27.01, 2.2.27.04, 2.2.27.05, 2.2.28.01, 2.2.28.04, 2.2.28.05, 2.2.29.01, 2.2.29.04, 2.2.29.05, 2.2.30.01, 2.2.31.01, 2.2.31.04, 2.2.31.05, 2.2.32.01, 2.2.32.04, 2.2.32.05, 2.2.33.01, 2.2.33.04, 2.2.33.05, 2.2.34.01, 2.2.34.04, 2.2.34.05, 2.2.35.01, 2.2.35.04, 2.2.35.05, 2.2.36.01, 2.2.36.04, 2.2.36.05, 2.2.37.01, 2.2.37.04, 2.2.37.05, 2.2.38.01, 2.2.38.04, 2.2.38.05, 2.2.39.01, 2.2.39.04, 2.2.39.05, 2.2.40.01, 2.2.40.04, 2.2.41.01, 2.2.41.02, 2.2.42.01, 2.2.42.02, 2.2.42.03, 2.2.42.05, 2.2.42.07, 2.2.43.02, 2.2.43.03, 2.2.44.03, 2.2.44.04, 2.2.45.02, 2.2.45.03, 2.2.47.03, 2.2.48.03","crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_identifier_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_birthdate_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_gender_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_allergy_intolerance-us_core_v610_allergy_intolerance_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_patient_status_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_coverage-us_core_v610_coverage_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_device-us_core_v610_device_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_patient_type_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_date_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_patient_intent_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_patient_intent_status_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_patient_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_patient_category_authored_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_organization-us_core_v610_organization_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_organization-us_core_v610_organization_address_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner_identifier_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_specialty_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_practitioner_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_specimen-us_core_v610_specimen__id_search_test"
|
|
321
|
+
hl7.fhir.us.core_6.1.0,62,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#fhir-restful-search-api-requirements,When searching using the `date` type searchparameter [(how to search by date)](http://hl7.org/fhir/R4/search.html#date) The server **SHALL** support values precise … to the second + time offset for elements of `datatype` dateTime,SHALL,Server,false,,,"2.2.3.01, 2.2.3.02, 2.2.3.03, 2.2.3.06, 2.2.3.07, 2.2.4.01, 2.2.5.01, 2.2.6.01, 2.2.7.01, 2.2.7.02, 2.2.8.01, 2.2.8.02, 2.2.9.01, 2.2.10.01, 2.2.11.01, 2.2.11.02, 2.2.11.05, 2.2.11.06, 2.2.12.01, 2.2.12.02, 2.2.12.05, 2.2.12.06, 2.2.13.01, 2.2.13.02, 2.2.13.03, 2.2.13.06, 2.2.13.07, 2.2.14.01, 2.2.14.02, 2.2.14.07, 2.2.15.01, 2.2.16.01, 2.2.17.01, 2.2.18.01, 2.2.18.03, 2.2.19.01, 2.2.19.04, 2.2.19.05, 2.2.20.01, 2.2.20.04, 2.2.20.05, 2.2.21.01, 2.2.21.04, 2.2.21.05, 2.2.22.01, 2.2.22.04, 2.2.22.05, 2.2.23.01, 2.2.23.04, 2.2.23.05, 2.2.24.01, 2.2.24.04, 2.2.24.05, 2.2.25.01, 2.2.25.04, 2.2.25.05, 2.2.26.01, 2.2.26.04, 2.2.26.05, 2.2.27.01, 2.2.27.04, 2.2.27.05, 2.2.28.01, 2.2.28.04, 2.2.28.05, 2.2.29.01, 2.2.29.04, 2.2.29.05, 2.2.30.01, 2.2.31.01, 2.2.31.04, 2.2.31.05, 2.2.32.01, 2.2.32.04, 2.2.32.05, 2.2.33.01, 2.2.33.04, 2.2.33.05, 2.2.34.01, 2.2.34.04, 2.2.34.05, 2.2.35.01, 2.2.35.04, 2.2.35.05, 2.2.36.01, 2.2.36.04, 2.2.36.05, 2.2.37.01, 2.2.37.04, 2.2.37.05, 2.2.38.01, 2.2.38.04, 2.2.38.05, 2.2.39.01, 2.2.39.04, 2.2.39.05, 2.2.40.01, 2.2.40.04, 2.2.41.01, 2.2.41.02, 2.2.42.01, 2.2.42.02, 2.2.42.03, 2.2.42.05, 2.2.42.07, 2.2.43.02, 2.2.43.03, 2.2.44.03, 2.2.44.04, 2.2.45.02, 2.2.45.03, 2.2.47.03, 2.2.48.03","crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_identifier_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_birthdate_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_gender_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_allergy_intolerance-us_core_v610_allergy_intolerance_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_patient_status_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_coverage-us_core_v610_coverage_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_device-us_core_v610_device_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_patient_type_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_date_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_patient_intent_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_patient_intent_status_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_patient_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_patient_category_authored_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_organization-us_core_v610_organization_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_organization-us_core_v610_organization_address_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner_identifier_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_specialty_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_practitioner_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_specimen-us_core_v610_specimen__id_search_test"
|
|
322
|
+
hl7.fhir.us.core_6.1.0,63,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#search-for-servers-requiring-status,Servers are strongly encouraged to support a query for resources without requiring a status parameter.,SHOULD,Server,false,,,"",""
|
|
323
|
+
hl7.fhir.us.core_6.1.0,64,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#search-for-servers-requiring-status,"If business requirements prohibit [querying a resource without a status parameter], they **SHALL** follow the guidelines here.",SHALL,Server,true,,,"",""
|
|
324
|
+
hl7.fhir.us.core_6.1.0,65,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#search-for-servers-requiring-status,"For searches where the client does not supply a status parameter, an implementation’s business rules may override the FHIR RESTful search expectations and require a status parameter to be provided",MAY,Server,false,,,"",""
|
|
325
|
+
hl7.fhir.us.core_6.1.0,66,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#search-for-servers-requiring-status,"For searches where the client does not supply a status parameter, … systems [that require a status parameter to be provided] are allowed to reject such requests as follows:
|
|
326
|
+
|
|
327
|
+
**SHALL** return an HTTP 400 status",SHALL,Server,false,,,"",""
|
|
328
|
+
hl7.fhir.us.core_6.1.0,67,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#search-for-servers-requiring-status,"For searches where the client does not supply a status parameter, … systems [that require a status parameter to be provided] are allowed to reject such requests as follows:
|
|
329
|
+
|
|
330
|
+
**SHALL** return an [OperationOutcome](http://hl7.org/fhir/R4/operationoutcome.html) specifying that status(es) must be present.",SHALL,Server,false,,,"",""
|
|
331
|
+
hl7.fhir.us.core_6.1.0,68,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#search-for-servers-requiring-status,"For searches where the client does not supply a status parameter, … systems [that require a status parameter to be provided] are allowed to reject such requests as follows:
|
|
332
|
+
|
|
333
|
+
**SHALL** support search with status if status required",SHALL,Server,false,,,"",""
|
|
334
|
+
hl7.fhir.us.core_6.1.0,69,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#search-for-servers-requiring-status,"[For systems that require a status parameter to be provided, they] **SHALL** NOT restrict search results ( i.e., apply ‘hidden’ filters) when a client includes status parameters in the query.",SHALL NOT,Server,false,,,"",""
|
|
335
|
+
hl7.fhir.us.core_6.1.0,70,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#search-for-servers-requiring-status,"[For systems that require a status parameter to be provided,] if a system doesn’t support a specific status code value that is queried, it **SHOULD** return an HTTP 200 status with a search bundle.",SHOULD,Server,true,,,"",""
|
|
336
|
+
hl7.fhir.us.core_6.1.0,71,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#search-for-servers-requiring-status,"[For systems that require a status parameter to be provided,] if a system doesn’t support a specific status code value that is queried [and returns a search bundle],... [t]he search bundle **SHOULD** contain resources matching the search criteria",SHOULD,Server,true,,,"",""
|
|
337
|
+
hl7.fhir.us.core_6.1.0,72,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#search-for-servers-requiring-status,"[For systems that require a status parameter to be provided,] if a system doesn’t support a specific status code value that is queried [and returns a search bundle],... [t]he search bundle **SHOULD** contain ... an OperationOutcome warning the client which status code value is not supported.",SHOULD,Server,true,,,"",""
|
|
338
|
+
hl7.fhir.us.core_6.1.0,73,https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#search-for-servers-requiring-status,"For searches where the client does not supply a status parameter, … systems [that require a status parameter to be provided] are allowed to reject such requests as follows:...
|
|
339
|
+
|
|
340
|
+
**SHALL** document this behavior in its CapabilityStatement for the “search-type” interaction in `CapabilityStatement.rest.resource.interaction.documentation.`",SHALL,Server,false,,,"",""
|
|
341
|
+
hl7.fhir.us.core_6.1.0,74,https://hl7.org/fhir/us/core/STU6.1/must-support.html#must-support-elements,"When an element is Mandatory, the data is expected always to be present.",SHALL,Server,false,,,"2.2.3.11, 2.2.4.05, 2.2.5.07, 2.2.6.06, 2.2.7.13, 2.2.8.13, 2.2.9.04, 2.2.10.06, 2.2.11.09, 2.2.12.09, 2.2.13.10, 2.2.14.12, 2.2.15.07, 2.2.16.06, 2.2.17.06, 2.2.18.07, 2.2.18.08, 2.2.19.08, 2.2.20.08, 2.2.21.08, 2.2.22.08, 2.2.23.08, 2.2.24.08, 2.2.25.08, 2.2.26.08, 2.2.27.08, 2.2.28.08, 2.2.29.08, 2.2.30.08, 2.2.31.08, 2.2.32.08, 2.2.33.08, 2.2.34.08, 2.2.35.08, 2.2.36.08, 2.2.37.08, 2.2.38.08, 2.2.39.08, 2.2.40.07, 2.2.41.08, 2.2.42.10, 2.2.43.04, 2.2.44.05, 2.2.45.04, 2.2.46.02, 2.2.47.07, 2.2.48.04","crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_allergy_intolerance-us_core_v610_allergy_intolerance_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_coverage-us_core_v610_coverage_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_device-us_core_v610_device_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_organization-us_core_v610_organization_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_provenance-us_core_v610_provenance_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_specimen-us_core_v610_specimen_validation_test"
|
|
342
|
+
hl7.fhir.us.core_6.1.0,75,https://hl7.org/fhir/us/core/STU6.1/must-support.html#must-support-elements,"For querying and reading US Core Profiles, Must Support on any profile data element **SHALL** be interpreted as follows…:
|
|
343
|
+
|
|
344
|
+
US Core Responders **SHALL** be capable of populating all data elements as part of the query results specified by the [US Core Server Capability Statement](https://hl7.org/fhir/us/core/STU6.1/CapabilityStatement-us-core-server.html).",SHALL,Server,true,,,"2.2.3.12, 2.2.4.06, 2.2.5.08, 2.2.6.07, 2.2.7.14, 2.2.8.14, 2.2.9.05, 2.2.10.07, 2.2.11.10, 2.2.12.10, 2.2.13.11, 2.2.14.13, 2.2.15.08, 2.2.16.07, 2.2.17.07, 2.2.18.09, 2.2.19.09, 2.2.20.09, 2.2.21.09, 2.2.22.09, 2.2.23.09, 2.2.24.09, 2.2.25.09, 2.2.26.09, 2.2.27.09, 2.2.28.09, 2.2.29.09, 2.2.30.09, 2.2.31.09, 2.2.32.09, 2.2.33.09, 2.2.34.09, 2.2.35.09, 2.2.36.09, 2.2.37.09, 2.2.38.09, 2.2.39.09, 2.2.40.08, 2.2.41.09, 2.2.42.11, 2.2.43.05, 2.2.44.06, 2.2.45.05, 2.2.46.03, 2.2.47.08, 2.2.48.05","crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_allergy_intolerance-us_core_v610_allergy_intolerance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_coverage-us_core_v610_coverage_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_device-us_core_v610_device_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_organization-us_core_v610_organization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_provenance-us_core_v610_provenance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_specimen-us_core_v610_specimen_must_support_test"
|
|
345
|
+
hl7.fhir.us.core_6.1.0,78,https://hl7.org/fhir/us/core/STU6.1/must-support.html#must-support-elements,"For querying and reading US Core Profiles, Must Support on any profile data element **SHALL** be interpreted as follows…:
|
|
346
|
+
|
|
347
|
+
When information on a particular data element is not present, and the reason for absence is unknown, US Core Responders **SHALL NOT** include the data elements in the resource instance returned as part of the query results.",SHALL NOT,Server,true,,,"",""
|
|
348
|
+
hl7.fhir.us.core_6.1.0,80,https://hl7.org/fhir/us/core/STU6.1/must-support.html#must-support-elements,"For querying and reading US Core Profiles, Must Support on any profile data element **SHALL** be interpreted as follows…:
|
|
349
|
+
|
|
350
|
+
In cases where information on a specific data element is missing, and the US Core Responder knows the precise reason for the absence of data (other than suppressed data), US Core Responders **SHOULD** send the reason for the missing information.",SHOULD,Server,true,,,"",""
|
|
351
|
+
hl7.fhir.us.core_6.1.0,81,https://hl7.org/fhir/us/core/STU6.1/must-support.html#must-support-elements,"[When sending reason for missing information, follow] the same methdology outlined in the [Missing Data](https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#missing-data) section but using the appropriate reason code instead of unknown [reason code].",SHOULD,Server,true,,,"",""
|
|
352
|
+
hl7.fhir.us.core_6.1.0,82.A,https://hl7.org/fhir/us/core/STU6.1/must-support.html#uscdi-requirements,"[T]he following US Core Profiles do not represent USCDI data classes, and their Mandatory and Must Support elements are not USCDI [v3] Requirements [for US Core Requestors and Responders seeking ONC certification in the ONC IT Health Certification program under US Core 6.1]: US Core Location Profile",MAY,"Server,Client",true,,,"",""
|
|
353
|
+
hl7.fhir.us.core_6.1.0,82.B,https://hl7.org/fhir/us/core/STU6.1/must-support.html#uscdi-requirements,"[T]he following US Core Profiles do not represent USCDI data classes, and their Mandatory and Must Support elements are not USCDI [v3] Requirements [for US Core Requestors and Responders seeking ONC certification in the ONC IT Health Certification program under US Core 6.1]: US Core Organization Profile",MAY,"Server,Client",true,,,"",""
|
|
354
|
+
hl7.fhir.us.core_6.1.0,82.C,https://hl7.org/fhir/us/core/STU6.1/must-support.html#uscdi-requirements,"[T]he following US Core Profiles do not represent USCDI data classes, and their Mandatory and Must Support elements are not USCDI [v3] Requirements [for US Core Requestors and Responders seeking ONC certification in the ONC IT Health Certification program under US Core 6.1]: US Core Practioner Profile",MAY,"Server,Client",true,,,"",""
|
|
355
|
+
hl7.fhir.us.core_6.1.0,82.D,https://hl7.org/fhir/us/core/STU6.1/must-support.html#uscdi-requirements,"[T]he following US Core Profiles do not represent USCDI data classes, and their Mandatory and Must Support elements are not USCDI [v3] Requirements [for US Core Requestors and Responders seeking ONC certification in the ONC IT Health Certification program under US Core 6.1]: US Core PractionerRole Profile",MAY,"Server,Client",true,,,"",""
|
|
356
|
+
hl7.fhir.us.core_6.1.0,84,https://hl7.org/fhir/us/core/STU6.1/must-support.html#additional-uscdi-requirements,Implementors [US Core Responders] seeking ONC certification [in the ONC IT Health Certification program] **SHALL** interpret Additional USCDI Requirements as Must Support elements as documented above,SHALL,Server,true,Not Tested,This requirement is specific to certification testing and is not relevant to the IG tests,NA,NA
|
|
357
|
+
hl7.fhir.us.core_6.1.0,86,https://hl7.org/fhir/us/core/STU6.1/must-support.html#additional-uscdi-requirements,Implementors [US Core Responders] [not] seeking ONC certification [in the ONC IT Health Certification program] **SHALL** interpret Additional USCDI Requirements as … optional.,SHALL,Server,true,,,"",""
|
|
358
|
+
hl7.fhir.us.core_6.1.0,87,https://hl7.org/fhir/us/core/STU6.1/must-support.html#defined-pattern-elements,"If an element is marked as Must Support and defined by a pattern [as described by [ElementDefinition.pattern](http://hl7.org/fhir/R4/elementdefinition-definitions.html#ElementDefinition.pattern_x_)], then the pattern defines the elements and element values that the server **SHALL** be capable of providing.",SHALL,Server,false,,,"2.2.3.12, 2.2.4.06, 2.2.5.08, 2.2.6.07, 2.2.7.14, 2.2.8.14, 2.2.9.05, 2.2.10.07, 2.2.11.10, 2.2.12.10, 2.2.13.11, 2.2.14.13, 2.2.15.08, 2.2.16.07, 2.2.17.07, 2.2.18.09, 2.2.19.09, 2.2.20.09, 2.2.21.09, 2.2.22.09, 2.2.23.09, 2.2.24.09, 2.2.25.09, 2.2.26.09, 2.2.27.09, 2.2.28.09, 2.2.29.09, 2.2.30.09, 2.2.31.09, 2.2.32.09, 2.2.33.09, 2.2.34.09, 2.2.35.09, 2.2.36.09, 2.2.37.09, 2.2.38.09, 2.2.39.09, 2.2.40.08, 2.2.41.09, 2.2.42.11, 2.2.43.05, 2.2.44.06, 2.2.45.05, 2.2.46.03, 2.2.47.08, 2.2.48.05","crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_allergy_intolerance-us_core_v610_allergy_intolerance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_coverage-us_core_v610_coverage_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_device-us_core_v610_device_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_organization-us_core_v610_organization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_provenance-us_core_v610_provenance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_specimen-us_core_v610_specimen_must_support_test"
|
|
359
|
+
hl7.fhir.us.core_6.1.0,90,https://hl7.org/fhir/us/core/STU6.1/must-support.html#must-support---primitive-element,"Primitive elements are single elements with a primitive value. If they are marked as Must Support, then the server **SHALL** be capable of providing the element value to meet the Must Support requirement.",SHALL,Server,false,,,"2.2.3.12, 2.2.4.06, 2.2.5.08, 2.2.6.07, 2.2.7.14, 2.2.8.14, 2.2.9.05, 2.2.10.07, 2.2.11.10, 2.2.12.10, 2.2.13.11, 2.2.14.13, 2.2.15.08, 2.2.16.07, 2.2.17.07, 2.2.18.09, 2.2.19.09, 2.2.20.09, 2.2.21.09, 2.2.22.09, 2.2.23.09, 2.2.24.09, 2.2.25.09, 2.2.26.09, 2.2.27.09, 2.2.28.09, 2.2.29.09, 2.2.30.09, 2.2.31.09, 2.2.32.09, 2.2.33.09, 2.2.34.09, 2.2.35.09, 2.2.36.09, 2.2.37.09, 2.2.38.09, 2.2.39.09, 2.2.40.08, 2.2.41.09, 2.2.42.11, 2.2.43.05, 2.2.44.06, 2.2.45.05, 2.2.46.03, 2.2.47.08, 2.2.48.05","crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_allergy_intolerance-us_core_v610_allergy_intolerance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_coverage-us_core_v610_coverage_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_device-us_core_v610_device_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_organization-us_core_v610_organization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_provenance-us_core_v610_provenance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_specimen-us_core_v610_specimen_must_support_test"
|
|
360
|
+
hl7.fhir.us.core_6.1.0,91,https://hl7.org/fhir/us/core/STU6.1/must-support.html#must-support---primitive-element,[W]hen claiming conformance [to a profile with a must support primitive element] … US Core responders SHALL be capable of providing the value [of the primitive element],SHALL,Server,false,,,"2.2.3.12, 2.2.4.06, 2.2.5.08, 2.2.6.07, 2.2.7.14, 2.2.8.14, 2.2.9.05, 2.2.10.07, 2.2.11.10, 2.2.12.10, 2.2.13.11, 2.2.14.13, 2.2.15.08, 2.2.16.07, 2.2.17.07, 2.2.18.09, 2.2.19.09, 2.2.20.09, 2.2.21.09, 2.2.22.09, 2.2.23.09, 2.2.24.09, 2.2.25.09, 2.2.26.09, 2.2.27.09, 2.2.28.09, 2.2.29.09, 2.2.30.09, 2.2.31.09, 2.2.32.09, 2.2.33.09, 2.2.34.09, 2.2.35.09, 2.2.36.09, 2.2.37.09, 2.2.38.09, 2.2.39.09, 2.2.40.08, 2.2.41.09, 2.2.42.11, 2.2.43.05, 2.2.44.06, 2.2.45.05, 2.2.46.03, 2.2.47.08, 2.2.48.05","crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_allergy_intolerance-us_core_v610_allergy_intolerance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_coverage-us_core_v610_coverage_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_device-us_core_v610_device_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_organization-us_core_v610_organization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_provenance-us_core_v610_provenance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_specimen-us_core_v610_specimen_must_support_test"
|
|
361
|
+
hl7.fhir.us.core_6.1.0,93,https://hl7.org/fhir/us/core/STU6.1/must-support.html#must-support---complex-elements,"For any complex element marked as Must Support, the server **SHALL** be capable of providing at least one of the sub-element values.",SHALL,Server,false,,,"2.2.3.12, 2.2.4.06, 2.2.5.08, 2.2.6.07, 2.2.7.14, 2.2.8.14, 2.2.9.05, 2.2.10.07, 2.2.11.10, 2.2.12.10, 2.2.13.11, 2.2.14.13, 2.2.15.08, 2.2.16.07, 2.2.17.07, 2.2.18.09, 2.2.19.09, 2.2.20.09, 2.2.21.09, 2.2.22.09, 2.2.23.09, 2.2.24.09, 2.2.25.09, 2.2.26.09, 2.2.27.09, 2.2.28.09, 2.2.29.09, 2.2.30.09, 2.2.31.09, 2.2.32.09, 2.2.33.09, 2.2.34.09, 2.2.35.09, 2.2.36.09, 2.2.37.09, 2.2.38.09, 2.2.39.09, 2.2.40.08, 2.2.41.09, 2.2.42.11, 2.2.43.05, 2.2.44.06, 2.2.45.05, 2.2.46.03, 2.2.47.08, 2.2.48.05","crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_allergy_intolerance-us_core_v610_allergy_intolerance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_coverage-us_core_v610_coverage_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_device-us_core_v610_device_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_organization-us_core_v610_organization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_provenance-us_core_v610_provenance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_specimen-us_core_v610_specimen_must_support_test"
|
|
362
|
+
hl7.fhir.us.core_6.1.0,94,https://hl7.org/fhir/us/core/STU6.1/must-support.html#must-support---complex-elements,"If any sub-element is marked as Must Support [for a complex element], it must also meet the Must Support requirements and satisfy the Must Support requirements for the parent element.",SHALL,Server,false,,,"2.2.3.12, 2.2.4.06, 2.2.5.08, 2.2.6.07, 2.2.7.14, 2.2.8.14, 2.2.9.05, 2.2.10.07, 2.2.11.10, 2.2.12.10, 2.2.13.11, 2.2.14.13, 2.2.15.08, 2.2.16.07, 2.2.17.07, 2.2.18.09, 2.2.19.09, 2.2.20.09, 2.2.21.09, 2.2.22.09, 2.2.23.09, 2.2.24.09, 2.2.25.09, 2.2.26.09, 2.2.27.09, 2.2.28.09, 2.2.29.09, 2.2.30.09, 2.2.31.09, 2.2.32.09, 2.2.33.09, 2.2.34.09, 2.2.35.09, 2.2.36.09, 2.2.37.09, 2.2.38.09, 2.2.39.09, 2.2.40.08, 2.2.41.09, 2.2.42.11, 2.2.43.05, 2.2.44.06, 2.2.45.05, 2.2.46.03, 2.2.47.08, 2.2.48.05","crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_allergy_intolerance-us_core_v610_allergy_intolerance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_coverage-us_core_v610_coverage_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_device-us_core_v610_device_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_organization-us_core_v610_organization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_provenance-us_core_v610_provenance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_specimen-us_core_v610_specimen_must_support_test"
|
|
363
|
+
hl7.fhir.us.core_6.1.0,95,https://hl7.org/fhir/us/core/STU6.1/must-support.html#must-support---complex-elements,"[I]f any sub-element is marked as Must Support [for a complex element] and the parent element is not, there is no expectation that you must support the parent.",MAY,Server,false,,,"",""
|
|
364
|
+
hl7.fhir.us.core_6.1.0,96,https://hl7.org/fhir/us/core/STU6.1/must-support.html#must-support---complex-elements,"[I]f any sub-element is marked as Must Support [for a complex element] and the parent element is not… [and] the parent element is represented in the structure, you must support the sub-element (s) marked as Must Support.",SHALL,Server,false,,,"",""
|
|
365
|
+
hl7.fhir.us.core_6.1.0,97,https://hl7.org/fhir/us/core/STU6.1/must-support.html#must-support---complex-elements,[When claiming conformance to a must support complex element with no must support sub-elements US Core Responders SHALL be capable of providing a value in the sub-element],SHALL,Server,false,,,"2.2.3.12, 2.2.4.06, 2.2.5.08, 2.2.6.07, 2.2.7.14, 2.2.8.14, 2.2.9.05, 2.2.10.07, 2.2.11.10, 2.2.12.10, 2.2.13.11, 2.2.14.13, 2.2.15.08, 2.2.16.07, 2.2.17.07, 2.2.18.09, 2.2.19.09, 2.2.20.09, 2.2.21.09, 2.2.22.09, 2.2.23.09, 2.2.24.09, 2.2.25.09, 2.2.26.09, 2.2.27.09, 2.2.28.09, 2.2.29.09, 2.2.30.09, 2.2.31.09, 2.2.32.09, 2.2.33.09, 2.2.34.09, 2.2.35.09, 2.2.36.09, 2.2.37.09, 2.2.38.09, 2.2.39.09, 2.2.40.08, 2.2.41.09, 2.2.42.11, 2.2.43.05, 2.2.44.06, 2.2.45.05, 2.2.46.03, 2.2.47.08, 2.2.48.05","crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_allergy_intolerance-us_core_v610_allergy_intolerance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_coverage-us_core_v610_coverage_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_device-us_core_v610_device_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_organization-us_core_v610_organization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_provenance-us_core_v610_provenance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_specimen-us_core_v610_specimen_must_support_test"
|
|
366
|
+
hl7.fhir.us.core_6.1.0,99,https://hl7.org/fhir/us/core/STU6.1/must-support.html#must-support---complex-elements,When claiming conformance [to a must support complex element with one or more must support sub-elements] … US Core Responders SHALL be capable of providing a value in [each must support sub-element],SHALL,Server,false,,,"2.2.3.12, 2.2.4.06, 2.2.5.08, 2.2.6.07, 2.2.7.14, 2.2.8.14, 2.2.9.05, 2.2.10.07, 2.2.11.10, 2.2.12.10, 2.2.13.11, 2.2.14.13, 2.2.15.08, 2.2.16.07, 2.2.17.07, 2.2.18.09, 2.2.19.09, 2.2.20.09, 2.2.21.09, 2.2.22.09, 2.2.23.09, 2.2.24.09, 2.2.25.09, 2.2.26.09, 2.2.27.09, 2.2.28.09, 2.2.29.09, 2.2.30.09, 2.2.31.09, 2.2.32.09, 2.2.33.09, 2.2.34.09, 2.2.35.09, 2.2.36.09, 2.2.37.09, 2.2.38.09, 2.2.39.09, 2.2.40.08, 2.2.41.09, 2.2.42.11, 2.2.43.05, 2.2.44.06, 2.2.45.05, 2.2.46.03, 2.2.47.08, 2.2.48.05","crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_allergy_intolerance-us_core_v610_allergy_intolerance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_coverage-us_core_v610_coverage_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_device-us_core_v610_device_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_organization-us_core_v610_organization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_provenance-us_core_v610_provenance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_specimen-us_core_v610_specimen_must_support_test"
|
|
367
|
+
hl7.fhir.us.core_6.1.0,101,https://hl7.org/fhir/us/core/STU6.1/must-support.html#must-support---complex-elements,"Systems [US Core Responders] can support the other elements [of a complex element, not labeled as a Must Support], but this is not a requirement of US Core",MAY,Server,false,,,"",""
|
|
368
|
+
hl7.fhir.us.core_6.1.0,103,https://hl7.org/fhir/us/core/STU6.1/must-support.html#must-support---complex-elements,"The U.S. Core Data for Interoperability (USCDI) may require additional elements, [which is a requirement for certification in the ONC IT Health Certification program, but not a requirement of US Core conformance for US Core Responders]",MAY,Server,false,,,"",""
|
|
369
|
+
hl7.fhir.us.core_6.1.0,105,https://hl7.org/fhir/us/core/STU6.1/must-support.html#must-support---resource-references,"In certain profiles, only specific resource references are labeled as Must Support.
|
|
370
|
+
|
|
371
|
+
...
|
|
372
|
+
|
|
373
|
+
- US Core Responders **SHALL** be capable of providing [such an element] with a valid reference to [all listed Must Support profile(s).]",SHALL,Server,false,,,"2.2.4.07, 2.2.5.09, 2.2.6.08, 2.2.7.15, 2.2.8.15, 2.2.9.06, 2.2.10.08, 2.2.11.11, 2.2.12.11, 2.2.13.12, 2.2.14.14, 2.2.15.09, 2.2.16.08, 2.2.17.08, 2.2.18.10, 2.2.19.10, 2.2.20.10, 2.2.21.10, 2.2.22.10, 2.2.23.10, 2.2.24.10, 2.2.25.10, 2.2.26.10, 2.2.27.10, 2.2.28.10, 2.2.29.10, 2.2.30.10, 2.2.31.10, 2.2.32.10, 2.2.33.10, 2.2.34.10, 2.2.35.10, 2.2.36.10, 2.2.37.10, 2.2.38.10, 2.2.39.10, 2.2.40.09, 2.2.41.10, 2.2.42.12, 2.2.45.06, 2.2.46.04, 2.2.47.09, 2.2.48.06","crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_allergy_intolerance-us_core_v610_allergy_intolerance_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_coverage-us_core_v610_coverage_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_device-us_core_v610_device_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_provenance-us_core_v610_provenance_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_specimen-us_core_v610_specimen_reference_resolution_test"
|
|
374
|
+
hl7.fhir.us.core_6.1.0,107,https://hl7.org/fhir/us/core/STU6.1/must-support.html#must-support---resource-references,"Systems [US Core Responders] can support other [resource] references [other than those labeled as Must Support], but this is not a requirement of US Core",MAY,Server,,,,"",""
|
|
375
|
+
hl7.fhir.us.core_6.1.0,109,https://hl7.org/fhir/us/core/STU6.1/must-support.html#must-support---resource-references,"In specific profiles, only a single resource reference is present on an element labeled Must Support.
|
|
376
|
+
|
|
377
|
+
...
|
|
378
|
+
|
|
379
|
+
- US Core Responders **SHALL** be capable of providing [such an element] with a valid reference to [the Must Support Profile.]",SHALL,Server,false,,,"2.2.4.07, 2.2.5.09, 2.2.6.08, 2.2.7.15, 2.2.8.15, 2.2.9.06, 2.2.10.08, 2.2.11.11, 2.2.12.11, 2.2.13.12, 2.2.14.14, 2.2.15.09, 2.2.16.08, 2.2.17.08, 2.2.18.10, 2.2.19.10, 2.2.20.10, 2.2.21.10, 2.2.22.10, 2.2.23.10, 2.2.24.10, 2.2.25.10, 2.2.26.10, 2.2.27.10, 2.2.28.10, 2.2.29.10, 2.2.30.10, 2.2.31.10, 2.2.32.10, 2.2.33.10, 2.2.34.10, 2.2.35.10, 2.2.36.10, 2.2.37.10, 2.2.38.10, 2.2.39.10, 2.2.40.09, 2.2.41.10, 2.2.42.12, 2.2.45.06, 2.2.46.04, 2.2.47.09, 2.2.48.06","crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_allergy_intolerance-us_core_v610_allergy_intolerance_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_coverage-us_core_v610_coverage_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_device-us_core_v610_device_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_provenance-us_core_v610_provenance_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_specimen-us_core_v610_specimen_reference_resolution_test"
|
|
380
|
+
hl7.fhir.us.core_6.1.0,111,https://hl7.org/fhir/us/core/STU6.1/must-support.html#must-support---choice-of-data-types,"Some elements allow different data types (e.g., Observation.effective[x]) for their content. Only specific data type choice elements are labeled Must Support in these situations.
|
|
381
|
+
|
|
382
|
+
… When claiming conformance to [such a] profile:
|
|
383
|
+
|
|
384
|
+
- US Core Responders **SHALL** be capable of populating [the Must Support data type choice]",SHALL,Server,false,,,"2.2.3.12, 2.2.4.06, 2.2.5.08, 2.2.6.07, 2.2.7.14, 2.2.8.14, 2.2.9.05, 2.2.10.07, 2.2.11.10, 2.2.12.10, 2.2.13.11, 2.2.14.13, 2.2.15.08, 2.2.16.07, 2.2.17.07, 2.2.18.09, 2.2.19.09, 2.2.20.09, 2.2.21.09, 2.2.22.09, 2.2.23.09, 2.2.24.09, 2.2.25.09, 2.2.26.09, 2.2.27.09, 2.2.28.09, 2.2.29.09, 2.2.30.09, 2.2.31.09, 2.2.32.09, 2.2.33.09, 2.2.34.09, 2.2.35.09, 2.2.36.09, 2.2.37.09, 2.2.38.09, 2.2.39.09, 2.2.40.08, 2.2.41.09, 2.2.42.11, 2.2.43.05, 2.2.44.06, 2.2.45.05, 2.2.46.03, 2.2.47.08, 2.2.48.05","crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_allergy_intolerance-us_core_v610_allergy_intolerance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_coverage-us_core_v610_coverage_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_device-us_core_v610_device_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_organization-us_core_v610_organization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_provenance-us_core_v610_provenance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_specimen-us_core_v610_specimen_must_support_test"
|
|
385
|
+
hl7.fhir.us.core_6.1.0,114,https://hl7.org/fhir/us/core/STU6.1/must-support.html#must-support---choice-of-data-types,"Some elements allow different data types (e.g., Observation.effective[x]) for their content. Only specific data type choice elements are labeled Must Support in these situations.
|
|
386
|
+
|
|
387
|
+
…
|
|
388
|
+
|
|
389
|
+
[US Core Responders] **MAY** support populating ... other [data type] choice elements (such as Observation.effectivePeriod), but this is not a requirement of US Core.",MAY,Server,false,,,"",""
|
|
390
|
+
hl7.fhir.us.core_6.1.0,115,https://hl7.org/fhir/us/core/STU6.1/must-support.html#must-support---choice-of-profile-elements,"There are several instances in this Guide where there is a choice of supporting one or another profile element to meet the Must Support requirement. In such cases, the server **SHALL** support at least one element.",SHALL,Server,false,,,"2.2.3.12, 2.2.4.06, 2.2.5.08, 2.2.6.07, 2.2.7.14, 2.2.8.14, 2.2.9.05, 2.2.10.07, 2.2.11.10, 2.2.12.10, 2.2.13.11, 2.2.14.13, 2.2.15.08, 2.2.16.07, 2.2.17.07, 2.2.18.09, 2.2.19.09, 2.2.20.09, 2.2.21.09, 2.2.22.09, 2.2.23.09, 2.2.24.09, 2.2.25.09, 2.2.26.09, 2.2.27.09, 2.2.28.09, 2.2.29.09, 2.2.30.09, 2.2.31.09, 2.2.32.09, 2.2.33.09, 2.2.34.09, 2.2.35.09, 2.2.36.09, 2.2.37.09, 2.2.38.09, 2.2.39.09, 2.2.40.08, 2.2.41.09, 2.2.42.11, 2.2.43.05, 2.2.44.06, 2.2.45.05, 2.2.46.03, 2.2.47.08, 2.2.48.05","crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_allergy_intolerance-us_core_v610_allergy_intolerance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_coverage-us_core_v610_coverage_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_device-us_core_v610_device_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_respiratory_rate-us_core_v610_respiratory_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_simple_observation-us_core_v610_simple_observation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_heart_rate-us_core_v610_heart_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_temperature-us_core_v610_body_temperature_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_weight_for_height-us_core_v610_pediatric_weight_for_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pulse_oximetry-us_core_v610_pulse_oximetry_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_smokingstatus-us_core_v610_smokingstatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference-us_core_v610_head_circumference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_height-us_core_v610_body_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_bmi-us_core_v610_bmi_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_blood_pressure-us_core_v610_blood_pressure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_pediatric_bmi_for_age-us_core_v610_pediatric_bmi_for_age_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_head_circumference_percentile-us_core_v610_head_circumference_percentile_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_body_weight-us_core_v610_body_weight_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_organization-us_core_v610_organization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner-us_core_v610_practitioner_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_practitioner_role-us_core_v610_practitioner_role_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_provenance-us_core_v610_provenance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_specimen-us_core_v610_specimen_must_support_test"
|
|
391
|
+
hl7.fhir.us.core_6.1.0,174,https://hl7.org/fhir/us/core/STU6.1/general-guidance.html#referencing-us-core-profiles,"Therefore, a [reference](http://hl7.org/fhir/R4/references.html) to a US Core resource SHOULD include a logical id (Reference.reference), not an identifier (Reference.identifier).",SHOULD,Server,false,,,"",""
|
|
392
|
+
hl7.fhir.us.core_6.1.0,175,https://hl7.org/fhir/us/core/STU6.1/general-guidance.html#referencing-us-core-profiles,"For all references, US Core Responders SHOULD return resources that conform to a US Core profile if a US Core profile exists for the resource type.",SHOULD,Server,false,,,"",""
|
|
393
|
+
hl7.fhir.us.core_6.1.0,176,https://hl7.org/fhir/us/core/STU6.1/general-guidance.html#contained-resources,"When responding to a query, servers SHOULD not use inline [contained](http://hl7.org/fhir/R4/references.html#contained) resources to represent the returned data.",SHOULD NOT,Server,false,,,"",""
|
|
394
|
+
hl7.fhir.us.core_6.1.0,177,https://hl7.org/fhir/us/core/STU6.1/general-guidance.html#contained-resources,"[I]f referencing a contained resource in a US Core Profile, the contained resource SHOULD be a US Core Profile if a US Core Profile exists for the resource type.",SHOULD,Server,false,,,"",""
|
|
395
|
+
hl7.fhir.us.core_6.1.0,178,https://hl7.org/fhir/us/core/STU6.1/general-guidance.html#suppressed-data,[M]asking data [where a specific piece of data is hidden for security and privacy reasons] SHOULD be handled based on implemented policies.,SHOULD,Server,false,,,"",""
|
|
396
|
+
hl7.fhir.us.core_6.1.0,179,https://hl7.org/fhir/us/core/STU6.1/general-guidance.html#suppressed-data,"[When masking data] elements with a minimum cardinality = 0 (including elements labeled Must Support) [for security and privacy reasons], the element SHOULD be omitted from the resource.",SHOULD,Server,true,,,"",""
|
|
397
|
+
hl7.fhir.us.core_6.1.0,180,https://hl7.org/fhir/us/core/STU6.1/general-guidance.html#suppressed-data,"[When masking] Mandatory elements (in other words, where the minimum cardinality is > 0) [for security and privacy reasons, use the code “unknown” following the guidance on Missing Data in the Conformance Sections.",SHOULD,Server,true,,,"",""
|
|
398
|
+
hl7.fhir.us.core_6.1.0,181,https://hl7.org/fhir/us/core/STU6.1/general-guidance.html#snomed-ct-united-states-edition,"[When using SNOMED codes in US Core Profiles I]mplementers MAY use the default system URI [of [SNOMED CT](http://snomed.info/sct)], which refers to an unspecified edition/version [of SNOMED]",MAY,Server,true,,,"",""
|
|
399
|
+
hl7.fhir.us.core_6.1.0,182,https://hl7.org/fhir/us/core/STU6.1/general-guidance.html#snomed-ct-united-states-edition,"[To enable] terminology servers to be able to validate US Edition-only codes [of [SNOMED CT](http://snomed.info/sct)], implementers SHOULD provide the accompanying system URI to describe … the edition",SHOULD,Server,false,,,"",""
|
|
400
|
+
hl7.fhir.us.core_6.1.0,182.A,https://hl7.org/fhir/us/core/STU6.1/general-guidance.html#snomed-ct-united-states-edition,"[To enable] terminology servers to be able to validate US Edition-only codes [of [SNOMED CT](http://snomed.info/sct)], implementers SHOULD provide the accompanying system URI to describe … the version",SHOULD,Server,false,,,"",""
|
|
401
|
+
hl7.fhir.us.core_6.1.0,183,https://hl7.org/fhir/us/core/STU6.1/general-guidance.html#using-ucum-codes-in-the-quantity-datatype,"[If a] US Core Profiles binds the Quantity.code element in the Quantity datatype to the [UCUM](http://unitsofmeasure.org/) code system, [then] systems should also use UCUM for the optional valueRange and valueRatio datatypes (which are complex datatypes with Quantity elements)",SHOULD,Server,true,,,"",""
|
|
402
|
+
hl7.fhir.us.core_6.1.0,184,https://hl7.org/fhir/us/core/STU6.1/general-guidance.html#using-ucum-codes-in-the-quantity-datatype,"[If a] US Core Profiles binds the Quantity.code element in the Quantity datatype to the [UCUM](http://unitsofmeasure.org/) code system, [when] UCUM code [is] provided [it SHOULD be indicated in the Quantity.unit and Quantity.code elements with Quantity.system = ""http://unitsofmeasure.org""]",SHOULD,Server,true,,,"",""
|
|
403
|
+
hl7.fhir.us.core_6.1.0,185,https://hl7.org/fhir/us/core/STU6.1/general-guidance.html#using-ucum-codes-in-the-quantity-datatype,"[If a] US Core Profiles binds the Quantity.code element in the Quantity datatype to the [UCUM](http://unitsofmeasure.org/) code system, [then] if UCUM units are unavailable, represent units in the unit element",SHOULD,Server,true,,,"",""
|
|
404
|
+
hl7.fhir.us.core_6.1.0,186,https://hl7.org/fhir/us/core/STU6.1/general-guidance.html#using-ucum-codes-in-the-quantity-datatype,"[If a] US Core Profiles binds the Quantity.code element in the Quantity datatype to the [UCUM](http://unitsofmeasure.org/) code system, [when]
|
|
405
|
+
no units [are available systems SHOULD NOT supply the unit field]",SHOULD NOT,Server,true,,,"",""
|
|
406
|
+
hl7.fhir.us.core_6.1.0,187,"https://hl7.org/fhir/us/core/STU6.1/general-guidance.html#representing-deleted-information, https://hl7.org/fhir/us/core/STU6.1/general-guidance.html#representing-entered-in-error-information",A FHIR Server SHOULD not delete records.,SHOULD NOT,Server,false,,,"",""
|
|
407
|
+
hl7.fhir.us.core_6.1.0,188,https://hl7.org/fhir/us/core/STU6.1/general-guidance.html#representing-deleted-information,A FHIR server SHOULD update the appropriate resource status to entered-in-error or inactive [when requested to delete records],SHOULD,Server,false,,,"",""
|
|
408
|
+
hl7.fhir.us.core_6.1.0,189,"https://hl7.org/fhir/us/core/STU6.1/general-guidance.html#representing-deleted-information, https://hl7.org/fhir/us/core/STU6.1/general-guidance.html#representing-entered-in-error-information","If a system supports the deletion of records, they SHOULD refer to the [Deletion Safety Checks](http://hl7.org/fhir/R4/safety.html#conformance) in the FHIR specification.",SHOULD,Server,true,,,"",""
|
|
409
|
+
hl7.fhir.us.core_6.1.0,190,https://hl7.org/fhir/us/core/STU6.1/general-guidance.html#representing-entered-in-error-information,A FHIR Server SHOULD allow these resources [those entered in error] to be searchable by client applications.,SHOULD,Server,true,,,"",""
|
|
410
|
+
hl7.fhir.us.core_6.1.0,191,https://hl7.org/fhir/us/core/STU6.1/general-guidance.html#representing-entered-in-error-information,"If the FHIR server has updated the resource status to entered-in-error:
|
|
411
|
+
For patient facing applications, A FHIR Server SHOULD remove the resource’s contents, leaving only an id and status. Note that this typically will not conform to the US Core or FHIR StructureDefinitions.",SHOULD,Server,true,,,"",""
|
|
412
|
+
hl7.fhir.us.core_6.1.0,192,https://hl7.org/fhir/us/core/STU6.1/general-guidance.html#representing-entered-in-error-information,"If the FHIR server has updated the resource status to entered-in-error:
|
|
413
|
+
...
|
|
414
|
+
For provider-facing applications, the content may be supplied with content and additional detail (such as the reason for the status change) that the patient viewing system would typically not have access to.",MAY,Server,true,,,"",""
|
|
415
|
+
hl7.fhir.us.core_6.1.0,193,https://hl7.org/fhir/us/core/STU6.1/general-guidance.html#language-support,the data provider SHOULD do their best to translate (safely) to the requested language [when accessing records in a native or requested language],SHOULD,Server,false,,,"",""
|
|
416
|
+
hl7.fhir.us.core_6.1.0,195,https://hl7.org/fhir/us/core/STU6.1/general-guidance.html#language-support,[When clients request a resource in a specific language] servers SHOULD make reasonable efforts to translate what can be safely translated.,SHOULD,Server,true,,,"",""
|
|
417
|
+
hl7.fhir.us.core_6.1.0,196,https://hl7.org/fhir/us/core/STU6.1/general-guidance.html#language-support,"[When clients request a resource in a specific language] servers SHOULD populate the Resource’s language element with a code based on the underlying language of record, not the requested language.",SHOULD,Server,true,,,"",""
|
|
418
|
+
hl7.fhir.us.core_6.1.0,197,https://hl7.org/fhir/us/core/STU6.1/general-guidance.html#language-support,"[When clients request a resource in a specific language] Servers SHOULD … [use] the [Human Language](http://hl7.org/fhir/R4/extension-language.html) Extension when the language of a display, etc, is known to differ from the stated (or inferred) language.",SHOULD,Server,true,,,"",""
|
|
419
|
+
hl7.fhir.us.core_6.1.0,198,https://hl7.org/fhir/us/core/STU6.1/general-guidance.html#language-support,[When clients request a resource in a specific language] [servers SHOULD use] the [Translation](http://hl7.org/fhir/R4/extension-translation.html) Extension when the server provides additional translations by its own choice or in response to a different Accept-Language than what the resource is stored in.,SHOULD,Server,true,,,"",""
|
|
420
|
+
hl7.fhir.us.core_6.1.0,199,https://hl7.org/fhir/us/core/STU6.1/general-guidance.html#language-support,"[When clients request a resource in a specific language] servers SHOULD make it known what languages are supported in their CapabilityStatement(s) using this extension:
|
|
421
|
+
http://hl7.org/fhir/5.0/StructureDefinition/extension-CapablilityStatement.acceptLanguage [[definition](https://hl7.org/fhir/R5/capabilitystatement-definitions.html#CapabilityStatement.acceptLanguage)]",SHOULD,Server,true,,,"",""
|
|
422
|
+
hl7.fhir.us.core_6.1.0,203,https://hl7.org/fhir/us/core/STU6.1/general-guidance.html#compartment-based-search,"US Core servers [MAY support compartment based searchs, but] are not required to support patient [compartment](http://hl7.org/fhir/R4/compartmentdefinition.html) based searches.",MAY,Server,false,,,"",""
|
|
423
|
+
hl7.fhir.us.core_6.1.0,204,https://hl7.org/fhir/us/core/STU6.1/general-guidance.html#across-platform-searches,"US Core servers [MAY resolve absolute URLs, but] are not required to resolve absolute URLs external to their environment.",MAY,Server,false,,,"",""
|
|
424
|
+
hl7.fhir.us.core_6.1.0,205,https://hl7.org/fhir/us/core/STU6.1/general-guidance.html#limiting-the-number-of-search-results,Servers can [MAY] choose to return the results in a series of pages to manage the number of search results returned.,MAY,Server,false,,,"",""
|
|
425
|
+
hl7.fhir.us.core_6.1.0,206,"https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#clinical-notes, https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#support-requirements","Servers SHALL support, at minimum, these … ""Common Clinical Notes"":
|
|
426
|
+
[Consultation Note (11488-4)](https://loinc.org/11488-4.html)",SHALL,Server,false,,,2.2.49,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v400_clinical_notes_guidance
|
|
427
|
+
hl7.fhir.us.core_6.1.0,207,"https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#clinical-notes, https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#support-requirements","Servers SHALL support, at minimum, these … ""Common Clinical Notes"":
|
|
428
|
+
[Discharge Summary (18842-5)](https://loinc.org/18842-5.html)",SHALL,Server,false,,,2.2.49,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v400_clinical_notes_guidance
|
|
429
|
+
hl7.fhir.us.core_6.1.0,208,"https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#clinical-notes, https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#support-requirements","Servers SHALL support, at minimum, these … ""Common Clinical Notes"":
|
|
430
|
+
[History & Physical Note (34117-2)](https://loinc.org/34117-2.html)",SHALL,Server,false,,,2.2.49,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v400_clinical_notes_guidance
|
|
431
|
+
hl7.fhir.us.core_6.1.0,209,"https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#clinical-notes, https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#support-requirements","Servers SHALL support, at minimum, these … ""Common Clinical Notes"":
|
|
432
|
+
[Procedures Note (28570-0)](https://loinc.org/28570-0.html)",SHALL,Server,false,,,2.2.49,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v400_clinical_notes_guidance
|
|
433
|
+
hl7.fhir.us.core_6.1.0,210,"https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#clinical-notes, https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#support-requirements","Servers SHALL support, at minimum, these … ""Common Clinical Notes"":
|
|
434
|
+
[Progress Note (11506-3)](https://loinc.org/11506-3.html)",SHALL,Server,false,,,2.2.49,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v400_clinical_notes_guidance
|
|
435
|
+
hl7.fhir.us.core_6.1.0,211,"https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#clinical-notes, https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#support-requirements","Servers SHALL support, at minimum, these … ""Common Clinical Notes"":
|
|
436
|
+
[Imaging Narrative (18748-4)](https://loinc.org/18748-4.html)",SHALL,Server,false,,,2.2.49,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v400_clinical_notes_guidance
|
|
437
|
+
hl7.fhir.us.core_6.1.0,212,"https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#clinical-notes, https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#support-requirements","Servers SHALL support, at minimum, these … ""Common Clinical Notes"":
|
|
438
|
+
[Laboratory Report Narrative (11502-2)](https://loinc.org/11502-2.html)",SHALL,Server,false,,,2.2.49,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v400_clinical_notes_guidance
|
|
439
|
+
hl7.fhir.us.core_6.1.0,213,"https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#clinical-notes, https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#support-requirements","Servers SHALL support, at minimum, these … ""Common Clinical Notes"":
|
|
440
|
+
[Pathology Report Narrative (11526-1)](https://loinc.org/11526-1.html)",SHALL,Server,false,,,2.2.49,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v400_clinical_notes_guidance
|
|
441
|
+
hl7.fhir.us.core_6.1.0,214,"https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#clinical-notes, https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#support-requirements","Servers SHALL support, at minimum, these … DiagnosticReport categories:
|
|
442
|
+
[Cardiology (LP29708-2)](https://loinc.org/LP29708-2)",SHALL,Server,false,,,2.2.49,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v400_clinical_notes_guidance
|
|
443
|
+
hl7.fhir.us.core_6.1.0,215,"https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#clinical-notes, https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#support-requirements","Servers SHALL support, at minimum, these … DiagnosticReport categories:
|
|
444
|
+
[Pathology (LP7839-6)](https://loinc.org/LP7839-6)",SHALL,Server,false,,,2.2.49,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v400_clinical_notes_guidance
|
|
445
|
+
hl7.fhir.us.core_6.1.0,216,"https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#clinical-notes, https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#support-requirements","Servers SHALL support, at minimum, these … DiagnosticReport categories:
|
|
446
|
+
[Radiology (LP29684-5)](https://loinc.org/LP29684-5)",SHALL,Server,false,,,2.2.49,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v400_clinical_notes_guidance
|
|
447
|
+
hl7.fhir.us.core_6.1.0,217,https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#clinical-notes,"systems are encouraged to support other common notes types, such as:
|
|
448
|
+
[Referral Note (57133-1)](https://loinc.org/57133-1.html)",SHOULD,Server,false,,,"",""
|
|
449
|
+
hl7.fhir.us.core_6.1.0,218,https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#clinical-notes,"systems are encouraged to support other common notes types, such as:
|
|
450
|
+
[Surgical Operation Note (11504-8)](https://loinc.org/11504-8.html)",SHOULD,Server,false,,,"",""
|
|
451
|
+
hl7.fhir.us.core_6.1.0,219,https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#clinical-notes,"systems are encouraged to support other common notes types, such as:
|
|
452
|
+
[Nurse Note (34746-8)](https://loinc.org/34746-8.html)",SHOULD,Server,false,,,"",""
|
|
453
|
+
hl7.fhir.us.core_6.1.0,220,https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#fhir-resources-to-exchange-clinical-notes,"To enable consistent access to scanned DiagnosticReport clinical reports, the FHIR Server SHALL expose these overlapping scanned or narrative-only reports through both DiagnosticReport and DocumentReference by representing the same attachment URL [as] DocumentReference.content.attachment.url [and]
|
|
454
|
+
DiagnosticReport.presentedForm.url",SHALL,Server,false,,,2.2.49,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v400_clinical_notes_guidance
|
|
455
|
+
hl7.fhir.us.core_6.1.0,221,https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#fhir-resources-to-exchange-clinical-notes,"when DiagnosticReport.presentedForm.url references a Scan (PDF), that Attachment SHALL also be accessible through DocumentReference.content.attachment.url",SHALL,Server,false,,,2.2.49,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v400_clinical_notes_guidance
|
|
456
|
+
hl7.fhir.us.core_6.1.0,222,https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#support-requirements,Systems [servers] may extend their capabilities [around types of clinical notes] to the complete US Core DocumentReference Type Value Set. This requirement is necessary because some systems scan lab reports and don’t store them in the DiagnosticReport resource.,MAY,Server,false,,,"",""
|
|
457
|
+
hl7.fhir.us.core_6.1.0,223,https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#support-requirements,This guide requires [server] systems to implement the [US Core DocumentReference Profile](https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-documentreference.html),SHALL,Server,false,,,2.2.49,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v400_clinical_notes_guidance
|
|
458
|
+
hl7.fhir.us.core_6.1.0,224,https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#support-requirements,This guide requires [server] systems to implement the [US Core DiagnosticReport Profile for Report and Note exchange](https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-diagnosticreport-note.html),SHALL,Server,false,,,2.2.49,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v400_clinical_notes_guidance
|
|
459
|
+
hl7.fhir.us.core_6.1.0,225,https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#support-requirements,Systems [servers] may support other [DiagnosticReport] categories as well.,MAY,Server,false,,,"",""
|
|
460
|
+
hl7.fhir.us.core_6.1.0,227,https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#support-requirements,The following SHOULD be exposed via DiagnosticReport: Imaging Narrative,SHOULD,Server,false,,,"",""
|
|
461
|
+
hl7.fhir.us.core_6.1.0,228,https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#support-requirements,The following SHOULD be exposed via DiagnosticReport: Laboratory Report Narrative,SHOULD,Server,false,,,"",""
|
|
462
|
+
hl7.fhir.us.core_6.1.0,229,https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#support-requirements,The following SHOULD be exposed via DiagnosticReport: Pathology Report Narrative,SHOULD,Server,false,,,"",""
|
|
463
|
+
hl7.fhir.us.core_6.1.0,230,https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#support-requirements,The following SHOULD be exposed via DiagnosticReport: Procedure Note,SHOULD,Server,false,,,"",""
|
|
464
|
+
hl7.fhir.us.core_6.1.0,231,https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#support-requirements,Servers that support DiagnosticReport will include the clinical note narrative content in DiagnosticReport.presentedForm,SHALL,Server,false,,,2.2.49,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v400_clinical_notes_guidance
|
|
465
|
+
hl7.fhir.us.core_6.1.0,233,https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#support-requirements,FHIR server claiming support to this guide SHOULD support the $expand operation [[operation link](http://hl7.org/fhir/R4/valueset-operation-expand.html) to provide information to clients requesting information on the note and report types the server supports],SHOULD,Server,false,,,"",""
|
|
466
|
+
hl7.fhir.us.core_6.1.0,234,https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#support-requirements,"[If servers support the [$expand] (http://hl7.org/fhir/R4/valueset-operation-expand.html) operation for discovering note and report types, then servers SHALL support] the #expand operation as follows:
|
|
467
|
+
GET [base]/ValueSet/$expand?context=http://hl7.org/fhir/us/core/StructureDefinition/us-core-diagnosticreport-note#DiagnosticReport.category&contextDirection=outgoing for DiagnosticReport report category discovery [for read operations]",SHALL,Server,true,,,"",""
|
|
468
|
+
hl7.fhir.us.core_6.1.0,235,https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#support-requirements,"[If servers support the [$expand] (http://hl7.org/fhir/R4/valueset-operation-expand.html) operation for discovering note and report types, then servers SHALL support] the #expand operation as follows:
|
|
469
|
+
GET [base]/ValueSet/$expand?context=http://hl7.org/fhir/us/core/StructureDefinition/us-core-diagnosticreport-note#DiagnosticReport.category&contextDirection=incoming for DiagnosticReport report category discovery [for write operations]",SHALL,Server,true,,,"",""
|
|
470
|
+
hl7.fhir.us.core_6.1.0,236,https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#support-requirements,"[If servers support the [$expand] (http://hl7.org/fhir/R4/valueset-operation-expand.html) operation for discovering note and report types, then servers SHALL support] the #expand operation as follows:
|
|
471
|
+
GET [base]/ValueSet/$expand?context=http://hl7.org/fhir/us/core/StructureDefinition/us-core-diagnosticreport-note#DiagnosticReport.code&contextDirection=outgoing for DiagnosticReport report type discovery [for read operations]",SHALL,Server,true,,,"",""
|
|
472
|
+
hl7.fhir.us.core_6.1.0,237,https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#support-requirements,"[If servers support the [$expand] (http://hl7.org/fhir/R4/valueset-operation-expand.html) operation for discovering note and report types, then servers SHALL support] the #expand operation as follows:
|
|
473
|
+
GET [base]/ValueSet/$expand?context=http://hl7.org/fhir/us/core/StructureDefinition/us-core-diagnosticreport-note#DiagnosticReport.code&contextDirection=incoming for DiagnosticReport report type discovery [for write operations]",SHALL,Server,true,,,"",""
|
|
474
|
+
hl7.fhir.us.core_6.1.0,238,https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#support-requirements,"[If servers support the [$expand] (http://hl7.org/fhir/R4/valueset-operation-expand.html) operation for discovering note and report types, then servers SHALL support] the #expand operation as follows:
|
|
475
|
+
GET [base]/ValueSet/$expand?context=http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference#DocumentReference.category&contextDirection=outgoing for DocumentReference note category discovery [for read operations]",SHALL,Server,true,,,"",""
|
|
476
|
+
hl7.fhir.us.core_6.1.0,239,https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#support-requirements,"[If servers support the [$expand] (http://hl7.org/fhir/R4/valueset-operation-expand.html) operation for discovering note and report types, then servers SHALL support] the #expand operation as follows:
|
|
477
|
+
GET [base]/ValueSet/$expand?context=http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference#DocumentReference.category&contextDirection=incoming for DocumentReference note category discovery [for write operations]",SHALL,Server,true,,,"",""
|
|
478
|
+
hl7.fhir.us.core_6.1.0,240,https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#support-requirements,"[If servers support the [$expand] (http://hl7.org/fhir/R4/valueset-operation-expand.html) operation for discovering note and report types, then servers SHALL support] the #expand operation as follows:
|
|
479
|
+
GET [base]/ValueSet/$expand?context=http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference#DocumentReference.type&contextDirection=outgoing for DocumentReference note type discovery [for read operations]",SHALL,Server,true,,,"",""
|
|
480
|
+
hl7.fhir.us.core_6.1.0,241,https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#support-requirements,"[If servers support the [$expand] (http://hl7.org/fhir/R4/valueset-operation-expand.html) operation for discovering note and report types, then servers SHALL support] the #expand operation as follows:
|
|
481
|
+
GET [base]/ValueSet/$expand?context=http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference#DocumentReference.type&contextDirection=incoming for DocumentReference note type discovery [for write operations]",SHALL,Server,true,,,"",""
|
|
482
|
+
hl7.fhir.us.core_6.1.0,242,https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#discovering-server-read-and-write-formats,"[If servers support the [$expand] (http://hl7.org/fhir/R4/valueset-operation-expand.html) operation then] the note and report types for a particular server [SHOULD be] discovered by invoking the #expand operation as follows:
|
|
483
|
+
GET [base]/ValueSet/$expand?context=http://hl7.org/fhir/us/core/StructureDefinition/us-core-diagnosticreport-note#DiagnosticReport.presentedForm.contentType&contextDirection=outgoing for DiagnosticReport report content type discovery [for read operations]",SHOULD,Server,true,,,"",""
|
|
484
|
+
hl7.fhir.us.core_6.1.0,243,https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#discovering-server-read-and-write-formats,"[If servers support the [$expand] (http://hl7.org/fhir/R4/valueset-operation-expand.html) operation then] the note and report types for a particular server [SHOULD be] discovered by invoking the #expand operation as follows:
|
|
485
|
+
GET [base]/ValueSet/$expand?context=http://hl7.org/fhir/us/core/StructureDefinition/us-core-diagnosticreport-note#DiagnosticReport.presentedForm.contentType&contextDirection=incoming for DiagnosticReport report content type discovery [for write operations]",SHOULD,Server,true,,,"",""
|
|
486
|
+
hl7.fhir.us.core_6.1.0,244,https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#discovering-server-read-and-write-formats,"[If servers support the [$expand] (http://hl7.org/fhir/R4/valueset-operation-expand.html) operation then] the note and report types for a particular server [SHOULD be] discovered by invoking the #expand operation as follows:
|
|
487
|
+
GET [base]/ValueSet/$expand?context=http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference#DocumentReference.content.attachment.contentType&contextDirection=outgoing for DocumentReference note content type discovery [for read operations]",SHOULD,Server,true,,,"",""
|
|
488
|
+
hl7.fhir.us.core_6.1.0,245,https://hl7.org/fhir/us/core/STU6.1/clinical-notes.html#discovering-server-read-and-write-formats,"[If servers support the [$expand] (http://hl7.org/fhir/R4/valueset-operation-expand.html) operation then] the note and report types for a particular server [SHOULD be] discovered by invoking the #expand operation as follows:
|
|
489
|
+
GET [base]/ValueSet/$expand?context=http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference#DocumentReference.content.attachment.contentType&contextDirection=incoming for DocumentReference note content type discovery [for write operations]",SHOULD,Server,true,,,"",""
|
|
490
|
+
hl7.fhir.us.core_6.1.0,246,https://hl7.org/fhir/us/core/STU6.1/medication-list.html#background-on-the-fhir-medications-resources,"[The [MedicationAdministration](http://hl7.org/fhir/R4/medicationadministration.html) and [MedicationStatement](http://hl7.org/fhir/R4/medicationstatement.html)] medication resources are not profiled by US Core, and systems that support US Core are permitted to use them",MAY,Server,false,,,"",""
|
|
491
|
+
hl7.fhir.us.core_6.1.0,247,https://hl7.org/fhir/us/core/STU6.1/medication-list.html#options-for-representing-medication,"When using a code [to represent a medication][, the code SHALL follow the [extensible](http://hl7.org/fhir/R4/terminologies.html#extensible) binding rules to [Medication Clinical Drug (RxNorm)](https://vsac.nlm.nih.gov/valueset/2.16.840.1.113762.1.4.1010.4/expansion) - i.e., unless RxNorm does not cover the concept, the RxNorm code SHALL be used.",SHALL,Server,true,,,"",""
|
|
492
|
+
hl7.fhir.us.core_6.1.0,248,https://hl7.org/fhir/us/core/STU6.1/medication-list.html#options-for-representing-medication,USCDI recommends the [National Drug Codes (NDC)](https://www.fda.gov/drugs/drug-approvals-and-databases/national-drug-code-directory) as an optional medication terminology. They can be supplied as an additional coding element [when representing a medication],MAY,Server,false,,,"",""
|
|
493
|
+
hl7.fhir.us.core_6.1.0,249,https://hl7.org/fhir/us/core/STU6.1/medication-list.html#options-for-representing-medication,"When referencing the Medication resource, the resource may be included in the returned bundle, as an external resource, or as a [contained](http://hl7.org/fhir/R4/references.html#contained) resource if it can’t stand alone. … The server application MAY choose any combination of these methods",MAY,Server,true,,,"",""
|
|
494
|
+
hl7.fhir.us.core_6.1.0,250,https://hl7.org/fhir/us/core/STU6.1/medication-list.html#options-for-representing-medication,"if an external reference to Medication is used, the server SHALL support the [_include](http://hl7.org/fhir/R4/search.html#include) parameter for searching this element",SHALL,Server,true,,,"2.2.17.01, 2.2.18.01, 2.2.18.03","crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_patient_intent_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_patient_intent_status_search_test"
|
|
495
|
+
hl7.fhir.us.core_6.1.0,252,https://hl7.org/fhir/us/core/STU6.1/medication-list.html#fetching-all-medications-active-medications-and-all-medications-for-an-encounter,"Requirements to access “all medications” [all historical, active, and future prescribed medications and medications entered in error and whose status is unknown.] and “all active medications” [all medications with an active status. Active medications do not include past, future, unknown status, and entered-in-error medications.] for a patient:
|
|
496
|
+
A MedicationRequest resource query:
|
|
497
|
+
Shall be all that is required
|
|
498
|
+
-See the General Guidance section for additional rules and expectations for [Servers Requiring Status](https://hl7.org/fhir/us/core/STU6.1/general-requirements.html#search-for-servers-requiring-status).",SHALL,Server,false,,,"",""
|
|
499
|
+
hl7.fhir.us.core_6.1.0,253,https://hl7.org/fhir/us/core/STU6.1/medication-list.html#fetching-all-medications-active-medications-and-all-medications-for-an-encounter,"Requirements to access “all medications” [all historical, active, and future prescribed medications and medications entered in error and whose status is unknown.] and “all active medications” [all medications with an active status. Active medications do not include past, future, unknown status, and entered-in-error medications.] for a patient:
|
|
500
|
+
A MedicationRequest resource query:
|
|
501
|
+
SHALL include all MedicationRequest resources with an intent = “order” representing authorized medication orders directly derived from the system’s orders.",SHALL,Server,false,,,"",""
|
|
502
|
+
hl7.fhir.us.core_6.1.0,254,https://hl7.org/fhir/us/core/STU6.1/medication-list.html#fetching-all-medications-active-medications-and-all-medications-for-an-encounter,"Requirements to access “all medications” [all historical, active, and future prescribed medications and medications entered in error and whose status is unknown.] and “all active medications” [all medications with an active status. Active medications do not include past, future, unknown status, and entered-in-error medications.] for a patient:
|
|
503
|
+
A MedicationRequest resource query:
|
|
504
|
+
SHALL include all prescribed and “self-prescribed” MedicationRequest resources with an intent = “plan” representing reported medications",SHALL,Server,false,,,"",""
|
|
505
|
+
hl7.fhir.us.core_6.1.0,256,https://hl7.org/fhir/us/core/STU6.1/medication-list.html#fetching-all-medications-active-medications-and-all-medications-for-an-encounter,"Requirements to access “all medications” [all historical, active, and future prescribed medications and medications entered in error and whose status is unknown.] and “all active medications” [all medications with an active status. Active medications do not include past, future, unknown status, and entered-in-error medications.] for a patient:
|
|
506
|
+
A MedicationRequest resource query:
|
|
507
|
+
[when communicating reported medications] ... prescribed and “self-prescribed” MedicationRequest resources with an intent = “plan” ... [servers]
|
|
508
|
+
SHALL use the reported[x] element to indicate that the MedicationRequest record was captured as a secondary “reported” record rather than an original primary source-of-truth record.",SHALL,Server,false,,,"",""
|
|
509
|
+
hl7.fhir.us.core_6.1.0,257,https://hl7.org/fhir/us/core/STU6.1/medication-list.html#fetching-all-medications-active-medications-and-all-medications-for-an-encounter,"Requirements to access “all medications” [all historical, active, and future prescribed medications and medications entered in error and whose status is unknown.] and “all active medications” [all medications with an active status. Active medications do not include past, future, unknown status, and entered-in-error medications.] for a patient:
|
|
510
|
+
A MedicationRequest resource query:
|
|
511
|
+
[when communicating reported medications] ... prescribed and “self-prescribed” MedicationRequest resources with an intent = “plan” [servers] ... may also indicate the source of the report.",MAY,Server,false,,,"",""
|
|
512
|
+
hl7.fhir.us.core_6.1.0,258,https://hl7.org/fhir/us/core/STU6.1/medication-list.html#fetching-all-medications-active-medications-and-all-medications-for-an-encounter,"Requirements to access “all medications” [all historical, active, and future prescribed medications and medications entered in error and whose status is unknown.] and “all active medications” [all medications with an active status. Active medications do not include past, future, unknown status, and entered-in-error medications.] for a patient:
|
|
513
|
+
A MedicationRequest resource query:
|
|
514
|
+
[when communicating reported medications] ... “self-prescribed” MedicationRequest resources with an intent = “plan” [servers] ...
|
|
515
|
+
SHOULD use the requester element to indicate the Patient or RelatedPerson as the prescriber.",SHOULD,Server,false,,,"",""
|
|
516
|
+
hl7.fhir.us.core_6.1.0,259,https://hl7.org/fhir/us/core/STU6.1/medication-list.html#fetching-all-medications-active-medications-and-all-medications-for-an-encounter,"Requirements to access “all medications” [all historical, active, and future prescribed medications and medications entered in error and whose status is unknown.] and “all active medications” [all medications with an active status. Active medications do not include past, future, unknown status, and entered-in-error medications.] for a patient:
|
|
517
|
+
A MedicationRequest resource query:
|
|
518
|
+
The encounter element SHOULD be supported [by the server].",SHOULD,Server,false,,,"",""
|
|
519
|
+
hl7.fhir.us.core_6.1.0,260,https://hl7.org/fhir/us/core/STU6.1/medication-list.html#fetching-all-medications-active-medications-and-all-medications-for-an-encounter,"Requirements to access “all medications” [all historical, active, and future prescribed medications and medications entered in error and whose status is unknown.] and “all active medications” [all medications with an active status. Active medications do not include past, future, unknown status, and entered-in-error medications.] for a patient:
|
|
520
|
+
A MedicationRequest resource query:
|
|
521
|
+
[Servers supporting the encounter element when] Searching by [encounter] context (i.e., for a given inpatient encounter) will return all medications ordered during that encounter, including medications administered in hospital and prescribed or discharge medications intended to be taken at home.",SHOULD,Server,true,,,"",""
|
|
522
|
+
hl7.fhir.us.core_6.1.0,263,https://hl7.org/fhir/us/core/STU6.1/medication-list.html#de-duplication-of-data,"To provide a list of a patient’s medications, it may be necessary to “de-duplicate” them. The de-duplication activity MAY be supplied by the server",MAY,Server,false,,,"",""
|
|
523
|
+
hl7.fhir.us.core_6.1.0,266,https://hl7.org/fhir/us/core/STU6.1/basic-provenance.html#hie-transformation,The HIE must maintain the original data source.,SHALL,Server,false,,,"",""
|
|
524
|
+
hl7.fhir.us.core_6.1.0,267,https://hl7.org/fhir/us/core/STU6.1/basic-provenance.html#hie-transformation,"An agent.type=”assembler”, agent.type=”transmitter”, or other agents from [Provenance Agent Type](https://hl7.org/fhir/us/core/STU6.1/ValueSet-us-core-provenance-participant-type.html) value set MAY also be included.",MAY,Server,false,,,"",""
|
|
525
|
+
hl7.fhir.us.core_6.1.0,268,https://hl7.org/fhir/us/core/STU6.1/screening-and-assessments.html#introduction,"implementers [US Core's of framework of Screening and Assessments] SHOULD consider more constrained, domain-specific profiles derived from the US Core Profiles to meet the needs of their respective use cases.",SHOULD,Server,false,,,"",""
|
|
526
|
+
hl7.fhir.us.core_6.1.0,269,https://hl7.org/fhir/us/core/STU6.1/screening-and-assessments.html#clinical-judgments,"Every server that supports the USDCI Data Class “Health Status/Assessments”:
|
|
527
|
+
|
|
528
|
+
SHALL support representing clinical judgments using [US Core Condition Problems and Health Concerns Profile](https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-condition-problems-health-concerns.html) or [US Core Simple Observation Profile](https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-simple-observation.html).",SHALL,Server,false,,,"",""
|
|
529
|
+
hl7.fhir.us.core_6.1.0,270,https://hl7.org/fhir/us/core/STU6.1/screening-and-assessments.html#clinical-judgments,"Every server that supports the USDCI Data Class “Health Status/Assessments”:
|
|
530
|
+
...
|
|
531
|
+
When a Simple Observation or Problem or Health Concern is recorded based on a structured screening and assessment ..., the US Core Simple Observation Profile [[Profile link](https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-simple-observation.html)] SHOULD reference it using the derivedFrom element",SHOULD,Server,false,,,"",""
|
|
532
|
+
hl7.fhir.us.core_6.1.0,271,https://hl7.org/fhir/us/core/STU6.1/screening-and-assessments.html#clinical-judgments,"Every server that supports the USDCI Data Class “Health Status/Assessments”:
|
|
533
|
+
...
|
|
534
|
+
When a Simple Observation or Problem or Health Concern is recorded based on a structured screening and assessment ..., the US Core Condition Problems and Health Concerns Profile [[Profile link](https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-condition-problems-health-concerns.html) should reference it] using the evidence.detail element",SHOULD,Server,false,,,"",""
|
|
535
|
+
hl7.fhir.us.core_6.1.0,272,https://hl7.org/fhir/us/core/STU6.1/screening-and-assessments.html#choosing-between-questionnaireresponse-and-observation,"For API developers using US Core, it’s important to understand when to use the QuestionnaireResponse versus Observation to represent structured assessments and surveys. Here are some guidelines to help choose the appropriate profile:
|
|
536
|
+
Observations represent specific point-in-time facts that need to be searched, trended, the subject of statistical analysis, and directly referenced in support of other actions ... anything that meets one of the preceding criteria must be surfaced as an Observation.",SHOULD,Server,false,,,"",""
|
|
537
|
+
hl7.fhir.us.core_6.1.0,273,https://hl7.org/fhir/us/core/STU6.1/screening-and-assessments.html#choosing-between-questionnaireresponse-and-observation,"For API developers using US Core, it’s important to understand when to use the QuestionnaireResponse versus Observation to represent structured assessments and surveys. Here are some guidelines to help choose the appropriate profile:
|
|
538
|
+
Observations represent specific point-in-time facts that need to be searched, trended, the subject of statistical analysis, and directly referenced in support of other actions ... anything that meets one of the preceding criteria must be surfaced as an Observation.",SHALL,Server,false,,,"",""
|
|
539
|
+
hl7.fhir.us.core_6.1.0,274,https://hl7.org/fhir/us/core/STU6.1/screening-and-assessments.html#choosing-between-questionnaireresponse-and-observation,"For FHIR implementers, it is important to note that QuestionnaireResponse [which represent the source-of-truth of a completed form, shall] references a specific version of a form, whether it was represented as a FHIR Questionnaire or not. This reference provides the context of exactly what options were available, what logic was used to calculate answers, and what questions were asked.",SHALL,Server,false,,,"",""
|
|
540
|
+
hl7.fhir.us.core_6.1.0,276,https://hl7.org/fhir/us/core/STU6.1/screening-and-assessments.html#category-codes,"The USCDI Health Assessments Data Elements category codes ... SHOULD be used when generating resources that conform to these profiles:
|
|
541
|
+
|
|
542
|
+
US Core Simple Observation Profile",SHOULD,Server,false,,,"",""
|
|
543
|
+
hl7.fhir.us.core_6.1.0,277,https://hl7.org/fhir/us/core/STU6.1/screening-and-assessments.html#category-codes,"The USCDI Health Assessments Data Elements category codes ... SHOULD be used when generating resources that conform to these profiles:
|
|
544
|
+
|
|
545
|
+
US Core Observation Screening Assessment Profile",SHOULD,Server,false,,,"",""
|
|
546
|
+
hl7.fhir.us.core_6.1.0,278,https://hl7.org/fhir/us/core/STU6.1/screening-and-assessments.html#category-codes,"The USCDI Health Assessments Data Elements category codes ... SHOULD be used when generating resources that conform to these profiles:
|
|
547
|
+
US Core Condition Problems and Health Concerns Profile",SHOULD,Server,false,,,"",""
|
|
548
|
+
hl7.fhir.us.core_6.1.0,279,https://hl7.org/fhir/us/core/STU6.1/screening-and-assessments.html#category-codes,"The USCDI Health Assessments Data Elements category codes ... SHOULD be used when generating resources that conform to these profiles:
|
|
549
|
+
|
|
550
|
+
US Core ServiceRequest Profile",SHOULD,Server,false,,,"",""
|
|
551
|
+
hl7.fhir.us.core_6.1.0,282,https://hl7.org/fhir/us/core/STU6.1/changes-between-versions.html#endpoint-discoverability,A server may support Version DSTU2 and Argonaut Data Query,MAY,Server,false,,,"",""
|
|
552
|
+
hl7.fhir.us.core_6.1.0,283,https://hl7.org/fhir/us/core/STU6.1/changes-between-versions.html#endpoint-discoverability,A server may … FHIR R4 and US Core ver 3.1.1+,MAY,Server,false,,,"",""
|
|
553
|
+
hl7.fhir.us.core_6.1.0,284,https://hl7.org/fhir/us/core/STU6.1/changes-between-versions.html#endpoint-discoverability,A server may support [both] [(]Version DSTU2 and Argonaut Data Query[) and (] FHIR R4 and US Core ver 3.1.1+[)],MAY,Server,false,,,"",""
|
|
554
|
+
hl7.fhir.us.core_6.1.0,285,https://hl7.org/fhir/us/core/STU6.1/changes-between-versions.html#endpoint-discoverability,"A server may make explicit which version of Argo/US Core is on their FHIR endpoint (e.g., “DSTU2” or “R4” path component or separate files based on version).",MAY,Server,false,,,"",""
|
|
555
|
+
hl7.fhir.us.core_6.1.0,287,https://hl7.org/fhir/us/core/STU6.1/changes-between-versions.html#no-guarantee-that-resource-ids-are-preserved,Servers SHOULD maintain a stable common identifier for a resource across [FHIR] versions.,SHOULD,Server,false,,,"",""
|
|
556
|
+
hl7.fhir.us.core_6.1.0,288,https://hl7.org/fhir/us/core/STU6.1/changes-between-versions.html#expectation-that-fhir-dstu2-data-is-preserved-in-fhir-r4,"In an upgraded R4 endpoint, any data in FHIR DSTU2 SHOULD be in FHIR R4.",SHOULD,Server,false,,,"",""
|
|
557
|
+
hl7.fhir.us.core_6.1.0,289,https://hl7.org/fhir/us/core/STU6.1/changes-between-versions.html#expectation-that-fhir-dstu2-data-is-preserved-in-fhir-r5,The FHIR RESTful resource types supported in a DSTU2 implementation SHOULD be supported in a R4 implementation,SHOULD,Server,true,,,"",""
|
|
558
|
+
hl7.fhir.us.core_6.1.0,290,https://hl7.org/fhir/us/core/STU6.1/changes-between-versions.html#expectation-that-fhir-dstu2-data-is-preserved-in-fhir-r7,"The FHIR RESTful resource types supported in a DSTU2 implementation SHOULD be supported in a R4 implementation [with the] exception [of]
|
|
559
|
+
MedicationStatement may be deprecated, and the data SHOULD be mapped to MedicationRequest.",SHOULD,Server,false,,,"",""
|
|
560
|
+
hl7.fhir.us.core_6.1.0,291,https://hl7.org/fhir/us/core/STU6.1/changes-between-versions.html#expectation-that-fhir-dstu2-data-is-preserved-in-fhir-r8,"The FHIR RESTful resource types supported in a DSTU2 implementation SHOULD be supported in a R4 implementation [with the] exception [of]
|
|
561
|
+
Care teams as represented by CarePlan in DSTU2 SHOULD be replaced by and the data mapped to CareTeam in R4",SHOULD,Server,false,,,"",""
|
|
562
|
+
hl7.fhir.us.core_6.1.0,295,https://hl7.org/fhir/us/core/STU6.1/changes-between-versions.html#expectation-that-fhir-dstu2-data-is-preserved-in-fhir-r9,Servers SHOULD make available the same information in DSTU2 and R4 where the more recent standard allows.,SHOULD,Server,true,,,"",""
|
|
563
|
+
hl7.fhir.us.core_6.1.0,296,https://hl7.org/fhir/us/core/STU6.1/changes-between-versions.html#expectation-that-fhir-dstu2-data-is-preserved-in-fhir-r10,"Servers SHOULD make available the same information in DSTU2 and R4 where the more recent standard allows … [with the] exception [of]
|
|
564
|
+
MedicationStatement data [should be] mapped to MedicationRequest",SHOULD,Server,false,,,"",""
|
|
565
|
+
hl7.fhir.us.core_6.1.0,297,https://hl7.org/fhir/us/core/STU6.1/changes-between-versions.html#expectation-that-fhir-dstu2-data-is-preserved-in-fhir-r11,"Servers SHOULD make available the same information in DSTU2 and R4 where the more recent standard allows … [with the] exception [of]
|
|
566
|
+
care teams, as represented by CarePlan, SHOULD be mapped to CareTeam in R4",SHOULD,Server,false,,,"",""
|
|
567
|
+
hl7.fhir.us.core_6.1.0,298,https://hl7.org/fhir/us/core/STU6.1/changes-between-versions.html#expectation-that-fhir-dstu2-data-is-preserved-in-fhir-r12,"Data SHOULD be maintained between [FHIR] versions (i.e., not be degraded).",SHOULD,Server,false,,,"",""
|
|
568
|
+
hl7.fhir.us.core_6.1.0,300,https://hl7.org/fhir/us/core/STU6.1/changes-between-versions.html#authorization-across-versions,Separate authorization is required [between different versions of FHIR],SHALL,Server,false,,,"",""
|
|
569
|
+
hl7.fhir.us.core_6.1.0,302,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-allergyintolerance.html#mandatory-and-must-support-data-elements,[The clinical status of the allergy] SHALL be present if verification status is not “entered-in-error”,SHALL,Server,false,,,"",""
|
|
570
|
+
hl7.fhir.us.core_6.1.0,303,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-allergyintolerance.html#mandatory-and-must-support-data-elements,[The clinical status of the allergy] SHALL NOT be present if verification Status is “entered-in-error”,SHALL NOT,Server,false,,,"",""
|
|
571
|
+
hl7.fhir.us.core_6.1.0,305,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-allergyintolerance.html#mandatory-and-must-support-data-elements,"Profile Specific Implementation Guidance:
|
|
572
|
+
|
|
573
|
+
No Known Allergies may be represented using the US Core-AllergyIntolerance profile",MAY,Server,true,,,"",""
|
|
574
|
+
hl7.fhir.us.core_6.1.0,306,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-allergyintolerance.html#mandatory-and-must-support-data-elements,[When used No Known Allergies is documented the system Shall use an] appropriate negation code in AllergyIntolerence.code,SHALL,Server,true,,,"",""
|
|
575
|
+
hl7.fhir.us.core_6.1.0,307,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-allergyintolerance.html#mandatory-and-must-support-data-elements,[When used No Known Allergies is documented the system Shall use an] verification status in AllergyIntolerance.verificationStatus,SHALL,Server,true,,,"",""
|
|
576
|
+
hl7.fhir.us.core_6.1.0,308,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-allergyintolerance.html#mandatory-and-must-support-data-elements,"If a patient has not been asked about their allergies, this would be represented as:
|
|
577
|
+
AllergyIntolerance.code = “1631000175102” (Patient not asked (contextual qualifier) (qualifier value))
|
|
578
|
+
AllergyIntolerance.verificationStatus = “unconfirmed” or empty (in other words, then element omitted)",SHOULD,Server,true,,,"",""
|
|
579
|
+
hl7.fhir.us.core_6.1.0,309,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-allergyintolerance.html#mandatory-and-must-support-data-elements,"If a patient has been asked, but has indicated they have no known allergies, this would be represented as:
|
|
580
|
+
AllergyIntolerance.code = “716186003” (No known allergy (situation))
|
|
581
|
+
AllergyIntolerance.verificationStatus = “confirmed”",SHOULD,Server,true,,,"",""
|
|
582
|
+
hl7.fhir.us.core_6.1.0,310,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-careplan.html#mandatory-and-must-support-data-elements,Considerations for systems aligning with [HL7 Consolidated (C-CDA)](http://www.hl7.org/implement/standards/product_brief.cfm?product_id=492) Care Plan requirements: US Core Goal SHOULD be present in CarePlan.goal,SHOULD,Server,false,,,"",""
|
|
583
|
+
hl7.fhir.us.core_6.1.0,311,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-careplan.html#mandatory-and-must-support-data-elements,Considerations for systems aligning with [HL7 Consolidated (C-CDA)] (http://www.hl7.org/implement/standards/product_brief.cfm?product_id=492) Care Plan requirements: ... US Core Condition SHOULD be present in CarePlan.addresses,SHOULD,Server,false,,,"",""
|
|
584
|
+
hl7.fhir.us.core_6.1.0,312,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-careplan.html#mandatory-and-must-support-data-elements,Considerations for systems aligning with [HL7 Consolidated (C-CDA)] (http://www.hl7.org/implement/standards/product_brief.cfm?product_id=492) Care Plan requirements: Assessment and Plan MAY be included as narrative in CarePlan.text,MAY,Server,false,,,"",""
|
|
585
|
+
hl7.fhir.us.core_6.1.0,313,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-careteam.html#mandatory-and-must-support-data-elements,"Although both US Core Practitioner Profile and US Core PractitionerRole are Must Support, ... server system[s conforming to the Us Core CareTeam profile are] ... not required to support references to both, but SHALL support at least one of them",SHALL,Server,true,,,2.2.6.08,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_reference_resolution_test
|
|
586
|
+
hl7.fhir.us.core_6.1.0,317,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-careteam.html#mandatory-and-must-support-data-elements,"[When conforming to the Us Core CareTeam profile] Because the US Core PractitionerRole Profile supplies the provider’s location and contact information and a reference to the Practitioner, server systems [conforming to the Us Core CareTeam profile] SHOULD reference it instead of the US Core Practitioner Profile [when conforming to the Us Core CareTeam profile] .",SHOULD,Server,false,,,"",""
|
|
587
|
+
hl7.fhir.us.core_6.1.0,318,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-careteam.html#mandatory-and-must-support-data-elements,Servers [conforming to the Us Core CareTeam profile] that support only US Core Practitioner Profile and do not support the US Core PractitionerRole Profile SHALL provide implementation-specific guidance on how to access a provider’s location ... information using only the Practitioner resource.,SHALL,Server,false,,,"",""
|
|
588
|
+
hl7.fhir.us.core_6.1.0,319,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-careteam.html#mandatory-and-must-support-data-elements,Servers [conforming to the Us Core CareTeam profile] that support only US Core Practitioner Profile and do not support the US Core PractitionerRole Profile SHALL provide implementation-specific guidance on how to access a provider’s ... contact information using only the Practitioner resource.,SHALL,Server,false,,,"",""
|
|
589
|
+
hl7.fhir.us.core_6.1.0,320,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-condition-encounter-diagnosis.html#mandatory-and-must-support-data-elements,"For Problems and Health Concerns [records, systems SHOULD] use the [US Core Condition Problems and Health Concerns Profile](https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-condition-problems-health-concerns.html).",SHOULD,Server,true,,,"",""
|
|
590
|
+
hl7.fhir.us.core_6.1.0,323,"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-condition-encounter-diagnosis.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-condition-problems-health-concerns.html#mandatory-and-must-support-data-elements",USCDI’s applicable vocabulary standards for Encounter Diagnosis are SNOMED CT and ICD-10-CM. The US Core Condition Codes only supports ICD-9-CM for historical purposes. ICD-10-CM is available and SHOULD be used as the primary code for current encounter diagnoses.,SHOULD,Server,false,,,"",""
|
|
591
|
+
hl7.fhir.us.core_6.1.0,324,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-condition-encounter-diagnosis.html#mandatory-and-must-support-data-elements,[A US Core Condition Encounter Diagnosis] encounter SHOULD always be referenced in Condition.encounter.,SHOULD,Server,false,,,"",""
|
|
592
|
+
hl7.fhir.us.core_6.1.0,325,"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-condition-encounter-diagnosis.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-condition-problems-health-concerns.html#mandatory-and-must-support-data-elements",A [US Core Condition Encounter Diagnosis] server SHALL support Condition.recordedDate,SHALL,Server,false,,,2.2.7.14,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_must_support_test
|
|
593
|
+
hl7.fhir.us.core_6.1.0,326,"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-condition-encounter-diagnosis.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-condition-problems-health-concerns.html#mandatory-and-must-support-data-elements",A server SHALL support at least one of [assertedDate Extension](http://hl7.org/fhir/R4/extension-condition-asserteddate.html) and Condition.onsetDateTime.,SHALL,Server,true,,,2.2.7.14,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_must_support_test
|
|
594
|
+
hl7.fhir.us.core_6.1.0,330,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-condition-problems-health-concerns.html#mandatory-and-must-support-data-elements,"[When a condition has a category code of] Encounter Diagnosis, use [ US Core Condition Encounter Diagnosis Profile](https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-condition-encounter-diagnosis.html).",SHALL,Server,true,,,"",""
|
|
595
|
+
hl7.fhir.us.core_6.1.0,331,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-condition-problems-health-concerns.html#mandatory-and-must-support-data-elements,"If Condition.category contains a Problem List item category (problem-list-item), Condition.clinicalStatus SHOULD be present.",SHOULD,Server,true,,,"",""
|
|
596
|
+
hl7.fhir.us.core_6.1.0,335,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-coverage.html#mandatory-and-must-support-data-elements,Implementers should refer to the [PHDSC Payer Type Committee User’s Guide](https://www.nahdo.org/sites/default/files/2020-12/SourceofPaymentTypologyUsersGuideVersion9.2December2020.pdf) for the Source of Payment Typology when selecting codes.,SHOULD,Server,false,,,"",""
|
|
597
|
+
hl7.fhir.us.core_6.1.0,339,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-coverage.html#mandatory-and-must-support-data-elements,"If Insurers issue unique member IDs for dependents, then the memberId Coverage.identifier should be used [with the unique dependent ID] instead of Coverage.dependent to uniquely refer to the dependent with respect to their insurance.",SHOULD,Server,true,,,"",""
|
|
598
|
+
hl7.fhir.us.core_6.1.0,340,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-implantable-device.html#mandatory-and-must-support-data-elements,"For non-implantable devices (for example, software or crutches), use the base FHIR Device resource or other use case-specific Device profiles.",SHOULD,Server,false,,,"",""
|
|
599
|
+
hl7.fhir.us.core_6.1.0,341,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-implantable-device.html#mandatory-and-must-support-data-elements,Implementers are encouraged to use the FDA Global UDI Database (GUDID) and associated APIs to parse and validate the [unique device ID] UDI,SHOULD,Server,false,,,"",""
|
|
600
|
+
hl7.fhir.us.core_6.1.0,342,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-implantable-device.html#mandatory-and-must-support-data-elements,Implantable medical devices with UDI information SHALL represent the UDI code in Device.udiCarrier.carrierHRF,SHALL,Server,false,,,"",""
|
|
601
|
+
hl7.fhir.us.core_6.1.0,343,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-implantable-device.html#mandatory-and-must-support-data-elements,UDI-PI elements present [in Device.udiCarrier.carrierHRF] SHALL be represented in the corresponding US Core Implantable Device Profile elements,SHALL,Server,false,,,"",""
|
|
602
|
+
hl7.fhir.us.core_6.1.0,344,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-implantable-device.html#mandatory-and-must-support-data-elements,"If UDI is not present and the manufacturer … is available, … [it] SHOULD be included to support historical reports of implantable medical devices [where] manufacturer [is sent in] Device.manufacturer",SHOULD,Server,true,,,"",""
|
|
603
|
+
hl7.fhir.us.core_6.1.0,345,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-implantable-device.html#mandatory-and-must-support-data-elements,"If UDI is not present and the ... model number information is available, … [it] SHOULD be included to support historical reports of implantable medical devices [where] model [is sent in] Device.model",SHOULD,Server,true,,,"",""
|
|
604
|
+
hl7.fhir.us.core_6.1.0,346,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-implantable-device.html#mandatory-and-must-support-data-elements,Servers SHOULD support query by Device.type to allow clients to request the patient’s devices by a specific type.,SHOULD,Server,false,,,"",""
|
|
605
|
+
hl7.fhir.us.core_6.1.0,347,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-implantable-device.html#mandatory-and-must-support-data-elements,"Records of implanted devices MAY be queried against UDI data, including: UDI HRF string (udi-carrier)",MAY,Server,false,,,"",""
|
|
606
|
+
hl7.fhir.us.core_6.1.0,348,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-implantable-device.html#mandatory-and-must-support-data-elements,"Records of implanted devices MAY be queried against UDI data, including:UDI Device Identifier (udi-di)",MAY,Server,false,,,"",""
|
|
607
|
+
hl7.fhir.us.core_6.1.0,349,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-implantable-device.html#mandatory-and-must-support-data-elements,"Records of implanted devices MAY be queried against UDI data, including: Manufacturer (manufacturer)",MAY,Server,false,,,"",""
|
|
608
|
+
hl7.fhir.us.core_6.1.0,350,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-implantable-device.html#mandatory-and-must-support-data-elements,"Records of implanted devices MAY be queried against UDI data, including: Model number (model)",MAY,Server,false,,,"",""
|
|
609
|
+
hl7.fhir.us.core_6.1.0,351,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-implantable-device.html#mandatory-and-must-support-data-elements,Implementers MAY also adopt custom SearchParameters for searching by lot numbers,MAY,Server,false,,,"",""
|
|
610
|
+
hl7.fhir.us.core_6.1.0,352,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-implantable-device.html#mandatory-and-must-support-data-elements,Implementers MAY also adopt custom SearchParameters for searching by serial number,MAY,Server,false,,,"",""
|
|
611
|
+
hl7.fhir.us.core_6.1.0,353,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-implantable-device.html#mandatory-and-must-support-data-elements,Implementers MAY also adopt custom SearchParameters for searching by expiration date,MAY,Server,false,,,"",""
|
|
612
|
+
hl7.fhir.us.core_6.1.0,354,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-implantable-device.html#mandatory-and-must-support-data-elements,Implementers MAY also adopt custom SearchParameters for searching by manufacture date,MAY,Server,false,,,"",""
|
|
613
|
+
hl7.fhir.us.core_6.1.0,355,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-implantable-device.html#mandatory-and-must-support-data-elements,Implementers MAY also adopt custom SearchParameters for searching by distinct identifier,MAY,Server,false,,,"",""
|
|
614
|
+
hl7.fhir.us.core_6.1.0,356,"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-diagnosticreport-lab.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-diagnosticreport-note.html#mandatory-and-must-support-data-elements","The diagnostically relevant time (known as the “effective time” and typically the time of specimen collection) … SHALL be present if status [of the diagnostic report] is ‘partial’, ‘preliminary’, ‘final’, ‘amended’, ‘corrected’, or ‘appended’.",SHALL,Server,true,,,2.2.12.09,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_validation_test
|
|
615
|
+
hl7.fhir.us.core_6.1.0,357,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-diagnosticreport-lab.html#mandatory-and-must-support-data-elements,"When the report was released … SHALL be present if status [of the diagnostic report] is ‘partial’, ‘preliminary’, ‘final’, ‘amended’, ‘corrected’, or ‘appended’.",SHALL,Server,true,,,2.2.12.09,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_validation_test
|
|
616
|
+
hl7.fhir.us.core_6.1.0,360,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-diagnosticreport-note.html#mandatory-and-must-support-data-elements,"The DiagnosticReport.category binding Must Support, at a minimum, the US Core DiagnosticReport Category Codes of Cardiology, Radiology, and Pathology",SHALL,Server,false,,,2.2.11.10,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_must_support_test
|
|
617
|
+
hl7.fhir.us.core_6.1.0,361,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-diagnosticreport-note.html#mandatory-and-must-support-data-elements,Other [diagnostic report] categories may be supported [when using US Core DiagnosticReport Profile for Report and Note Exchange],MAY,Server,false,,,"",""
|
|
618
|
+
hl7.fhir.us.core_6.1.0,362,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-diagnosticreport-note.html#mandatory-and-must-support-data-elements,[L]inkages between specific LOINC codes and the LP-type codes may be used as guidance [for a server's categorization of diagnostic reports],MAY,Server,false,,,"",""
|
|
619
|
+
hl7.fhir.us.core_6.1.0,364,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-diagnosticreport-note.html#mandatory-and-must-support-data-elements,"For Diagnostic Imaging Reports systems SHOULD support using the subset of LOINC codes defined in CONF-DIR-19 in HL7 Implementation Guide for CDA Release 2: Imaging Integration, Levels 1, 2, and 3, Basic Imaging Reports in CDA and DICOM Diagnostic Imaging Reports (DIR) - Universal Realm, Release 1.0.",SHOULD,Server,true,,,"",""
|
|
620
|
+
hl7.fhir.us.core_6.1.0,365,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-documentreference.html#mandatory-and-must-support-data-elements,"The DocumentReference.type binding Must Support, at a minimum, the 5 [Common Clinical Notes](https://hl7.org/fhir/us/core/STU6.1/ValueSet-us-core-clinical-note-type.html)",SHALL,Server,false,,,"",""
|
|
621
|
+
hl7.fhir.us.core_6.1.0,366,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-documentreference.html#mandatory-and-must-support-data-elements,The DocumentReference.type binding may extend to the whole [US Core DocumentReference Type Value Set](https://hl7.org/fhir/us/core/STU6.1/ValueSet-us-core-documentreference-type.html),MAY,Server,false,,,"",""
|
|
622
|
+
hl7.fhir.us.core_6.1.0,367,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-documentreference.html#mandatory-and-must-support-data-elements,[DocumentReference.type may also use] other category schemes such as the LOINC-based [Document Class Value Set](http://hl7.org/fhir/R4/valueset-document-classcodes.html) and [IHE XDSclassCode](https://wiki.ihe.net/index.php/XDS_classCode_Metadata_Coding_System),MAY,Server,false,,,"",""
|
|
623
|
+
hl7.fhir.us.core_6.1.0,368,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-documentreference.html#mandatory-and-must-support-data-elements,"Although both [DocumentReference.attachment.url and DocumentReference.attachment.data] are marked as Must Support, the server system is not required to support an address and inline base64 encoded data, but SHALL support at least one of these elements.",SHALL,Server,true,,,2.2.13.11,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_must_support_test
|
|
624
|
+
hl7.fhir.us.core_6.1.0,371,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-documentreference.html#mandatory-and-must-support-data-elements,"If the [content.url] endpoint is outside the FHIR base URL, it SHOULD NOT require additional authorization to access.",SHOULD NOT,Server,false,,,"",""
|
|
625
|
+
hl7.fhir.us.core_6.1.0,372,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-documentreference.html#mandatory-and-must-support-data-elements,"If there are multiple DocumentReference.content element repetitions, these SHALL all represent the same document in different formats or attachment metadata",SHALL,Server,false,,,"",""
|
|
626
|
+
hl7.fhir.us.core_6.1.0,373,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-documentreference.html#mandatory-and-must-support-data-elements,The [documentReference.content] element SHALL NOT contain different versions of the same content.,SHALL NOT,Server,false,,,"",""
|
|
627
|
+
hl7.fhir.us.core_6.1.0,374,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-documentreference.html#mandatory-and-must-support-data-elements,The organization responsible for the DocumentReference SHALL be present either in DocumentReference.custodian or accessible in the Provenance resource targeting the DocumentReference using Provenance.agent.who or Provenance.agent.onBehalfOf,SHALL,Server,false,,,"",""
|
|
628
|
+
hl7.fhir.us.core_6.1.0,375,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-encounter.html#mandatory-and-must-support-data-elements,"Although ... marked as Must Support, servers are not required to support both [an Encounter.reasonCode or a reference with Encounter.reasonReference], but they SHALL support at least one of these elements.",SHALL,Server,true,,,2.2.14.13,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_must_support_test
|
|
629
|
+
hl7.fhir.us.core_6.1.0,378,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-encounter.html#mandatory-and-must-support-data-elements,"If Encounter.reasonReference references an Observation, it SHOULD conform to a US Core Observation [profile applicable to the observation being made]",SHOULD,Server,true,,,"",""
|
|
630
|
+
hl7.fhir.us.core_6.1.0,379,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-encounter.html#mandatory-and-must-support-data-elements,"Although … marked as Must Support, servers are not required to support both Encounter.location.location and Encounter.serviceProvider, but they SHALL support at least one of these elements.",SHALL,Server,true,,,2.2.14.13,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_must_support_test
|
|
631
|
+
hl7.fhir.us.core_6.1.0,383,"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-encounter.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-location.html#mandatory-and-must-support-data-elements",If using Encounter.location.location it SHOULD conform to US Core Location.,SHOULD,Server,true,,,"",""
|
|
632
|
+
hl7.fhir.us.core_6.1.0,387,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-goal.html#mandatory-and-must-support-data-elements,"Although both Goal.startDate and Goal.target.dueDate are marked as Must Support, the server system is not required to support both, but SHALL support at least one of these elements.",SHALL,Server,true,,,2.2.15.08,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_must_support_test
|
|
633
|
+
hl7.fhir.us.core_6.1.0,390,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-immunization.html#mandatory-and-must-support-data-elements,[Servers shall] use the status code: not-done to represent that an immunization was not given.,SHALL,Server,false,,,"",""
|
|
634
|
+
hl7.fhir.us.core_6.1.0,391,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-immunization.html#mandatory-and-must-support-data-elements,[For organization participating in the ONC Health IT Certification program] [CVX vaccine codes](https://www2a.cdc.gov/vaccines/iis/iisstandards/ndc_crosswalk.asp) are required,SHALL,Server,true,,,2.2.16.06,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_validation_test
|
|
635
|
+
hl7.fhir.us.core_6.1.0,392,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-immunization.html#mandatory-and-must-support-data-elements,[NDC vaccine codes](http://www2a.cdc.gov/vaccines/iis/iisstandards/ndc_crosswalk.asp) SHOULD be supported as a translation [of [CVX Vaccine Codes](https://www2a.cdc.gov/vaccines/iis/iisstandards/ndc_crosswalk.asp)],SHOULD,Server,false,,,"",""
|
|
636
|
+
hl7.fhir.us.core_6.1.0,393,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-immunization.html#mandatory-and-must-support-data-elements,The preferred code system identifier … is [http://hl7.org/fhir/sid/cvx](http://hl7.org/fhir/sid/cvx) for CVX [vaccine codes],SHOULD,Server,false,,,"",""
|
|
637
|
+
hl7.fhir.us.core_6.1.0,394,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-immunization.html#mandatory-and-must-support-data-elements,The preferred code system identifier … is [http://hl7.org/fhir/sid/ndc](http://hl7.org/fhir/sid/ndc) for NDC vaccine codes],SHOULD,Server,false,,,"",""
|
|
638
|
+
hl7.fhir.us.core_6.1.0,397,"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-medicationdispense.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-medicationrequest.html#mandatory-and-must-support-data-elements","When using a code [to represent a medication for a medication dispense], RXNorm concepts are used.",SHALL,Server,true,,,"",""
|
|
639
|
+
hl7.fhir.us.core_6.1.0,398,"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-medicationdispense.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-medicationrequest.html#mandatory-and-must-support-data-elements","When using a code [to represent a medication for a medication dispense], [National Drug Codes (NDC)](https://www.fda.gov/drugs/drug-approvals-and-databases/national-drug-code-directory) can be supplied as an additional coding element.",MAY,Server,true,,,"",""
|
|
640
|
+
hl7.fhir.us.core_6.1.0,399,"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-medicationdispense.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-medicationrequest.html#mandatory-and-must-support-data-elements","When referencing a Medication resource in .medicationReference, the resource may be [contained](http://hl7.org/fhir/R4/references.html#contained)",MAY,Server,false,,,"",""
|
|
641
|
+
hl7.fhir.us.core_6.1.0,400,"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-medicationdispense.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-medicationrequest.html#mandatory-and-must-support-data-elements","When referencing a Medication resource in .medicationReference, the resource may be an external resource",MAY,Server,false,,,"",""
|
|
642
|
+
hl7.fhir.us.core_6.1.0,401,"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-medicationdispense.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-medicationrequest.html#mandatory-and-must-support-data-elements","The server systems are not required to support both a [medication] code and a reference [when sending medicationDispense], but SHALL support at least one of these methods",SHALL,Server,true,,,"",""
|
|
643
|
+
hl7.fhir.us.core_6.1.0,402,"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-medicationdispense.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-medicationrequest.html#mandatory-and-must-support-data-elements","If an external reference to a Medication resource is used, the server SHALL support the [_include](http://hl7.org/fhir/R4/search.html#include) parameter for searching this element.",SHALL,Server,true,,,"",""
|
|
644
|
+
hl7.fhir.us.core_6.1.0,405,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-medicationrequest.html#mandatory-and-must-support-data-elements,"[For organization participating in the ONC Health IT Certification program] each MedicationRequest Must Support the following additional element, ... the reason or indication for the prescription",SHALL,Server,true,,,2.2.18.09,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_must_support_test
|
|
645
|
+
hl7.fhir.us.core_6.1.0,407,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-medicationrequest.html#mandatory-and-must-support-data-elements,"When recording “self-prescribed” medication, requester SHOULD be used to indicate the Patient or RelatedPerson as the prescriber",SHOULD,Server,false,,,"",""
|
|
646
|
+
hl7.fhir.us.core_6.1.0,408,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-medicationrequest.html#mandatory-and-must-support-data-elements,"Although [medicationRequest.reportedBoolean and MedicationRequest.reportedReference] are both marked as Must Support, the server system is not required to support both, but SHALL support at least one of these elements",SHALL,Server,true,,,2.2.18.09,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_must_support_test
|
|
647
|
+
hl7.fhir.us.core_6.1.0,416,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-medicationrequest.html#mandatory-and-must-support-data-elements,"When using MedicationRequest.reasonReference, the referenced Condition or Observation SHOULD be a US Core Profile.",SHOULD,Server,false,,,"",""
|
|
648
|
+
hl7.fhir.us.core_6.1.0,417,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-medicationrequest.html#mandatory-and-must-support-data-elements,Source EHR identifiers SHOULD be included to support deduplication across MedicationRequest resources.,SHOULD,Server,false,,,"",""
|
|
649
|
+
hl7.fhir.us.core_6.1.0,418,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-medicationrequest.html#mandatory-and-must-support-data-elements,Servers SHALL follow the guidance on the Medication List page and return all active medications as MedicationRequest.,SHALL,Server,false,,,"",""
|
|
650
|
+
hl7.fhir.us.core_6.1.0,419,"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-vital-signs.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-treatment-intervention-preference.html#mandatory-and-must-support-data-elements",The observations MAY have additional codes that translate or map to the Observation code or category codes [such as] … local system-specific codes [and] …more specific codes,MAY,Server,false,,,"",""
|
|
651
|
+
hl7.fhir.us.core_6.1.0,420,"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-vital-signs.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-treatment-intervention-preference.html#mandatory-and-must-support-data-elements",[For an Observation a] code system value SHOULD be supplied for each additional code,SHOULD,Server,false,,,"",""
|
|
652
|
+
hl7.fhir.us.core_6.1.0,423,https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-clinical-result.html#mandatory-and-must-support-data-elements,Servers SHOULD use the base FHIR [Observation Category Codes] (http://hl7.org/fhir/R4/valueset-observation-category.html) [in Observation.category],SHOULD,Server,true,,,"",""
|
|
653
|
+
hl7.fhir.us.core_6.1.0,424,"https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-clinical-result.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-lab.html#mandatory-and-must-support-data-elements",Systems SHOULD support Observation.effectivePeriod to accurately represent measurements over time,SHOULD,Server,true,,,"",""
|
|
654
|
+
hl7.fhir.us.core_6.1.0,425,"https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-clinical-result.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-lab.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-screening-assessment.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-lab.html#mandatory-and-must-support-data-elements","An Observation.component without a value, SHALL include a reason why the data is absent",SHALL,Server,true,,,"",""
|
|
655
|
+
hl7.fhir.us.core_6.1.0,426,"https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-clinical-result.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-lab.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-screening-assessment.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-vital-signs.html#mandatory-and-must-support-data-elements",Systems that never provide a component observation without a component value … [MAY choose not] to support Observation.component.dataAbsentReason,MAY,Server,true,,,"",""
|
|
656
|
+
hl7.fhir.us.core_6.1.0,427,"https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-clinical-result.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-lab.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-screening-assessment.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-vital-signs.html#mandatory-and-must-support-data-elements","An Observation without a value, SHALL include a reason why the data is absent",SHALL,Server,true,,,2.2.36.08,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_clinical_result-us_core_v610_observation_clinical_result_validation_test
|
|
657
|
+
hl7.fhir.us.core_6.1.0,428,"https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-clinical-result.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-lab.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-screening-assessment.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-vital-signs.html#mandatory-and-must-support-data-elements",[For] an Observation without a value … [Systems MAY choose not to] include a reason why the data is absent … [if] there are component observations or … reporting panel observations using Observation.hasMember,MAY,Server,true,,,"",""
|
|
658
|
+
hl7.fhir.us.core_6.1.0,429,"https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-clinical-result.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-lab.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-screening-assessment.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-vital-signs.html#mandatory-and-must-support-data-elements",Systems that never provide an observation without a value ... [MAY choose not] to support Observation.dataAbsentReason,MAY,Server,true,,,"",""
|
|
659
|
+
hl7.fhir.us.core_6.1.0,432,https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-occupation.html#mandatory-and-must-support-data-elements,"[When sending US Core Observation Occupation Profile] for … [a] current job, [servers SHALL] omit observation.effectivePeriod.end to indicate it is ongoing.",SHALL,Server,true,,,"",""
|
|
660
|
+
hl7.fhir.us.core_6.1.0,433,https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-occupation.html#mandatory-and-must-support-data-elements,"When the industry is known, but the occupation is not, [servers SHALL] use the value “unknown” from the [DataAbsentReason Code System](http://hl7.org/fhir/R4/codesystem-data-absent-reason.html)",SHALL,Server,false,,,"",""
|
|
661
|
+
hl7.fhir.us.core_6.1.0,434,https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-occupation.html#mandatory-and-must-support-data-elements,"when the occupation is known but the industry is not, [servers SHALL] omit the industry Observation.component",SHALL,Server,false,,,"",""
|
|
662
|
+
hl7.fhir.us.core_6.1.0,435,https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-pregnancyintent.html#mandatory-and-must-support-data-elements,"To represent the patient’s pregnancy status, [servers SHALL] use the [US Core Observation Pregnancy Status Profile](https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-pregnancystatus.html).",SHALL,Server,false,,,"",""
|
|
663
|
+
hl7.fhir.us.core_6.1.0,436,https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-pregnancystatus.html#mandatory-and-must-support-data-elements,"To represent the patient’s intent to become pregnant, [servers SHALL] use the [US Core Observation Pregnancy Intent Profile](https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-pregnancyintent.html).",SHALL,Server,false,,,"",""
|
|
664
|
+
hl7.fhir.us.core_6.1.0,437,https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-screening-assessment.html#mandatory-and-must-support-data-elements,"[For] multi-question surveys or assessments Observation.code is an overarching assessment or screening code, and the Observation.value element SHOULD be empty",SHOULD,Server,true,,,"",""
|
|
665
|
+
hl7.fhir.us.core_6.1.0,438,https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-screening-assessment.html#mandatory-and-must-support-data-elements,"A practitioner’s clinical observation or assertion about a patient’s health status, which is not a response to a screening or assessment question,SHOULD use the [US Core Simple Observation Profile](https://hl7.org/fhir/us/core/StructureDefinition-us-core-simple-observation.html) instead [of the US Core Observation Screening Assessment Profile]",SHOULD,Server,true,,,"",""
|
|
666
|
+
hl7.fhir.us.core_6.1.0,439,https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-screening-assessment.html#mandatory-and-must-support-data-elements,the server system ... SHALL support [either] Reference(US Core Observation Profile) or Reference(US Core QuestionnaireResponse Profile) for Observation.derivedFrom,SHALL,Server,true,,,2.2.34.10,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_reference_resolution_test
|
|
667
|
+
hl7.fhir.us.core_6.1.0,440,https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-sexual-orientation.html#mandatory-and-must-support-data-elements,"Additional codes that translate or map to the Observation code (e.g., local codes) are allowed [when using US Core Observation Sexual Orientation Profile]",MAY,Server,true,,,"",""
|
|
668
|
+
hl7.fhir.us.core_6.1.0,441,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-simple-observation.html#mandatory-and-must-support-data-elements,Observations formally part of an assessment tool or survey SHOULD use the [US Core Observation Screening Assessment Profile](https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-observation-screening-assessment.html).,SHOULD,Server,false,,,"",""
|
|
669
|
+
hl7.fhir.us.core_6.1.0,442,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-simple-observation.html#mandatory-and-must-support-data-elements,An assertion or determination derived from screening and assessment tools SHOULD reference them using Observation.derivedFrom,SHOULD,Server,false,,,"",""
|
|
670
|
+
hl7.fhir.us.core_6.1.0,443,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-simple-observation.html#mandatory-and-must-support-data-elements,"When using `ServiceRequest.reasonReference’ to reference an Observation, the referenced Observation SHOULD be a US Core Observation",SHOULD,Server,false,,,"",""
|
|
671
|
+
hl7.fhir.us.core_6.1.0,447,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-vital-signs.html#mandatory-and-must-support-data-elements,[US Core Vital Signs] observations MAY have [component](http://hl7.org/fhir/R4/observation.html#gr-comp) observations … [see] FHIR core specification [vital signs table](http://hl7.org/fhir/R4/observation-vitalsigns.html#vitals-table) for examples,MAY,Server,false,,,"",""
|
|
672
|
+
hl7.fhir.us.core_6.1.0,448,"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-pediatric-bmi-for-age.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-pediatric-weight-for-height.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-head-occipital-frontal-circumference-percentile.html#mandatory-and-must-support-data-elements",Information about the growth chart tables used to determine percentiles SHOULD be supplied in Observation.note.text,SHOULD,Server,false,,,"",""
|
|
673
|
+
hl7.fhir.us.core_6.1.0,449,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-blood-pressure.html#mandatory-and-must-support-data-elements,"[In the US Core Blood Pressure Profile] because the blood pressure values are communicated in the mandatory systolic and diastolic components[,] the Observation.value[x] element SHOULD be omitted",SHOULD,Server,true,,,"",""
|
|
674
|
+
hl7.fhir.us.core_6.1.0,450,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-blood-pressure.html#mandatory-and-must-support-data-elements,"[In the US Core Blood Pressure Profile] because the blood pressure values are communicated in the mandatory systolic and diastolic components[,] an Observation without a systolic or diastolic result value, SHALL include a reason why the data is absent in Observation.component.dataAbsentReason",SHALL,Server,true,,,"",""
|
|
675
|
+
hl7.fhir.us.core_6.1.0,451,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-blood-pressure.html#mandatory-and-must-support-data-elements,"[In the US Core Blood Pressure Profile] because the blood pressure values are communicated in the mandatory systolic and diastolic components[,] All server systems - including those that never provide a component observation without a value - SHALL support Observation.component.dataAbsentReason for the components.",SHALL,Server,true,,,"",""
|
|
676
|
+
hl7.fhir.us.core_6.1.0,452,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-pulse-oximetry.html#mandatory-and-must-support-data-elements,Inspired oxygen therapy may be represented with [component](http://hl7.org/fhir/R4/observation.html#gr-comp) observations when measured at the same time as the pulse oximetry measurements [in the US Core Pulse Oximetry profile],MAY,Server,true,,,"",""
|
|
677
|
+
hl7.fhir.us.core_6.1.0,453,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-pulse-oximetry.html#mandatory-and-must-support-data-elements,"Many pulse oximetry readings are taken while the patient is breathing room air. The concept of “room air” (unmodified, ambient air) SHOULD be represented as an inhaled oxygen flow rate of 0 liters/min",SHOULD,Server,true,,,"",""
|
|
678
|
+
hl7.fhir.us.core_6.1.0,454,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-pulse-oximetry.html#mandatory-and-must-support-data-elements,"A pulse oximetry reading without inspired oxygen component observations may imply that the measurement was performed while the patient was breathing room air or that the inspired oxygen reading was omitted. To remove this uncertainty, the inspired oxygen [component](http://hl7.org/fhir/R4/observation.html#gr-comp) observations SHOULD be used [when using the US Core Pulse Oximetry profile.]",SHOULD,Server,true,,,"",""
|
|
679
|
+
hl7.fhir.us.core_6.1.0,455,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-organization.html#mandatory-and-must-support-data-elements,Systems SHALL support National Provider Identifier (NPI) for organizations,SHALL,Server,false,,,2.2.43.05,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_organization-us_core_v610_organization_must_support_test
|
|
680
|
+
hl7.fhir.us.core_6.1.0,456,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-organization.html#mandatory-and-must-support-data-elements,Systems … SHOULD the National Association of Insurance Commissioners NAIC Company code (sometimes called “NAIC Number” or “cocode”) for payers.,SHOULD,Server,false,,,"",""
|
|
681
|
+
hl7.fhir.us.core_6.1.0,457,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-organization.html#mandatory-and-must-support-data-elements,Systems … SHOULD support Clinical Laboratory Improvement Amendments (CLIA) for laboratories,SHOULD,Server,false,,,"",""
|
|
682
|
+
hl7.fhir.us.core_6.1.0,466,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-patient.html#mandatory-and-must-support-data-elements,Previous name is represented by setting Patient.name.use to “old” or providing an end date in Patient.name.period or doing both,SHOULD,Server,true,,,"",""
|
|
683
|
+
hl7.fhir.us.core_6.1.0,467,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-patient.html#mandatory-and-must-support-data-elements,Previous address is represented by setting Patient.address.use to “old” or providing an end date in Patient.address.period or doing both.,SHOULD,Server,true,,,"",""
|
|
684
|
+
hl7.fhir.us.core_6.1.0,468,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-patient.html#mandatory-and-must-support-data-elements,Communication.preferred MAY designate a preferred language when multiple languages are represented,MAY,Server,false,,,"",""
|
|
685
|
+
hl7.fhir.us.core_6.1.0,472,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-patient.html#mandatory-and-must-support-data-elements,The Patient’s Social Security Numbers SHOULD NOT be used as a patient identifier in Patient.identifier.value,SHOULD NOT,Server,false,,,"",""
|
|
686
|
+
hl7.fhir.us.core_6.1.0,473,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-practitioner.html#mandatory-and-must-support-data-elements,Servers that support only the US Core Practitioner Profile and do not support the [US Core PractitionerRole Profile](https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-practitionerrole.html) SHALL provide implementation-specific guidance on how to access a provider’s location and contact information using only the Practitioner resource.,SHALL,Server,true,,,"",""
|
|
687
|
+
hl7.fhir.us.core_6.1.0,477,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-practitioner.html#mandatory-and-must-support-data-elements,Only professional/work contact information about the practitioner SHOULD be available to the patient,SHOULD,Server,false,,,"",""
|
|
688
|
+
hl7.fhir.us.core_6.1.0,479,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-procedure.html#mandatory-and-must-support-data-elements,"Procedure codes … [MAY] be taken from SNOMED-CT, CPT, HCPCS II, ICD-10-PCS, CDT, or LOINC [for procedure.code]",MAY,Server,false,,,"",""
|
|
689
|
+
hl7.fhir.us.core_6.1.0,480,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-procedure.html#mandatory-and-must-support-data-elements,[If using LOINC codes in procedure.code] only LOINC concepts that reflect actual procedures SHOULD be used,SHOULD,Server,true,,,"",""
|
|
690
|
+
hl7.fhir.us.core_6.1.0,481,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-procedure.html#mandatory-and-must-support-data-elements,A procedure including an implantable device SHOULD use Procedure.focalDevice referencing the [US Core Implantable Device Profile](https://hl7.org/fhir/us/core/STU6./StructureDefinition-us-core-implantable-device.html).,SHOULD,Server,false,,,"",""
|
|
691
|
+
hl7.fhir.us.core_6.1.0,489,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-provenance.html#mandatory-and-must-support-data-elements,The US Core Provenance resource SHALL be supported for … [this] US Core resource type AllergyIntolerance,SHALL,Server,false,,,2.2.4.04,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_allergy_intolerance-us_core_v610_allergy_intolerance_provenance_revinclude_search_test
|
|
692
|
+
hl7.fhir.us.core_6.1.0,490,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-provenance.html#mandatory-and-must-support-data-elements,The US Core Provenance resource SHALL be supported for … [this] US Core resource type CarePlan,SHALL,Server,false,,,2.2.5.06,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_plan-us_core_v610_care_plan_provenance_revinclude_search_test
|
|
693
|
+
hl7.fhir.us.core_6.1.0,491,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-provenance.html#mandatory-and-must-support-data-elements,The US Core Provenance resource SHALL be supported for … [this] US Core resource type CareTeam,SHALL,Server,false,,,2.2.6.05,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_care_team-us_core_v610_care_team_provenance_revinclude_search_test
|
|
694
|
+
hl7.fhir.us.core_6.1.0,492,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-provenance.html#mandatory-and-must-support-data-elements,The US Core Provenance resource SHALL be supported for … [this] US Core resource type Condition,SHALL,Server,false,,,"2.2.7.12, 2.2.8.12","crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_encounter_diagnosis-us_core_v610_condition_encounter_diagnosis_provenance_revinclude_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_condition_problems_health_concerns-us_core_v610_condition_problems_health_concerns_provenance_revinclude_search_test"
|
|
695
|
+
hl7.fhir.us.core_6.1.0,493,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-provenance.html#mandatory-and-must-support-data-elements,The US Core Provenance resource SHALL be supported for … [this] US Core resource type Coverage,SHALL,Server,false,,,2.2.9.03,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_coverage-us_core_v610_coverage_provenance_revinclude_search_test
|
|
696
|
+
hl7.fhir.us.core_6.1.0,494,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-provenance.html#mandatory-and-must-support-data-elements,The US Core Provenance resource SHALL be supported for … [this] US Core resource type Device,SHALL,Server,false,,,2.2.10.05,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_device-us_core_v610_device_provenance_revinclude_search_test
|
|
697
|
+
hl7.fhir.us.core_6.1.0,495,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-provenance.html#mandatory-and-must-support-data-elements,The US Core Provenance resource SHALL be supported for … [this] US Core resource type DiagnosticReport,SHALL,Server,false,,,"2.2.11.08, 2.2.12.08","crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_note-us_core_v610_diagnostic_report_note_provenance_revinclude_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_diagnostic_report_lab-us_core_v610_diagnostic_report_lab_provenance_revinclude_search_test"
|
|
698
|
+
hl7.fhir.us.core_6.1.0,496,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-provenance.html#mandatory-and-must-support-data-elements,The US Core Provenance resource SHALL be supported for … [this] US Core resource type Document Reference,SHALL,Server,false,,,2.2.13.09,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_document_reference-us_core_v610_document_reference_provenance_revinclude_search_test
|
|
699
|
+
hl7.fhir.us.core_6.1.0,497,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-provenance.html#mandatory-and-must-support-data-elements,The US Core Provenance resource SHALL be supported for … [this] US Core resource type Encounter,SHALL,Server,false,,,2.2.14.11,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_encounter-us_core_v610_encounter_provenance_revinclude_search_test
|
|
700
|
+
hl7.fhir.us.core_6.1.0,498,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-provenance.html#mandatory-and-must-support-data-elements,The US Core Provenance resource SHALL be supported for … [this] US Core resource type Goal,SHALL,Server,false,,,2.2.15.06,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_goal-us_core_v610_goal_provenance_revinclude_search_test
|
|
701
|
+
hl7.fhir.us.core_6.1.0,499,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-provenance.html#mandatory-and-must-support-data-elements,The US Core Provenance resource SHALL be supported for … [this] US Core resource type Immunization,SHALL,Server,false,,,2.2.16.05,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_immunization-us_core_v610_immunization_provenance_revinclude_search_test
|
|
702
|
+
hl7.fhir.us.core_6.1.0,500,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-provenance.html#mandatory-and-must-support-data-elements,The US Core Provenance resource SHALL be supported for … [this] US Core resource type MedicationDispense,SHALL,Server,false,,,2.2.17.05,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_dispense-us_core_v610_medication_dispense_provenance_revinclude_search_test
|
|
703
|
+
hl7.fhir.us.core_6.1.0,501,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-provenance.html#mandatory-and-must-support-data-elements,The US Core Provenance resource SHALL be supported for … [this] US Core resource type MedicationRequest,SHALL,Server,false,,,2.2.18.06,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_medication_request-us_core_v610_medication_request_provenance_revinclude_search_test
|
|
704
|
+
hl7.fhir.us.core_6.1.0,502,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-provenance.html#mandatory-and-must-support-data-elements,The US Core Provenance resource SHALL be supported for … [this] US Core resource type Observation,SHALL,Server,false,,,"2.2.19.07, 2.2.20.07, 2.2.21.07, 2.2.22.07, 2.2.30.07, 2.2.34.07","crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_lab-us_core_v610_observation_lab_provenance_revinclude_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancystatus-us_core_v610_observation_pregnancystatus_provenance_revinclude_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_pregnancyintent-us_core_v610_observation_pregnancyintent_provenance_revinclude_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_occupation-us_core_v610_observation_occupation_provenance_revinclude_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_sexual_orientation-us_core_v610_observation_sexual_orientation_provenance_revinclude_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_observation_screening_assessment-us_core_v610_observation_screening_assessment_provenance_revinclude_search_test"
|
|
705
|
+
hl7.fhir.us.core_6.1.0,503,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-provenance.html#mandatory-and-must-support-data-elements,The US Core Provenance resource SHALL be supported for … [this] US Core resource type Patient,SHALL,Server,false,,,2.2.3.10,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_patient-us_core_v610_patient_provenance_revinclude_search_test
|
|
706
|
+
hl7.fhir.us.core_6.1.0,504,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-provenance.html#mandatory-and-must-support-data-elements,The US Core Provenance resource SHALL be supported for … [this] US Core resource type Procedure,SHALL,Server,false,,,2.2.40.06,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_procedure-us_core_v610_procedure_provenance_revinclude_search_test
|
|
707
|
+
hl7.fhir.us.core_6.1.0,505,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-provenance.html#mandatory-and-must-support-data-elements,The US Core Provenance resource SHALL be supported for … [this] US Core resource type QuestionnaireResponse,SHALL,Server,false,,,2.2.41.07,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_questionnaire_response-us_core_v610_questionnaire_response_provenance_revinclude_search_test
|
|
708
|
+
hl7.fhir.us.core_6.1.0,506,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-provenance.html#mandatory-and-must-support-data-elements,The US Core Provenance resource SHALL be supported for … [this] US Core resource type RelatedPerson,SHALL,Server,false,,,2.2.47.06,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_related_person-us_core_v610_related_person_provenance_revinclude_search_test
|
|
709
|
+
hl7.fhir.us.core_6.1.0,507,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-provenance.html#mandatory-and-must-support-data-elements,The US Core Provenance resource SHALL be supported for … [this] US Core resource type ServiceRequest,SHALL,Server,false,,,2.2.42.09,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_service_request-us_core_v610_service_request_provenance_revinclude_search_test
|
|
710
|
+
hl7.fhir.us.core_6.1.0,508,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-provenance.html#mandatory-and-must-support-data-elements,"If a system receives a provider in Provenance.agent.who as free text, they must capture [the organization] who sent them the information [and upon] request ... SHALL provide this organization as the source",SHALL,Server,true,,,"",""
|
|
711
|
+
hl7.fhir.us.core_6.1.0,509,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-provenance.html#mandatory-and-must-support-data-elements,"If a system receives a provider in Provenance.agent.who as free text, … [upon request they] MAY include the free text provider.",MAY,Server,true,,,"",""
|
|
712
|
+
hl7.fhir.us.core_6.1.0,510,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-provenance.html#mandatory-and-must-support-data-elements,Systems that need to know the activity has occurred SHOULD populate the activity [Provenance.activity],SHOULD,Server,false,,,"",""
|
|
713
|
+
hl7.fhir.us.core_6.1.0,511,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-questionnaireresponse.html#mandatory-and-must-support-data-elements,If the QuestionnaireResponse is based on a non-FHIR form [then a] ... FHIR Questionnaire [needs to] represent at least the relevant metadata,SHALL,Server,true,,,2.2.41,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_questionnaire_response
|
|
714
|
+
hl7.fhir.us.core_6.1.0,512,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-questionnaireresponse.html#mandatory-and-must-support-data-elements,If the QuestionnaireResponse is based on a non-FHIR form [then a] … FHIR Questionnaire's questions may be omitted,MAY,Server,true,,,"",""
|
|
715
|
+
hl7.fhir.us.core_6.1.0,514,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-servicerequest.html#mandatory-and-must-support-data-elements,"The ServiceRequest.category value set … [MAY] be treated as [extensible](http://hl7.org/fhir/R4/terminologies.html#extensible), and other category codes can be used instead [of the US Core ServiceRequest Category Codes]",MAY,Server,false,,,"",""
|
|
716
|
+
hl7.fhir.us.core_6.1.0,515,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-servicerequest.html#mandatory-and-must-support-data-elements,The ServiceRequest.code value ... SHOULD be constrained to a subset for a particular use case or domain,SHOULD,Server,false,,,"",""
|
|
717
|
+
hl7.fhir.us.core_6.1.0,522,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-servicerequest.html#mandatory-and-must-support-data-elements,"When using ServiceRequest.reasonReference, the referenced resources SHOULD be a US Core Profile",SHOULD,Server,false,,,"",""
|
|
718
|
+
hl7.fhir.us.core_6.1.0,523,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-specimen.html#mandatory-and-must-support-data-elements,"Since the binding [for Specimen.type] is [extensible](http://hl7.org/fhir/R4/terminologies.html#extensible) when a code is unavailable, just text is allowed.",MAY,Server,false,,,"",""
|
|
719
|
+
hl7.fhir.us.core_6.1.0,532,https://hl7.org/fhir/us/core/STU6.1/CapabilityStatement-us-core-server.html#should_igs,"[Servers] SHOULD Support the ...
|
|
720
|
+
[SMART Application Launch Framework Implementation Guide](http://hl7.org/fhir/smart-app-launch/history.html)",SHOULD,Server,false,,,"",""
|
|
721
|
+
hl7.fhir.us.core_6.1.0,533,https://hl7.org/fhir/us/core/STU6.1/CapabilityStatement-us-core-server.html#behavior,US Core Server SHALL support the US Core Patient resource profile,SHALL,Server,false,,,2.2.1.05,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_capability_statement-us_core_profile_support
|
|
722
|
+
hl7.fhir.us.core_6.1.0,534,https://hl7.org/fhir/us/core/STU6.1/CapabilityStatement-us-core-server.html#behavior,US Core Server SHALL support … at least one additional resource profile [in addition to the US Core Patient resource profile] from the list of US Core Profiles,SHALL,Server,false,,,2.2.1.05,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_capability_statement-us_core_profile_support
|
|
723
|
+
hl7.fhir.us.core_6.1.0,535,https://hl7.org/fhir/us/core/STU6.1/CapabilityStatement-us-core-server.html#behavior,US Core Server SHALL … Implement the RESTful behavior according to the FHIR specification.,SHALL,Server,false,,,"",""
|
|
724
|
+
hl7.fhir.us.core_6.1.0,536,https://hl7.org/fhir/us/core/STU6.1/CapabilityStatement-us-core-server.html#behavior,US Core Server SHALL … return the following response class (Status 400) [for] invalid parameters,SHALL,Server,false,,,"",""
|
|
725
|
+
hl7.fhir.us.core_6.1.0,537,https://hl7.org/fhir/us/core/STU6.1/CapabilityStatement-us-core-server.html#behavior,US Core Server SHALL … return the following response class (Status 401/4xx) [for] unauthorized request,SHALL,Server,false,,,"",""
|
|
726
|
+
hl7.fhir.us.core_6.1.0,538,https://hl7.org/fhir/us/core/STU6.1/CapabilityStatement-us-core-server.html#behavior,US Core Server SHALL … return the following response class (Status 403) [for] insufficient scopes,SHALL,Server,false,,,"",""
|
|
727
|
+
hl7.fhir.us.core_6.1.0,539,https://hl7.org/fhir/us/core/STU6.1/CapabilityStatement-us-core-server.html#behavior,US Core Server SHALL … return the following response class (Status 404) [for] unknown resource,SHALL,Server,false,,,"",""
|
|
728
|
+
hl7.fhir.us.core_6.1.0,540,https://hl7.org/fhir/us/core/STU6.1/CapabilityStatement-us-core-server.html#behavior,US Core Server SHALL … support JSON source formats for all US Core interactions.,SHALL,Server,false,,,2.2.1.04,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_capability_statement-us_core_json_support
|
|
729
|
+
hl7.fhir.us.core_6.1.0,541,https://hl7.org/fhir/us/core/STU6.1/CapabilityStatement-us-core-server.html#behavior,US Core Server SHOULD … support XML source formats for all US Core interactions.,SHOULD,Server,false,,,"",""
|
|
730
|
+
hl7.fhir.us.core_6.1.0,542,https://hl7.org/fhir/us/core/STU6.1/CapabilityStatement-us-core-server.html#behavior,US Core Server SHOULD … identify the US Core profiles supported as part of the FHIR meta.profile attribute for each instance.,SHOULD,Server,false,,,"",""
|
|
731
|
+
hl7.fhir.us.core_6.1.0,543,https://hl7.org/fhir/us/core/STU6.1/CapabilityStatement-us-core-server.html#behavior,"A server SHALL reject any unauthorized requests by returning an HTTP 401 ""Unauthorized"", HTTP 403 ""Forbidden"", or HTTP 404 ""Not Found""",SHALL,Server,true,,,"",""
|
|
732
|
+
hl7.fhir.us.core_6.1.0,548,https://hl7.org/fhir/us/core/STU6.1/CapabilityStatement-us-core-server.html#valueset,[US Core Servers] SHOULD support [$expand](http://hl7.org/fhir/OperationDefinition/ValueSet-expand) operation,SHOULD,Server,false,,,"",""
|
|
733
|
+
hl7.fhir.us.core_6.1.0,549,https://hl7.org/fhir/us/core/STU6.1/CapabilityStatement-us-core-server.html#valueset,"If a server supports DocumentReference for creating, using, and sharing clinical notes, it SHOULD also support the context and contextdirection parameters of the $expand operation",SHOULD,Server,true,,,"",""
|
|
734
|
+
hl7.fhir.us.core_6.1.0,550,https://hl7.org/fhir/us/core/STU6.1/security.html#patient-privacy-and-security,Systems SHALL establish a risk analysis and management regime that conforms with HIPAA security regulatory requirements,SHALL,Server,false,,,"",""
|
|
735
|
+
hl7.fhir.us.core_6.1.0,552,https://hl7.org/fhir/us/core/STU6.1/security.html#patient-privacy-and-security,US Federal systems SHOULD conform with the risk management and mitigation requirements defined in NIST 800 series documents.,SHOULD,Server,false,,,"",""
|
|
736
|
+
hl7.fhir.us.core_6.1.0,554,https://hl7.org/fhir/us/core/STU6.1/security.html#patient-privacy-and-security,US Federal systems … SHOULD include security category assignment following NIST 800-60 vol. 2 Appendix D.14.,SHOULD,Server,false,,,"",""
|
|
737
|
+
hl7.fhir.us.core_6.1.0,556,https://hl7.org/fhir/us/core/STU6.1/security.html#patient-privacy-and-security,The coordination of risk management and the related security and privacy controls … SHOULD be defined in the Business Associate Agreement when available.,SHOULD,Server,false,,,"",""
|
|
738
|
+
hl7.fhir.us.core_6.1.0,558,https://hl7.org/fhir/us/core/STU6.1/security.html#patient-privacy-and-security,Systems SHALL reference a single time source to establish a common time base for security auditing and clinical data records among computing systems.,SHALL,Server,false,,,"",""
|
|
739
|
+
hl7.fhir.us.core_6.1.0,560,https://hl7.org/fhir/us/core/STU6.1/security.html#patient-privacy-and-security,The selected time service SHOULD be documented in the Business Associate Agreement when available.,SHOULD,Server,false,,,"",""
|
|
740
|
+
hl7.fhir.us.core_6.1.0,562,https://hl7.org/fhir/us/core/STU6.1/security.html#patient-privacy-and-security,Systems SHALL keep audit logs of the various transactions.,SHALL,Server,false,,,"",""
|
|
741
|
+
hl7.fhir.us.core_6.1.0,564,https://hl7.org/fhir/us/core/STU6.1/security.html#patient-privacy-and-security,Systems SHALL use TLS version 1.2 or higher for all transmissions not taking place over a secure network connection.,SHALL,Server,false,,,"",""
|
|
742
|
+
hl7.fhir.us.core_6.1.0,566,https://hl7.org/fhir/us/core/STU6.1/security.html#patient-privacy-and-security,US Federal systems SHOULD conform with FIPS PUB 140-2.,SHOULD,Server,false,,,"",""
|
|
743
|
+
hl7.fhir.us.core_6.1.0,568,https://hl7.org/fhir/us/core/STU6.1/security.html#patient-privacy-and-security,Systems SHALL conform to [FHIR Communications Security](http://hl7.org/fhir/R4/security.html#http) requirements.,SHALL,Server,false,,,"",""
|
|
744
|
+
hl7.fhir.us.core_6.1.0,570,https://hl7.org/fhir/us/core/STU6.1/security.html#patient-privacy-and-security,"For Authentication and Authorization, Systems SHALL support any [SMART App Launch version](http://hl7.org/fhir/smart-app-launch/history.html) for client <-> server interactions.",SHALL,Server,false,,,"",""
|
|
745
|
+
hl7.fhir.us.core_6.1.0,572,https://hl7.org/fhir/us/core/STU6.1/security.html#patient-privacy-and-security,"Systems SHALL implement consent requirements per their state, local, and institutional policies.",SHALL,Server,false,,,"",""
|
|
746
|
+
hl7.fhir.us.core_6.1.0,574,https://hl7.org/fhir/us/core/STU6.1/security.html#patient-privacy-and-security,The Business Associate Agreements SHOULD document systems’ mutual consent requirements.,SHOULD,Server,false,,,"",""
|
|
747
|
+
hl7.fhir.us.core_6.1.0,576,https://hl7.org/fhir/us/core/STU6.1/security.html#patient-privacy-and-security,Systems SHOULD provide Provenance statements using the [US Core Provenance Profile](https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-provenance.html) resource and associated requirements.,SHOULD,Server,false,,,"",""
|
|
748
|
+
hl7.fhir.us.core_6.1.0,578,https://hl7.org/fhir/us/core/STU6.1/security.html#patient-privacy-and-security,Systems MAY implement the [FHIR Digital Signatures](http://hl7.org/fhir/R4/security.html#digital%20signatures),MAY,Server,false,,,"",""
|
|
749
|
+
hl7.fhir.us.core_6.1.0,580,https://hl7.org/fhir/us/core/STU6.1/security.html#patient-privacy-and-security,Systems MAY protect the confidentiality of data at rest via encryption and associated access controls.,MAY,Server,false,,,"",""
|
|
750
|
+
hl7.fhir.us.core_6.1.0,584,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-questionnaireresponse.html#mandatory-and-must-support-data-elements,If the QuestionnaireResponse is based on a non-FHIR form [then a] ... FHIR Questionnaire [will communicate] the identifier of the non-FHIR form instead of the canonical URI using the US Core Extension Questionnaire URI extension.,SHALL,Server,true,,,"",""
|
|
751
|
+
hl7.fhir.us.core_6.1.0,587,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-allergyintolerance.html#mandatory-and-must-support-data-elements,Each AllergyIntolerance Must Support: a verification status,SHALL,Server,false,,,2.2.4.06,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_allergy_intolerance-us_core_v610_allergy_intolerance_must_support_test
|
|
752
|
+
hl7.fhir.us.core_6.1.0,588,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-allergyintolerance.html#mandatory-and-must-support-data-elements,Each AllergyIntolerance Must Support: a reaction manifestation,SHALL,Server,false,,,2.2.4.06,crd_client_v221-crd_v221_client_fhir_api-us_core_v610_fhir_api-us_core_v610_allergy_intolerance-us_core_v610_allergy_intolerance_must_support_test
|
|
753
|
+
hl7.fhir.us.core_6.1.0,700,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-condition-encounter-diagnosis.html#notes,"Servers providing access to [medical] data ... [MAY] use [US Core SMART Scopes](https://hl7.org/fhir/us/core/STU6.1/future-of-US-core.html#us-core-smart-scopes) for
|
|
754
|
+
[resource level scopes](http://hl7.org/fhir/smart-app-launch/scopes-and-launch-context.html#scopes-for-requesting-clinical-data).",MAY,Server,false,,,"",""
|
|
755
|
+
hl7.fhir.us.core_6.1.0,701,https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-condition-encounter-diagnosis.html#notes,"Servers providing access to [medical] data ... [MAY] use [US Core SMART Scopes](https://hl7.org/fhir/us/core/STU6.1/future-of-US-core.html#us-core-smart-scopes) for
|
|
756
|
+
... [granular scopes] (http://hl7.org/fhir/smart-app-launch/scopes-and-launch-context.html#finer-grained-resource-constraints-using-search-parameters).",MAY,Server,false,,,"",""
|
|
757
|
+
hl7.fhir.us.core_6.1.0,702,"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-location.html, https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-practitionerrole.html#mandatory-and-must-support-data-elements",US Core Location … SHOULD be used as the default profile if referenced by another US Core profile,SHOULD,Server,false,,,"",""
|
|
758
|
+
hl7.fhir.us.core_6.1.0,703,"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-location.html, https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-practitionerrole.html#mandatory-and-must-support-data-elements",US Core PractionerRole … SHOULD be used as the default profile if referenced by another US Core profile,SHOULD,Server,false,,,"",""
|
|
759
|
+
hl7.fhir.us.core_7.0.0,1,https://hl7.org/fhir/us/core/STU7/general-requirements.html#profile-only-support,"To support a US Core Profile, a server: **SHALL** Be able to populate all profile data elements that are mandatory and/or flagged as Must Support as defined by that profile’s StructureDefinition.",SHALL,Server,false,,,"2.3.3.12, 2.3.4.06, 2.3.5.08, 2.3.6.07, 2.3.7.15, 2.3.8.15, 2.3.9.05, 2.3.10.07, 2.3.11.11, 2.3.12.11, 2.3.13.11, 2.3.14.14, 2.3.15.08, 2.3.16.07, 2.3.17.07, 2.3.18.09, 2.3.19.10, 2.3.20.10, 2.3.21.10, 2.3.22.10, 2.3.23.10, 2.3.24.10, 2.3.25.10, 2.3.26.10, 2.3.27.10, 2.3.28.10, 2.3.29.10, 2.3.30.10, 2.3.31.10, 2.3.32.10, 2.3.33.10, 2.3.34.10, 2.3.35.10, 2.3.36.10, 2.3.37.10, 2.3.38.10, 2.3.39.10, 2.3.40.10, 2.3.41.10, 2.3.42.10, 2.3.43.08, 2.3.44.09, 2.3.45.11, 2.3.46.08, 2.3.47.05, 2.3.48.06, 2.3.49.05, 2.3.50.03, 2.3.51.08, 2.3.52.05","crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_allergy_intolerance-us_core_v700_allergy_intolerance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_plan-us_core_v700_care_plan_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_team-us_core_v700_care_team_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_coverage-us_core_v700_coverage_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_device-us_core_v700_device_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_goal-us_core_v700_goal_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_immunization-us_core_v700_immunization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_dispense-us_core_v700_medication_dispense_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_sexual_orientation-us_core_v700_observation_sexual_orientation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_questionnaire_response-us_core_v700_questionnaire_response_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_location-us_core_v700_location_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_organization-us_core_v700_organization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner-us_core_v700_practitioner_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner_role-us_core_v700_practitioner_role_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_provenance-us_core_v700_provenance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_related_person-us_core_v700_related_person_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_specimen-us_core_v700_specimen_must_support_test"
|
|
760
|
+
hl7.fhir.us.core_7.0.0,2,https://hl7.org/fhir/us/core/STU7/general-requirements.html#profile-only-support,"To support a US Core Profile, a server: **SHOULD** declare support for a US Core Profile by including its official URL in the server’s `CapabilityStatement.rest.resource.supportedProfile` element.",SHOULD,Server,false,,,"",""
|
|
761
|
+
hl7.fhir.us.core_7.0.0,3,https://hl7.org/fhir/us/core/STU7/general-requirements.html#profile-support--interaction-support,Servers may deploy and support one or more US Core Profiles to represent clinical information,MAY,Server,true,,,"",""
|
|
762
|
+
hl7.fhir.us.core_7.0.0,4,https://hl7.org/fhir/us/core/STU7/general-requirements.html#profile-support--interaction-support,Server may deploy and support ... the following US Core interaction: “Quick Start” defined for each Profile,MAY,Server,true,,,"",""
|
|
763
|
+
hl7.fhir.us.core_7.0.0,5,https://hl7.org/fhir/us/core/STU7/general-requirements.html#profile-support--interaction-support,Server may deploy and support ... the following US Core interaction: [Clinical Notes](https://hl7.org/fhir/us/core/clinical-notes.html),MAY,Server,true,,,"",""
|
|
764
|
+
hl7.fhir.us.core_7.0.0,6,https://hl7.org/fhir/us/core/STU7/general-requirements.html#profile-support--interaction-support,Server may deploy and support ... the following US Core interaction: [Medication List](https://hl7.org/fhir/us/core/medication-list.html),MAY,Server,true,,,"",""
|
|
765
|
+
hl7.fhir.us.core_7.0.0,7,https://hl7.org/fhir/us/core/STU7/general-requirements.html#profile-support--interaction-support,Server may deploy and support ... the following US Core interaction: [Basic Provenance](https://hl7.org/fhir/us/core/basic-provenance.html),MAY,Server,true,,,"",""
|
|
766
|
+
hl7.fhir.us.core_7.0.0,8,https://hl7.org/fhir/us/core/STU7/general-requirements.html#profile-support--interaction-support,Server may deploy and support ... the following US Core interaction: [Screening and Assessments](https://hl7.org/fhir/us/core/screening-and-assessments.html),MAY,Server,true,,,"",""
|
|
767
|
+
hl7.fhir.us.core_7.0.0,9,https://hl7.org/fhir/us/core/STU7/general-requirements.html#profile-support--interaction-support,Servers implementing ... [clinical information representation] can claim conformance to the US Core Profile content structure ... by implementing all or parts of the US Core CapabilityStatement into their capabilities.,MAY,Server,true,,,"",""
|
|
768
|
+
hl7.fhir.us.core_7.0.0,10,https://hl7.org/fhir/us/core/STU7/general-requirements.html#profile-support--interaction-support,Servers implementing ... [interactions] can claim conformance to the ... RESTful interactions defined by implementing all or parts of the US Core CapabilityStatement into their capabilities,MAY,Server,true,,,"",""
|
|
769
|
+
hl7.fhir.us.core_7.0.0,11,https://hl7.org/fhir/us/core/STU7/general-requirements.html#profile-support--interaction-support,A server that certifies to the [21st Century Cures Act for accessing patient data](https://www.federalregister.gov/d/2020-07419/p-1177) must implement all components in the USCDI [[USCDI link](https://www.healthit.gov/isp/united-states-core-data-interoperability-uscdi)],SHALL,Server,true,Not Tested,This requirement is specific to testing for the 21st Century Cures Act and is not relevant to the IG tests,NA,NA
|
|
770
|
+
hl7.fhir.us.core_7.0.0,12,https://hl7.org/fhir/us/core/STU7/general-requirements.html#profile-support--interaction-support,A server that certifies to the [21st Century Cures Act for accessing patient data](https://www.federalregister.gov/d/2020-07419/p-1177) must implement all components in the ... the US Core CapabilityStatement [[Definition](https://hl7.org/fhir/us/core/CapabilityStatement-us-core-server.html)] .,SHALL,Server,true,Not Tested,This requirement is specific to testing for the 21st Century Cures Act and is not relevant to the IG tests,NA,NA
|
|
771
|
+
hl7.fhir.us.core_7.0.0,13,https://hl7.org/fhir/us/core/STU7/general-requirements.html#claiming-conformance-to-a-us-core-profile,"[To claim conformance to a US Core Profile] a conformant server:
|
|
772
|
+
|
|
773
|
+
**SHALL** Be able to populate all profile data elements that are mandatory and/or flagged as Must Support as defined by that profile’s StructureDefinition.",SHALL,Server,false,,,"2.3.3.12, 2.3.4.06, 2.3.5.08, 2.3.6.07, 2.3.7.15, 2.3.8.15, 2.3.9.05, 2.3.10.07, 2.3.11.11, 2.3.12.11, 2.3.13.11, 2.3.14.14, 2.3.15.08, 2.3.16.07, 2.3.17.07, 2.3.18.09, 2.3.19.10, 2.3.20.10, 2.3.21.10, 2.3.22.10, 2.3.23.10, 2.3.24.10, 2.3.25.10, 2.3.26.10, 2.3.27.10, 2.3.28.10, 2.3.29.10, 2.3.30.10, 2.3.31.10, 2.3.32.10, 2.3.33.10, 2.3.34.10, 2.3.35.10, 2.3.36.10, 2.3.37.10, 2.3.38.10, 2.3.39.10, 2.3.40.10, 2.3.41.10, 2.3.42.10, 2.3.43.08, 2.3.44.09, 2.3.45.11, 2.3.46.08, 2.3.47.05, 2.3.48.06, 2.3.49.05, 2.3.50.03, 2.3.51.08, 2.3.52.05","crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_allergy_intolerance-us_core_v700_allergy_intolerance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_plan-us_core_v700_care_plan_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_team-us_core_v700_care_team_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_coverage-us_core_v700_coverage_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_device-us_core_v700_device_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_goal-us_core_v700_goal_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_immunization-us_core_v700_immunization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_dispense-us_core_v700_medication_dispense_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_sexual_orientation-us_core_v700_observation_sexual_orientation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_questionnaire_response-us_core_v700_questionnaire_response_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_location-us_core_v700_location_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_organization-us_core_v700_organization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner-us_core_v700_practitioner_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner_role-us_core_v700_practitioner_role_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_provenance-us_core_v700_provenance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_related_person-us_core_v700_related_person_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_specimen-us_core_v700_specimen_must_support_test"
|
|
774
|
+
hl7.fhir.us.core_7.0.0,14,https://hl7.org/fhir/us/core/STU7/general-requirements.html#claiming-conformance-to-a-us-core-profile,"[To claim conformance to a US Core Profile] a conformant server:
|
|
775
|
+
|
|
776
|
+
**SHOULD** declare conformance with the US [Core Server Capability Statement](https://hl7.org/fhir/us/core/CapabilityStatement-us-core-server.html) by including its official URL in the server’s `CapabilityStatement.instantiates` element: `http://hl7.org/fhir/us/core/CapabilityStatement/us-core-server`",SHOULD,Server,false,,,"",""
|
|
777
|
+
hl7.fhir.us.core_7.0.0,15,https://hl7.org/fhir/us/core/STU7/general-requirements.html#claiming-conformance-to-a-us-core-profile,"[To claim conformance to a US Core Profile] a conformant server:
|
|
778
|
+
|
|
779
|
+
**SHALL** specify the full capability details from the US Core CapabilityStatement it claims to implement.",SHALL,Server,false,,,"",""
|
|
780
|
+
hl7.fhir.us.core_7.0.0,16,https://hl7.org/fhir/us/core/STU7/general-requirements.html#claiming-conformance-to-a-us-core-profile,"[To claim conformance to a US Core Profile] a conformant server:
|
|
781
|
+
|
|
782
|
+
**SHALL**… Declare support for the US Core Profile by including its official URL in the server’s CapabilityStatement.rest.resource.supportedProfile element.",SHALL,Server,false,,,2.3.1.05,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_capability_statement-us_core_profile_support
|
|
783
|
+
hl7.fhir.us.core_7.0.0,17,https://hl7.org/fhir/us/core/STU7/general-requirements.html#claiming-conformance-to-a-us-core-profile,"[To claim conformance to a US Core Profile] a conformant server:
|
|
784
|
+
|
|
785
|
+
**SHALL**… Declare support for the US Core Profile’s FHIR RESTful transactions.",SHALL,Server,false,,,"",""
|
|
786
|
+
hl7.fhir.us.core_7.0.0,18,https://hl7.org/fhir/us/core/STU7/general-requirements.html#required-bindings-for-coded-elements,[Required binding](http://hl7.org/fhir/R4/terminologies.html#required) to a ValueSet definition means that one of the codes from the specified ValueSet **SHALL** be used.,SHALL,Server,false,,,"2.3.3.11, 2.3.4.05, 2.3.5.07, 2.3.6.06, 2.3.7.14, 2.3.8.14, 2.3.9.04, 2.3.10.06, 2.3.11.10, 2.3.12.10, 2.3.13.10, 2.3.14.13, 2.3.15.07, 2.3.16.06, 2.3.17.06, 2.3.18.07, 2.3.18.08, 2.3.19.09, 2.3.20.09, 2.3.21.09, 2.3.22.09, 2.3.23.09, 2.3.24.09, 2.3.25.09, 2.3.26.09, 2.3.27.09, 2.3.28.09, 2.3.29.09, 2.3.30.09, 2.3.31.09, 2.3.32.09, 2.3.33.09, 2.3.34.09, 2.3.35.09, 2.3.36.09, 2.3.37.09, 2.3.38.09, 2.3.39.09, 2.3.40.09, 2.3.41.09, 2.3.42.09, 2.3.43.07, 2.3.44.08, 2.3.45.10, 2.3.46.07, 2.3.47.04, 2.3.48.05, 2.3.49.04, 2.3.50.02, 2.3.51.07, 2.3.52.04","crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_allergy_intolerance-us_core_v700_allergy_intolerance_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_plan-us_core_v700_care_plan_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_team-us_core_v700_care_team_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_coverage-us_core_v700_coverage_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_device-us_core_v700_device_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_goal-us_core_v700_goal_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_immunization-us_core_v700_immunization_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_dispense-us_core_v700_medication_dispense_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_sexual_orientation-us_core_v700_observation_sexual_orientation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_questionnaire_response-us_core_v700_questionnaire_response_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_location-us_core_v700_location_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_organization-us_core_v700_organization_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner-us_core_v700_practitioner_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner_role-us_core_v700_practitioner_role_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_provenance-us_core_v700_provenance_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_related_person-us_core_v700_related_person_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_specimen-us_core_v700_specimen_validation_test"
|
|
787
|
+
hl7.fhir.us.core_7.0.0,19,https://hl7.org/fhir/us/core/STU7/general-requirements.html#required-bindings-for-coded-elements,"For `CodeableConcept`, which permits multiple codings and a text element, this [[Required binding](http://hl7.org/fhir/R4/terminologies.html#required) to a ValueSet definition] rule applies to at least one of the codings",SHALL,Server,true,,,"2.3.3.11, 2.3.4.05, 2.3.5.07, 2.3.6.06, 2.3.7.14, 2.3.8.14, 2.3.9.04, 2.3.10.06, 2.3.11.10, 2.3.12.10, 2.3.13.10, 2.3.14.13, 2.3.15.07, 2.3.16.06, 2.3.17.06, 2.3.18.07, 2.3.18.08, 2.3.19.09, 2.3.20.09, 2.3.21.09, 2.3.22.09, 2.3.23.09, 2.3.24.09, 2.3.25.09, 2.3.26.09, 2.3.27.09, 2.3.28.09, 2.3.29.09, 2.3.30.09, 2.3.31.09, 2.3.32.09, 2.3.33.09, 2.3.34.09, 2.3.35.09, 2.3.36.09, 2.3.37.09, 2.3.38.09, 2.3.39.09, 2.3.40.09, 2.3.41.09, 2.3.42.09, 2.3.43.07, 2.3.44.08, 2.3.45.10, 2.3.46.07, 2.3.47.04, 2.3.48.05, 2.3.49.04, 2.3.50.02, 2.3.51.07, 2.3.52.04","crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_allergy_intolerance-us_core_v700_allergy_intolerance_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_plan-us_core_v700_care_plan_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_team-us_core_v700_care_team_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_coverage-us_core_v700_coverage_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_device-us_core_v700_device_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_goal-us_core_v700_goal_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_immunization-us_core_v700_immunization_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_dispense-us_core_v700_medication_dispense_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_sexual_orientation-us_core_v700_observation_sexual_orientation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_questionnaire_response-us_core_v700_questionnaire_response_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_location-us_core_v700_location_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_organization-us_core_v700_organization_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner-us_core_v700_practitioner_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner_role-us_core_v700_practitioner_role_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_provenance-us_core_v700_provenance_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_related_person-us_core_v700_related_person_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_specimen-us_core_v700_specimen_validation_test"
|
|
788
|
+
hl7.fhir.us.core_7.0.0,20,https://hl7.org/fhir/us/core/STU7/general-requirements.html#required-bindings-for-coded-elements,"For a [[required binding](http://hl7.org/fhir/R4/terminologies.html#required) to a ValueSet definition], a `CodeableConcept`which permits multiple codings and a text element … [using] only text is not valid.",SHALL NOT,Server,false,,,"2.3.3.11, 2.3.4.05, 2.3.5.07, 2.3.6.06, 2.3.7.14, 2.3.8.14, 2.3.9.04, 2.3.10.06, 2.3.11.10, 2.3.12.10, 2.3.13.10, 2.3.14.13, 2.3.15.07, 2.3.16.06, 2.3.17.06, 2.3.18.07, 2.3.18.08, 2.3.19.09, 2.3.20.09, 2.3.21.09, 2.3.22.09, 2.3.23.09, 2.3.24.09, 2.3.25.09, 2.3.26.09, 2.3.27.09, 2.3.28.09, 2.3.29.09, 2.3.30.09, 2.3.31.09, 2.3.32.09, 2.3.33.09, 2.3.34.09, 2.3.35.09, 2.3.36.09, 2.3.37.09, 2.3.38.09, 2.3.39.09, 2.3.40.09, 2.3.41.09, 2.3.42.09, 2.3.43.07, 2.3.44.08, 2.3.45.10, 2.3.46.07, 2.3.47.04, 2.3.48.05, 2.3.49.04, 2.3.50.02, 2.3.51.07, 2.3.52.04","crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_allergy_intolerance-us_core_v700_allergy_intolerance_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_plan-us_core_v700_care_plan_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_team-us_core_v700_care_team_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_coverage-us_core_v700_coverage_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_device-us_core_v700_device_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_goal-us_core_v700_goal_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_immunization-us_core_v700_immunization_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_dispense-us_core_v700_medication_dispense_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_sexual_orientation-us_core_v700_observation_sexual_orientation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_questionnaire_response-us_core_v700_questionnaire_response_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_location-us_core_v700_location_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_organization-us_core_v700_organization_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner-us_core_v700_practitioner_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner_role-us_core_v700_practitioner_role_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_provenance-us_core_v700_provenance_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_related_person-us_core_v700_related_person_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_specimen-us_core_v700_specimen_validation_test"
|
|
789
|
+
hl7.fhir.us.core_7.0.0,21,https://hl7.org/fhir/us/core/STU7/general-requirements.html#required-bindings-for-coded-elements,[When populating a coded element with a [required binding](http://hl7.org/fhir/R4/terminologies.html#required] to a ValueSet definition] US Core Responders **SHALL** provide a code exclusively from [the required binding] ValueSet,SHALL,Server,false,,,"2.3.3.11, 2.3.4.05, 2.3.5.07, 2.3.6.06, 2.3.7.14, 2.3.8.14, 2.3.9.04, 2.3.10.06, 2.3.11.10, 2.3.12.10, 2.3.13.10, 2.3.14.13, 2.3.15.07, 2.3.16.06, 2.3.17.06, 2.3.18.07, 2.3.18.08, 2.3.19.09, 2.3.20.09, 2.3.21.09, 2.3.22.09, 2.3.23.09, 2.3.24.09, 2.3.25.09, 2.3.26.09, 2.3.27.09, 2.3.28.09, 2.3.29.09, 2.3.30.09, 2.3.31.09, 2.3.32.09, 2.3.33.09, 2.3.34.09, 2.3.35.09, 2.3.36.09, 2.3.37.09, 2.3.38.09, 2.3.39.09, 2.3.40.09, 2.3.41.09, 2.3.42.09, 2.3.43.07, 2.3.44.08, 2.3.45.10, 2.3.46.07, 2.3.47.04, 2.3.48.05, 2.3.49.04, 2.3.50.02, 2.3.51.07, 2.3.52.04","crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_allergy_intolerance-us_core_v700_allergy_intolerance_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_plan-us_core_v700_care_plan_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_team-us_core_v700_care_team_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_coverage-us_core_v700_coverage_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_device-us_core_v700_device_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_goal-us_core_v700_goal_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_immunization-us_core_v700_immunization_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_dispense-us_core_v700_medication_dispense_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_sexual_orientation-us_core_v700_observation_sexual_orientation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_questionnaire_response-us_core_v700_questionnaire_response_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_location-us_core_v700_location_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_organization-us_core_v700_organization_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner-us_core_v700_practitioner_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner_role-us_core_v700_practitioner_role_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_provenance-us_core_v700_provenance_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_related_person-us_core_v700_related_person_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_specimen-us_core_v700_specimen_validation_test"
|
|
790
|
+
hl7.fhir.us.core_7.0.0,23,https://www.hl7.org/fhir/us/core/general-requirements.html#extensible-binding-for-coded-elements,[Extensible binding] (http://hl7.org/fhir/R4/terminologies.html#extensible) means that one of the codes from the specified ValueSet **SHALL** be used if an applicable concept is present.,SHALL,Server,true,,,"2.3.3.11, 2.3.4.05, 2.3.5.07, 2.3.6.06, 2.3.7.14, 2.3.8.14, 2.3.9.04, 2.3.10.06, 2.3.11.10, 2.3.12.10, 2.3.13.10, 2.3.14.13, 2.3.15.07, 2.3.16.06, 2.3.17.06, 2.3.18.07, 2.3.18.08, 2.3.19.09, 2.3.20.09, 2.3.21.09, 2.3.22.09, 2.3.23.09, 2.3.24.09, 2.3.25.09, 2.3.26.09, 2.3.27.09, 2.3.28.09, 2.3.29.09, 2.3.30.09, 2.3.31.09, 2.3.32.09, 2.3.33.09, 2.3.34.09, 2.3.35.09, 2.3.36.09, 2.3.37.09, 2.3.38.09, 2.3.39.09, 2.3.40.09, 2.3.41.09, 2.3.42.09, 2.3.43.07, 2.3.44.08, 2.3.45.10, 2.3.46.07, 2.3.47.04, 2.3.48.05, 2.3.49.04, 2.3.50.02, 2.3.51.07, 2.3.52.04","crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_allergy_intolerance-us_core_v700_allergy_intolerance_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_plan-us_core_v700_care_plan_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_team-us_core_v700_care_team_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_coverage-us_core_v700_coverage_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_device-us_core_v700_device_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_goal-us_core_v700_goal_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_immunization-us_core_v700_immunization_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_dispense-us_core_v700_medication_dispense_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_sexual_orientation-us_core_v700_observation_sexual_orientation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_questionnaire_response-us_core_v700_questionnaire_response_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_location-us_core_v700_location_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_organization-us_core_v700_organization_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner-us_core_v700_practitioner_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner_role-us_core_v700_practitioner_role_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_provenance-us_core_v700_provenance_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_related_person-us_core_v700_related_person_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_specimen-us_core_v700_specimen_validation_test"
|
|
791
|
+
hl7.fhir.us.core_7.0.0,24,https://hl7.org/fhir/us/core/STU7/general-requirements.html#extensible-binding-for-coded-elements,"[When using an [extensible Binding] (http://hl7.org/fhir/R4/terminologies.html#extensible)] If no suitable code exists in the [extensible] ValueSet, alternate code(s) may be provided.",MAY,Server,true,,,"",""
|
|
792
|
+
hl7.fhir.us.core_7.0.0,26,https://hl7.org/fhir/us/core/STU7/general-requirements.html#extensible-binding-for-coded-elements,"For `CodeableConcept` [with an [extensible binding] (http://hl7.org/fhir/R4/terminologies.html#extensible) … If only text is available and it has no conceptual overlap with the bound coded values, then just text may be used.",MAY,Server,true,,,"",""
|
|
793
|
+
hl7.fhir.us.core_7.0.0,27,https://hl7.org/fhir/us/core/STU7/general-requirements.html#extensible-binding-for-coded-elements,"When claiming conformance to ... [to a US Core profile extensible binding rule, a] US Core Responders Shall provide:
|
|
794
|
+
A code from … [the] valueset 'DataElement.code.code' if the concept exists in the valueset [for a DataElement.code that has an extensible binding]
|
|
795
|
+
Or an alternative code if the concept does not exist in the valueset [for a DataElement.code that has an extensible binding]
|
|
796
|
+
Or text in ... `[DataElement.code.text]’ if only text is available [for a DataElement.code that has an extensible binding]",SHALL,Server,true,,,"2.3.3.11, 2.3.4.05, 2.3.5.07, 2.3.6.06, 2.3.7.14, 2.3.8.14, 2.3.9.04, 2.3.10.06, 2.3.11.10, 2.3.12.10, 2.3.13.10, 2.3.14.13, 2.3.15.07, 2.3.16.06, 2.3.17.06, 2.3.18.07, 2.3.18.08, 2.3.19.09, 2.3.20.09, 2.3.21.09, 2.3.22.09, 2.3.23.09, 2.3.24.09, 2.3.25.09, 2.3.26.09, 2.3.27.09, 2.3.28.09, 2.3.29.09, 2.3.30.09, 2.3.31.09, 2.3.32.09, 2.3.33.09, 2.3.34.09, 2.3.35.09, 2.3.36.09, 2.3.37.09, 2.3.38.09, 2.3.39.09, 2.3.40.09, 2.3.41.09, 2.3.42.09, 2.3.43.07, 2.3.44.08, 2.3.45.10, 2.3.46.07, 2.3.47.04, 2.3.48.05, 2.3.49.04, 2.3.50.02, 2.3.51.07, 2.3.52.04","crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_allergy_intolerance-us_core_v700_allergy_intolerance_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_plan-us_core_v700_care_plan_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_team-us_core_v700_care_team_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_coverage-us_core_v700_coverage_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_device-us_core_v700_device_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_goal-us_core_v700_goal_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_immunization-us_core_v700_immunization_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_dispense-us_core_v700_medication_dispense_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_sexual_orientation-us_core_v700_observation_sexual_orientation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_questionnaire_response-us_core_v700_questionnaire_response_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_location-us_core_v700_location_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_organization-us_core_v700_organization_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner-us_core_v700_practitioner_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner_role-us_core_v700_practitioner_role_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_provenance-us_core_v700_provenance_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_related_person-us_core_v700_related_person_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_specimen-us_core_v700_specimen_validation_test"
|
|
797
|
+
hl7.fhir.us.core_7.0.0,29,https://hl7.org/fhir/us/core/STU7/general-requirements.html#translations,Alternate codes may be provided in addition to the standard codes defined in required or extensible ValueSets. These alternate codes are called “translations”.,MAY,Server,false,,,"",""
|
|
798
|
+
hl7.fhir.us.core_7.0.0,30,https://hl7.org/fhir/us/core/STU7/general-requirements.html#translations,[The translations] may be equivalent to or narrower in meaning than the standard concept code.,MAY,Server,false,,,"",""
|
|
799
|
+
hl7.fhir.us.core_7.0.0,33,https://hl7.org/fhir/us/core/STU7/general-requirements.html#modifier-elements,"Not all modifier elements are Mandatory or Must Support, and there is no requirement for supporting them",MAY,Server,false,,,"",""
|
|
800
|
+
hl7.fhir.us.core_7.0.0,34,https://hl7.org/fhir/us/core/STU7/general-requirements.html#modifier-elements,"Servers **MAY** communicate a system-wide profile in their CapabilityStatement to identify which additional elements, including modifier elements, they support",MAY,Server,false,,,"",""
|
|
801
|
+
hl7.fhir.us.core_7.0.0,39,https://hl7.org/fhir/us/core/STU7/general-requirements.html#missing-data,"If the source system does not have data for an element with a minimum cardinality = 0 (including elements labeled Must Support), the data element **SHALL** be omitted from the resource.",SHALL,Server,true,,,"",""
|
|
802
|
+
hl7.fhir.us.core_7.0.0,40,https://hl7.org/fhir/us/core/STU7/general-requirements.html#missing-data,"If the data element is a Mandatory element (in other words, where the minimum cardinality is > 0), it **SHALL** be present even if the source system does not have data.",SHALL,Server,true,,,"2.3.3.11, 2.3.4.05, 2.3.5.07, 2.3.6.06, 2.3.7.14, 2.3.8.14, 2.3.9.04, 2.3.10.06, 2.3.11.10, 2.3.12.10, 2.3.13.10, 2.3.14.13, 2.3.15.07, 2.3.16.06, 2.3.17.06, 2.3.18.07, 2.3.18.08, 2.3.19.09, 2.3.20.09, 2.3.21.09, 2.3.22.09, 2.3.23.09, 2.3.24.09, 2.3.25.09, 2.3.26.09, 2.3.27.09, 2.3.28.09, 2.3.29.09, 2.3.30.09, 2.3.31.09, 2.3.32.09, 2.3.33.09, 2.3.34.09, 2.3.35.09, 2.3.36.09, 2.3.37.09, 2.3.38.09, 2.3.39.09, 2.3.40.09, 2.3.41.09, 2.3.42.09, 2.3.43.07, 2.3.44.08, 2.3.45.10, 2.3.46.07, 2.3.47.04, 2.3.48.05, 2.3.49.04, 2.3.50.02, 2.3.51.07, 2.3.52.04","crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_allergy_intolerance-us_core_v700_allergy_intolerance_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_plan-us_core_v700_care_plan_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_team-us_core_v700_care_team_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_coverage-us_core_v700_coverage_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_device-us_core_v700_device_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_goal-us_core_v700_goal_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_immunization-us_core_v700_immunization_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_dispense-us_core_v700_medication_dispense_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_sexual_orientation-us_core_v700_observation_sexual_orientation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_questionnaire_response-us_core_v700_questionnaire_response_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_location-us_core_v700_location_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_organization-us_core_v700_organization_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner-us_core_v700_practitioner_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner_role-us_core_v700_practitioner_role_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_provenance-us_core_v700_provenance_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_related_person-us_core_v700_related_person_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_specimen-us_core_v700_specimen_validation_test"
|
|
803
|
+
hl7.fhir.us.core_7.0.0,41,https://hl7.org/fhir/us/core/STU7/general-requirements.html#missing-data,"For [mandatory] non-coded data elements [where data is not available], use the [DataAbsentReason Extension](http://hl7.org/fhir/R4/extension-data-absent-reason.html) in the data type ... [with] the code `unknown` - The value is expected to exist but is not known.",SHALL,Server,true,,,2.3.55,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_311_data_absent_reason
|
|
804
|
+
hl7.fhir.us.core_7.0.0,42,https://hl7.org/fhir/us/core/STU7/general-requirements.html#missing-data,"[In situations where data is not available] for [mandatory] coded data elements … [with] *example*, *preferred*, or *extensible* binding strengths (CodeableConcept or Coding datatypes) If the source system has text but no coded data, only the text element is used.",SHALL,Server,true,,,"",""
|
|
805
|
+
hl7.fhir.us.core_7.0.0,43,https://hl7.org/fhir/us/core/STU7/general-requirements.html#missing-data,"[In situations where data is not available] for [mandatory] coded data elements… [with] *example*, *preferred*, or *extensible* binding strengths (CodeableConcept or Coding datatypes):
|
|
806
|
+
For Coding datatypes, the text-only data is represented as a display element",SHALL,Server,true,,,"",""
|
|
807
|
+
hl7.fhir.us.core_7.0.0,44,https://hl7.org/fhir/us/core/STU7/general-requirements.html#missing-data,"[In situations where data is not available] for [mandatory] coded data elements… [with] *example*, *preferred*, or *extensible* binding strengths (CodeableConcept or Coding datatypes): … If there is neither text nor coded data ... [then] use the appropriate “unknown” concept code from the ValueSet if available.",SHALL,Server,true,,,"",""
|
|
808
|
+
hl7.fhir.us.core_7.0.0,45,https://hl7.org/fhir/us/core/STU7/general-requirements.html#missing-data,"[In situations where data is not available] for [mandatory] coded data elements… [with] *example*, *preferred*, or *extensible* binding strengths (CodeableConcept or Coding datatypes): … If there is neither text nor coded data ... [then] if the ValueSet does not have the appropriate “unknown” concept code, use unknown from the [DataAbsentReason Code System](http://hl7.org/fhir/R4/codesystem-data-absent-reason.html).",SHALL,Server,true,,,2.3.55,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_311_data_absent_reason
|
|
809
|
+
hl7.fhir.us.core_7.0.0,46,https://hl7.org/fhir/us/core/STU7/general-requirements.html#missing-data,[In situations where data is not available] for [mandatory] coded data elements… [with] *required* binding strength (CodeableConcept or code datatypes): use the appropriate “unknown” concept code from the ValueSet if available,SHALL,Server,true,,,"",""
|
|
810
|
+
hl7.fhir.us.core_7.0.0,47,https://hl7.org/fhir/us/core/STU7/general-requirements.html#missing-data,"[In situations where data is not available] for [mandatory] coded data elements… [with] *required* binding strength (CodeableConcept or code datatypes): If the ValueSet does not have the appropriate “unknown” concept code, you must use a concept from the ValueSet. Otherwise, the instance will not be conformant",SHALL,Server,true,,,"",""
|
|
811
|
+
hl7.fhir.us.core_7.0.0,48,https://hl7.org/fhir/us/core/STU7/general-requirements.html#missing-data,"[If the source system does not have data for a Mandatory element for a coded data element with *required* binding strength] If any of these status codes is missing [meaning it lacks an ""unknown"" or otherwise appropriate concept code from the ValueSet, a] 404 HTTP error code and an OperationOutcome **SHALL** be returned in response to a read transaction on the resource.",SHALL,Server,true,,,"",""
|
|
812
|
+
hl7.fhir.us.core_7.0.0,49,https://hl7.org/fhir/us/core/STU7/general-requirements.html#missing-data,"[If the source system does not have data for a Mandatory element for a coded data element with *required* binding strength, and the ValueSet does not have the appropriate ""unknown"" concept code, then] if returning a response to a search, the problematic resource **SHALL** be excluded from the search set",SHALL,Server,true,,,"",""
|
|
813
|
+
hl7.fhir.us.core_7.0.0,50,https://hl7.org/fhir/us/core/STU7/general-requirements.html#missing-data,"[If the source system does not have data for a Mandatory element for a coded data element with *required* binding strength, and the ValueSet does not have the appropriate ""unknown"" concept code, then] if returning a response to a search, … a *warning* OperationOutcome **SHOULD** be included indicating that other search results were found but could not be compliantly expressed and have been suppressed.",SHOULD,Server,true,,,"",""
|
|
814
|
+
hl7.fhir.us.core_7.0.0,51,https://hl7.org/fhir/us/core/STU7/general-requirements.html#fhir-restful-search-api-requirements,The [FHIR RESTful Search API](http://hl7.org/fhir/R4/http.html#search) requires that servers that support search **SHALL** support the HTTP `POST`-based search.,SHALL,Server,false,,,"2.3.3.01, 2.3.3.02, 2.3.3.03, 2.3.3.04, 2.3.3.07, 2.3.4.01, 2.3.5.01, 2.3.6.01, 2.3.7.01, 2.3.7.02, 2.3.8.01, 2.3.8.02, 2.3.9.01, 2.3.10.01, 2.3.11.01, 2.3.11.02, 2.3.11.03, 2.3.11.04, 2.3.12.01, 2.3.12.02, 2.3.12.03, 2.3.12.04, 2.3.13.01, 2.3.13.02, 2.3.13.03, 2.3.13.04, 2.3.13.07, 2.3.14.01, 2.3.14.02, 2.3.14.04, 2.3.15.01, 2.3.16.01, 2.3.17.01, 2.3.18.01, 2.3.18.04, 2.3.19.01, 2.3.19.02, 2.3.19.03, 2.3.20.01, 2.3.20.02, 2.3.20.06, 2.3.21.01, 2.3.21.02, 2.3.21.06, 2.3.22.01, 2.3.22.02, 2.3.22.06, 2.3.23.01, 2.3.23.02, 2.3.23.06, 2.3.24.01, 2.3.24.02, 2.3.24.03, 2.3.25.01, 2.3.25.02, 2.3.25.06, 2.3.26.01, 2.3.26.02, 2.3.26.06, 2.3.27.01, 2.3.27.02, 2.3.27.06, 2.3.28.01, 2.3.28.02, 2.3.28.06, 2.3.29.01, 2.3.29.02, 2.3.29.06, 2.3.30.01, 2.3.30.02, 2.3.30.06, 2.3.31.01, 2.3.31.02, 2.3.31.06, 2.3.32.01, 2.3.33.01, 2.3.33.02, 2.3.33.06, 2.3.34.01, 2.3.34.02, 2.3.34.06, 2.3.35.01, 2.3.35.02, 2.3.35.06, 2.3.36.01, 2.3.36.02, 2.3.36.03, 2.3.37.01, 2.3.37.02, 2.3.37.06, 2.3.38.01, 2.3.38.02, 2.3.38.06, 2.3.39.01, 2.3.39.02, 2.3.39.03, 2.3.40.01, 2.3.40.02, 2.3.40.06, 2.3.41.01, 2.3.41.02, 2.3.41.06, 2.3.42.01, 2.3.42.02, 2.3.42.06, 2.3.43.01, 2.3.43.03, 2.3.44.01, 2.3.44.02, 2.3.45.01, 2.3.45.02, 2.3.45.03, 2.3.45.04, 2.3.45.07, 2.3.46.02, 2.3.46.06, 2.3.47.02, 2.3.47.03, 2.3.48.03, 2.3.48.04, 2.3.49.02, 2.3.49.03, 2.3.51.03, 2.3.52.03","crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_identifier_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_birthdate_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_gender_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_allergy_intolerance-us_core_v700_allergy_intolerance_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_plan-us_core_v700_care_plan_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_team-us_core_v700_care_team_patient_status_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_coverage-us_core_v700_coverage_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_device-us_core_v700_device_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_patient_type_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_date_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_goal-us_core_v700_goal_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_immunization-us_core_v700_immunization_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_dispense-us_core_v700_medication_dispense_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_patient_intent_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_patient_intent_status_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_sexual_orientation-us_core_v700_observation_sexual_orientation_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_patient_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_questionnaire_response-us_core_v700_questionnaire_response_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_questionnaire_response-us_core_v700_questionnaire_response__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_patient_category_authored_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_location-us_core_v700_location_address_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_location-us_core_v700_location_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_organization-us_core_v700_organization_address_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_organization-us_core_v700_organization_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner-us_core_v700_practitioner_identifier_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner-us_core_v700_practitioner_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner_role-us_core_v700_practitioner_role_practitioner_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner_role-us_core_v700_practitioner_role_specialty_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_related_person-us_core_v700_related_person__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_specimen-us_core_v700_specimen__id_search_test"
|
|
815
|
+
hl7.fhir.us.core_7.0.0,52,https://hl7.org/fhir/us/core/STU7/general-requirements.html#fhir-restful-search-api-requirements,"For all the supported search interactions in this guide, servers **SHALL** also support the `GET`-based search.",SHALL,Server,false,,,"2.3.3.01, 2.3.3.02, 2.3.3.03, 2.3.3.04, 2.3.3.07, 2.3.4.01, 2.3.5.01, 2.3.6.01, 2.3.7.01, 2.3.7.02, 2.3.8.01, 2.3.8.02, 2.3.9.01, 2.3.10.01, 2.3.11.01, 2.3.11.02, 2.3.11.03, 2.3.11.04, 2.3.12.01, 2.3.12.02, 2.3.12.03, 2.3.12.04, 2.3.13.01, 2.3.13.02, 2.3.13.03, 2.3.13.04, 2.3.13.07, 2.3.14.01, 2.3.14.02, 2.3.14.04, 2.3.15.01, 2.3.16.01, 2.3.17.01, 2.3.18.01, 2.3.18.04, 2.3.19.01, 2.3.19.02, 2.3.19.03, 2.3.20.01, 2.3.20.02, 2.3.20.06, 2.3.21.01, 2.3.21.02, 2.3.21.06, 2.3.22.01, 2.3.22.02, 2.3.22.06, 2.3.23.01, 2.3.23.02, 2.3.23.06, 2.3.24.01, 2.3.24.02, 2.3.24.03, 2.3.25.01, 2.3.25.02, 2.3.25.06, 2.3.26.01, 2.3.26.02, 2.3.26.06, 2.3.27.01, 2.3.27.02, 2.3.27.06, 2.3.28.01, 2.3.28.02, 2.3.28.06, 2.3.29.01, 2.3.29.02, 2.3.29.06, 2.3.30.01, 2.3.30.02, 2.3.30.06, 2.3.31.01, 2.3.31.02, 2.3.31.06, 2.3.32.01, 2.3.33.01, 2.3.33.02, 2.3.33.06, 2.3.34.01, 2.3.34.02, 2.3.34.06, 2.3.35.01, 2.3.35.02, 2.3.35.06, 2.3.36.01, 2.3.36.02, 2.3.36.03, 2.3.37.01, 2.3.37.02, 2.3.37.06, 2.3.38.01, 2.3.38.02, 2.3.38.06, 2.3.39.01, 2.3.39.02, 2.3.39.03, 2.3.40.01, 2.3.40.02, 2.3.40.06, 2.3.41.01, 2.3.41.02, 2.3.41.06, 2.3.42.01, 2.3.42.02, 2.3.42.06, 2.3.43.01, 2.3.43.03, 2.3.44.01, 2.3.44.02, 2.3.45.01, 2.3.45.02, 2.3.45.03, 2.3.45.04, 2.3.45.07, 2.3.46.02, 2.3.46.06, 2.3.47.02, 2.3.47.03, 2.3.48.03, 2.3.48.04, 2.3.49.02, 2.3.49.03, 2.3.51.03, 2.3.52.03","crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_identifier_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_birthdate_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_gender_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_allergy_intolerance-us_core_v700_allergy_intolerance_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_plan-us_core_v700_care_plan_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_team-us_core_v700_care_team_patient_status_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_coverage-us_core_v700_coverage_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_device-us_core_v700_device_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_patient_type_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_date_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_goal-us_core_v700_goal_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_immunization-us_core_v700_immunization_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_dispense-us_core_v700_medication_dispense_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_patient_intent_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_patient_intent_status_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_sexual_orientation-us_core_v700_observation_sexual_orientation_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_patient_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_questionnaire_response-us_core_v700_questionnaire_response_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_questionnaire_response-us_core_v700_questionnaire_response__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_patient_category_authored_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_location-us_core_v700_location_address_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_location-us_core_v700_location_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_organization-us_core_v700_organization_address_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_organization-us_core_v700_organization_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner-us_core_v700_practitioner_identifier_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner-us_core_v700_practitioner_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner_role-us_core_v700_practitioner_role_practitioner_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner_role-us_core_v700_practitioner_role_specialty_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_related_person-us_core_v700_related_person__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_specimen-us_core_v700_specimen__id_search_test"
|
|
816
|
+
hl7.fhir.us.core_7.0.0,55,https://hl7.org/fhir/us/core/STU7/general-requirements.html#fhir-restful-search-api-requirements,When searching using the `token` type searchparameter [(how to search by token)](http://hl7.org/fhir/R4/search.html#token) The server **SHALL** support both [system and code values],SHALL,Server,false,,,"2.3.3.01, 2.3.3.02, 2.3.3.03, 2.3.3.04, 2.3.3.07, 2.3.4.01, 2.3.5.01, 2.3.6.01, 2.3.7.01, 2.3.7.02, 2.3.8.01, 2.3.8.02, 2.3.9.01, 2.3.10.01, 2.3.11.01, 2.3.11.02, 2.3.11.03, 2.3.11.04, 2.3.12.01, 2.3.12.02, 2.3.12.03, 2.3.12.04, 2.3.13.01, 2.3.13.02, 2.3.13.03, 2.3.13.04, 2.3.13.07, 2.3.14.01, 2.3.14.02, 2.3.14.04, 2.3.15.01, 2.3.16.01, 2.3.17.01, 2.3.18.01, 2.3.18.04, 2.3.19.01, 2.3.19.02, 2.3.19.03, 2.3.20.01, 2.3.20.02, 2.3.20.06, 2.3.21.01, 2.3.21.02, 2.3.21.06, 2.3.22.01, 2.3.22.02, 2.3.22.06, 2.3.23.01, 2.3.23.02, 2.3.23.06, 2.3.24.01, 2.3.24.02, 2.3.24.03, 2.3.25.01, 2.3.25.02, 2.3.25.06, 2.3.26.01, 2.3.26.02, 2.3.26.06, 2.3.27.01, 2.3.27.02, 2.3.27.06, 2.3.28.01, 2.3.28.02, 2.3.28.06, 2.3.29.01, 2.3.29.02, 2.3.29.06, 2.3.30.01, 2.3.30.02, 2.3.30.06, 2.3.31.01, 2.3.31.02, 2.3.31.06, 2.3.32.01, 2.3.33.01, 2.3.33.02, 2.3.33.06, 2.3.34.01, 2.3.34.02, 2.3.34.06, 2.3.35.01, 2.3.35.02, 2.3.35.06, 2.3.36.01, 2.3.36.02, 2.3.36.03, 2.3.37.01, 2.3.37.02, 2.3.37.06, 2.3.38.01, 2.3.38.02, 2.3.38.06, 2.3.39.01, 2.3.39.02, 2.3.39.03, 2.3.40.01, 2.3.40.02, 2.3.40.06, 2.3.41.01, 2.3.41.02, 2.3.41.06, 2.3.42.01, 2.3.42.02, 2.3.42.06, 2.3.43.01, 2.3.43.03, 2.3.44.01, 2.3.44.02, 2.3.45.01, 2.3.45.02, 2.3.45.03, 2.3.45.04, 2.3.45.07, 2.3.46.02, 2.3.46.06, 2.3.47.02, 2.3.47.03, 2.3.48.03, 2.3.48.04, 2.3.49.02, 2.3.49.03, 2.3.51.03, 2.3.52.03","crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_identifier_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_birthdate_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_gender_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_allergy_intolerance-us_core_v700_allergy_intolerance_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_plan-us_core_v700_care_plan_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_team-us_core_v700_care_team_patient_status_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_coverage-us_core_v700_coverage_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_device-us_core_v700_device_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_patient_type_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_date_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_goal-us_core_v700_goal_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_immunization-us_core_v700_immunization_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_dispense-us_core_v700_medication_dispense_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_patient_intent_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_patient_intent_status_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_sexual_orientation-us_core_v700_observation_sexual_orientation_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_patient_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_questionnaire_response-us_core_v700_questionnaire_response_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_questionnaire_response-us_core_v700_questionnaire_response__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_patient_category_authored_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_location-us_core_v700_location_address_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_location-us_core_v700_location_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_organization-us_core_v700_organization_address_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_organization-us_core_v700_organization_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner-us_core_v700_practitioner_identifier_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner-us_core_v700_practitioner_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner_role-us_core_v700_practitioner_role_practitioner_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner_role-us_core_v700_practitioner_role_specialty_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_related_person-us_core_v700_related_person__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_specimen-us_core_v700_specimen__id_search_test"
|
|
817
|
+
hl7.fhir.us.core_7.0.0,58,https://hl7.org/fhir/us/core/STU7/general-requirements.html#fhir-restful-search-api-requirements,When searching using the `reference` type searchparameter [(how to search by reference)](http://hl7.org/fhir/R4/search.html#reference) The server **SHALL** support both [id and Type values],SHALL,Server,false,,,"2.3.3.01, 2.3.3.02, 2.3.3.03, 2.3.3.04, 2.3.3.07, 2.3.4.01, 2.3.5.01, 2.3.6.01, 2.3.7.01, 2.3.7.02, 2.3.8.01, 2.3.8.02, 2.3.9.01, 2.3.10.01, 2.3.11.01, 2.3.11.02, 2.3.11.03, 2.3.11.04, 2.3.12.01, 2.3.12.02, 2.3.12.03, 2.3.12.04, 2.3.13.01, 2.3.13.02, 2.3.13.03, 2.3.13.04, 2.3.13.07, 2.3.14.01, 2.3.14.02, 2.3.14.04, 2.3.15.01, 2.3.16.01, 2.3.17.01, 2.3.18.01, 2.3.18.04, 2.3.19.01, 2.3.19.02, 2.3.19.03, 2.3.20.01, 2.3.20.02, 2.3.20.06, 2.3.21.01, 2.3.21.02, 2.3.21.06, 2.3.22.01, 2.3.22.02, 2.3.22.06, 2.3.23.01, 2.3.23.02, 2.3.23.06, 2.3.24.01, 2.3.24.02, 2.3.24.03, 2.3.25.01, 2.3.25.02, 2.3.25.06, 2.3.26.01, 2.3.26.02, 2.3.26.06, 2.3.27.01, 2.3.27.02, 2.3.27.06, 2.3.28.01, 2.3.28.02, 2.3.28.06, 2.3.29.01, 2.3.29.02, 2.3.29.06, 2.3.30.01, 2.3.30.02, 2.3.30.06, 2.3.31.01, 2.3.31.02, 2.3.31.06, 2.3.32.01, 2.3.33.01, 2.3.33.02, 2.3.33.06, 2.3.34.01, 2.3.34.02, 2.3.34.06, 2.3.35.01, 2.3.35.02, 2.3.35.06, 2.3.36.01, 2.3.36.02, 2.3.36.03, 2.3.37.01, 2.3.37.02, 2.3.37.06, 2.3.38.01, 2.3.38.02, 2.3.38.06, 2.3.39.01, 2.3.39.02, 2.3.39.03, 2.3.40.01, 2.3.40.02, 2.3.40.06, 2.3.41.01, 2.3.41.02, 2.3.41.06, 2.3.42.01, 2.3.42.02, 2.3.42.06, 2.3.43.01, 2.3.43.03, 2.3.44.01, 2.3.44.02, 2.3.45.01, 2.3.45.02, 2.3.45.03, 2.3.45.04, 2.3.45.07, 2.3.46.02, 2.3.46.06, 2.3.47.02, 2.3.47.03, 2.3.48.03, 2.3.48.04, 2.3.49.02, 2.3.49.03, 2.3.51.03, 2.3.52.03","crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_identifier_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_birthdate_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_gender_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_allergy_intolerance-us_core_v700_allergy_intolerance_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_plan-us_core_v700_care_plan_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_team-us_core_v700_care_team_patient_status_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_coverage-us_core_v700_coverage_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_device-us_core_v700_device_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_patient_type_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_date_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_goal-us_core_v700_goal_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_immunization-us_core_v700_immunization_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_dispense-us_core_v700_medication_dispense_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_patient_intent_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_patient_intent_status_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_sexual_orientation-us_core_v700_observation_sexual_orientation_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_patient_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_questionnaire_response-us_core_v700_questionnaire_response_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_questionnaire_response-us_core_v700_questionnaire_response__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_patient_category_authored_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_location-us_core_v700_location_address_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_location-us_core_v700_location_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_organization-us_core_v700_organization_address_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_organization-us_core_v700_organization_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner-us_core_v700_practitioner_identifier_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner-us_core_v700_practitioner_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner_role-us_core_v700_practitioner_role_practitioner_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner_role-us_core_v700_practitioner_role_specialty_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_related_person-us_core_v700_related_person__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_specimen-us_core_v700_specimen__id_search_test"
|
|
818
|
+
hl7.fhir.us.core_7.0.0,61,https://hl7.org/fhir/us/core/STU7/general-requirements.html#fhir-restful-search-api-requirements,When searching using the `date` type searchparameter [(how to search by date)](http://hl7.org/fhir/R4/search.html#date) The server **SHALL** support values precise to the day for elements of datatype `date`,SHALL,Server,false,,,"2.3.3.01, 2.3.3.02, 2.3.3.03, 2.3.3.04, 2.3.3.07, 2.3.4.01, 2.3.5.01, 2.3.6.01, 2.3.7.01, 2.3.7.02, 2.3.8.01, 2.3.8.02, 2.3.9.01, 2.3.10.01, 2.3.11.01, 2.3.11.02, 2.3.11.03, 2.3.11.04, 2.3.12.01, 2.3.12.02, 2.3.12.03, 2.3.12.04, 2.3.13.01, 2.3.13.02, 2.3.13.03, 2.3.13.04, 2.3.13.07, 2.3.14.01, 2.3.14.02, 2.3.14.04, 2.3.15.01, 2.3.16.01, 2.3.17.01, 2.3.18.01, 2.3.18.04, 2.3.19.01, 2.3.19.02, 2.3.19.03, 2.3.20.01, 2.3.20.02, 2.3.20.06, 2.3.21.01, 2.3.21.02, 2.3.21.06, 2.3.22.01, 2.3.22.02, 2.3.22.06, 2.3.23.01, 2.3.23.02, 2.3.23.06, 2.3.24.01, 2.3.24.02, 2.3.24.03, 2.3.25.01, 2.3.25.02, 2.3.25.06, 2.3.26.01, 2.3.26.02, 2.3.26.06, 2.3.27.01, 2.3.27.02, 2.3.27.06, 2.3.28.01, 2.3.28.02, 2.3.28.06, 2.3.29.01, 2.3.29.02, 2.3.29.06, 2.3.30.01, 2.3.30.02, 2.3.30.06, 2.3.31.01, 2.3.31.02, 2.3.31.06, 2.3.32.01, 2.3.33.01, 2.3.33.02, 2.3.33.06, 2.3.34.01, 2.3.34.02, 2.3.34.06, 2.3.35.01, 2.3.35.02, 2.3.35.06, 2.3.36.01, 2.3.36.02, 2.3.36.03, 2.3.37.01, 2.3.37.02, 2.3.37.06, 2.3.38.01, 2.3.38.02, 2.3.38.06, 2.3.39.01, 2.3.39.02, 2.3.39.03, 2.3.40.01, 2.3.40.02, 2.3.40.06, 2.3.41.01, 2.3.41.02, 2.3.41.06, 2.3.42.01, 2.3.42.02, 2.3.42.06, 2.3.43.01, 2.3.43.03, 2.3.44.01, 2.3.44.02, 2.3.45.01, 2.3.45.02, 2.3.45.03, 2.3.45.04, 2.3.45.07, 2.3.46.02, 2.3.46.06, 2.3.47.02, 2.3.47.03, 2.3.48.03, 2.3.48.04, 2.3.49.02, 2.3.49.03, 2.3.51.03, 2.3.52.03","crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_identifier_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_birthdate_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_gender_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_allergy_intolerance-us_core_v700_allergy_intolerance_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_plan-us_core_v700_care_plan_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_team-us_core_v700_care_team_patient_status_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_coverage-us_core_v700_coverage_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_device-us_core_v700_device_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_patient_type_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_date_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_goal-us_core_v700_goal_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_immunization-us_core_v700_immunization_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_dispense-us_core_v700_medication_dispense_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_patient_intent_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_patient_intent_status_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_sexual_orientation-us_core_v700_observation_sexual_orientation_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_patient_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_questionnaire_response-us_core_v700_questionnaire_response_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_questionnaire_response-us_core_v700_questionnaire_response__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_patient_category_authored_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_location-us_core_v700_location_address_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_location-us_core_v700_location_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_organization-us_core_v700_organization_address_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_organization-us_core_v700_organization_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner-us_core_v700_practitioner_identifier_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner-us_core_v700_practitioner_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner_role-us_core_v700_practitioner_role_practitioner_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner_role-us_core_v700_practitioner_role_specialty_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_related_person-us_core_v700_related_person__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_specimen-us_core_v700_specimen__id_search_test"
|
|
819
|
+
hl7.fhir.us.core_7.0.0,62,https://hl7.org/fhir/us/core/STU7/general-requirements.html#fhir-restful-search-api-requirements,When searching using the `date` type searchparameter [(how to search by date)](http://hl7.org/fhir/R4/search.html#date) The server **SHALL** support values precise … to the second + time offset for elements of `datatype` dateTime,SHALL,Server,false,,,"2.3.3.01, 2.3.3.02, 2.3.3.03, 2.3.3.04, 2.3.3.07, 2.3.4.01, 2.3.5.01, 2.3.6.01, 2.3.7.01, 2.3.7.02, 2.3.8.01, 2.3.8.02, 2.3.9.01, 2.3.10.01, 2.3.11.01, 2.3.11.02, 2.3.11.03, 2.3.11.04, 2.3.12.01, 2.3.12.02, 2.3.12.03, 2.3.12.04, 2.3.13.01, 2.3.13.02, 2.3.13.03, 2.3.13.04, 2.3.13.07, 2.3.14.01, 2.3.14.02, 2.3.14.04, 2.3.15.01, 2.3.16.01, 2.3.17.01, 2.3.18.01, 2.3.18.04, 2.3.19.01, 2.3.19.02, 2.3.19.03, 2.3.20.01, 2.3.20.02, 2.3.20.06, 2.3.21.01, 2.3.21.02, 2.3.21.06, 2.3.22.01, 2.3.22.02, 2.3.22.06, 2.3.23.01, 2.3.23.02, 2.3.23.06, 2.3.24.01, 2.3.24.02, 2.3.24.03, 2.3.25.01, 2.3.25.02, 2.3.25.06, 2.3.26.01, 2.3.26.02, 2.3.26.06, 2.3.27.01, 2.3.27.02, 2.3.27.06, 2.3.28.01, 2.3.28.02, 2.3.28.06, 2.3.29.01, 2.3.29.02, 2.3.29.06, 2.3.30.01, 2.3.30.02, 2.3.30.06, 2.3.31.01, 2.3.31.02, 2.3.31.06, 2.3.32.01, 2.3.33.01, 2.3.33.02, 2.3.33.06, 2.3.34.01, 2.3.34.02, 2.3.34.06, 2.3.35.01, 2.3.35.02, 2.3.35.06, 2.3.36.01, 2.3.36.02, 2.3.36.03, 2.3.37.01, 2.3.37.02, 2.3.37.06, 2.3.38.01, 2.3.38.02, 2.3.38.06, 2.3.39.01, 2.3.39.02, 2.3.39.03, 2.3.40.01, 2.3.40.02, 2.3.40.06, 2.3.41.01, 2.3.41.02, 2.3.41.06, 2.3.42.01, 2.3.42.02, 2.3.42.06, 2.3.43.01, 2.3.43.03, 2.3.44.01, 2.3.44.02, 2.3.45.01, 2.3.45.02, 2.3.45.03, 2.3.45.04, 2.3.45.07, 2.3.46.02, 2.3.46.06, 2.3.47.02, 2.3.47.03, 2.3.48.03, 2.3.48.04, 2.3.49.02, 2.3.49.03, 2.3.51.03, 2.3.52.03","crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_identifier_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_birthdate_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_gender_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_allergy_intolerance-us_core_v700_allergy_intolerance_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_plan-us_core_v700_care_plan_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_team-us_core_v700_care_team_patient_status_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_coverage-us_core_v700_coverage_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_device-us_core_v700_device_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_patient_type_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_date_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_goal-us_core_v700_goal_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_immunization-us_core_v700_immunization_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_dispense-us_core_v700_medication_dispense_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_patient_intent_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_patient_intent_status_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_sexual_orientation-us_core_v700_observation_sexual_orientation_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_patient_category_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_patient_date_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_questionnaire_response-us_core_v700_questionnaire_response_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_questionnaire_response-us_core_v700_questionnaire_response__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_patient_code_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_patient_category_authored_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_patient_category_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_location-us_core_v700_location_address_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_location-us_core_v700_location_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_organization-us_core_v700_organization_address_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_organization-us_core_v700_organization_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner-us_core_v700_practitioner_identifier_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner-us_core_v700_practitioner_name_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner_role-us_core_v700_practitioner_role_practitioner_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner_role-us_core_v700_practitioner_role_specialty_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_related_person-us_core_v700_related_person__id_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_specimen-us_core_v700_specimen__id_search_test"
|
|
820
|
+
hl7.fhir.us.core_7.0.0,63,https://hl7.org/fhir/us/core/STU7/general-requirements.html#search-for-servers-requiring-status,Servers are strongly encouraged to support a query for resources without requiring a status parameter.,SHOULD,Server,false,,,"",""
|
|
821
|
+
hl7.fhir.us.core_7.0.0,64,https://hl7.org/fhir/us/core/STU7/general-requirements.html#search-for-servers-requiring-status,"If business requirements prohibit [querying a resource without a status parameter], they **SHALL** follow the guidelines here.",SHALL,Server,true,,,"",""
|
|
822
|
+
hl7.fhir.us.core_7.0.0,65,https://hl7.org/fhir/us/core/STU7/general-requirements.html#search-for-servers-requiring-status,"For searches where the client does not supply a status parameter, an implementation’s business rules may override the FHIR RESTful search expectations and require a status parameter to be provided",MAY,Server,false,,,"",""
|
|
823
|
+
hl7.fhir.us.core_7.0.0,66,https://hl7.org/fhir/us/core/STU7/general-requirements.html#search-for-servers-requiring-status,"For searches where the client does not supply a status parameter, … systems [that require a status parameter to be provided] are allowed to reject such requests as follows:
|
|
824
|
+
|
|
825
|
+
**SHALL** return an HTTP 400 status",SHALL,Server,false,,,"",""
|
|
826
|
+
hl7.fhir.us.core_7.0.0,67,https://hl7.org/fhir/us/core/STU7/general-requirements.html#search-for-servers-requiring-status,"For searches where the client does not supply a status parameter, … systems [that require a status parameter to be provided] are allowed to reject such requests as follows:
|
|
827
|
+
|
|
828
|
+
**SHALL** return an [OperationOutcome](http://hl7.org/fhir/R4/operationoutcome.html) specifying that status(es) must be present.",SHALL,Server,false,,,"",""
|
|
829
|
+
hl7.fhir.us.core_7.0.0,68,https://hl7.org/fhir/us/core/STU7/general-requirements.html#search-for-servers-requiring-status,"For searches where the client does not supply a status parameter, … systems [that require a status parameter to be provided] are allowed to reject such requests as follows:
|
|
830
|
+
|
|
831
|
+
**SHALL** support search with status if status required",SHALL,Server,false,,,"",""
|
|
832
|
+
hl7.fhir.us.core_7.0.0,69,https://hl7.org/fhir/us/core/STU7/general-requirements.html#search-for-servers-requiring-status,"[For systems that require a status parameter to be provided, they] **SHALL** NOT restrict search results ( i.e., apply ‘hidden’ filters) when a client includes status parameters in the query.",SHALL NOT,Server,false,,,"",""
|
|
833
|
+
hl7.fhir.us.core_7.0.0,70,https://hl7.org/fhir/us/core/STU7/general-requirements.html#search-for-servers-requiring-status,"[For systems that require a status parameter to be provided,] if a system doesn’t support a specific status code value that is queried, it **SHOULD** return an HTTP 200 status with a search bundle.",SHOULD,Server,true,,,"",""
|
|
834
|
+
hl7.fhir.us.core_7.0.0,71,https://hl7.org/fhir/us/core/STU7/general-requirements.html#search-for-servers-requiring-status,"[For systems that require a status parameter to be provided,] if a system doesn’t support a specific status code value that is queried [and returns a search bundle],... [t]he search bundle **SHOULD** contain resources matching the search criteria",SHOULD,Server,true,,,"",""
|
|
835
|
+
hl7.fhir.us.core_7.0.0,72,https://hl7.org/fhir/us/core/STU7/general-requirements.html#search-for-servers-requiring-status,"[For systems that require a status parameter to be provided,] if a system doesn’t support a specific status code value that is queried [and returns a search bundle],... [t]he search bundle **SHOULD** contain ... an OperationOutcome warning the client which status code value is not supported.",SHOULD,Server,true,,,"",""
|
|
836
|
+
hl7.fhir.us.core_7.0.0,73,https://hl7.org/fhir/us/core/STU7/general-requirements.html#search-for-servers-requiring-status,"For searches where the client does not supply a status parameter, … systems [that require a status parameter to be provided] are allowed to reject such requests as follows:...
|
|
837
|
+
|
|
838
|
+
**SHALL** document this behavior in its CapabilityStatement for the “search-type” interaction in `CapabilityStatement.rest.resource.interaction.documentation.`",SHALL,Server,false,,,"",""
|
|
839
|
+
hl7.fhir.us.core_7.0.0,74,https://hl7.org/fhir/us/core/STU7/must-support.html#must-support-elements,"When an element is Mandatory, the data is expected always to be present.",SHALL,Server,false,,,"2.3.3.11, 2.3.4.05, 2.3.5.07, 2.3.6.06, 2.3.7.14, 2.3.8.14, 2.3.9.04, 2.3.10.06, 2.3.11.10, 2.3.12.10, 2.3.13.10, 2.3.14.13, 2.3.15.07, 2.3.16.06, 2.3.17.06, 2.3.18.07, 2.3.18.08, 2.3.19.09, 2.3.20.09, 2.3.21.09, 2.3.22.09, 2.3.23.09, 2.3.24.09, 2.3.25.09, 2.3.26.09, 2.3.27.09, 2.3.28.09, 2.3.29.09, 2.3.30.09, 2.3.31.09, 2.3.32.09, 2.3.33.09, 2.3.34.09, 2.3.35.09, 2.3.36.09, 2.3.37.09, 2.3.38.09, 2.3.39.09, 2.3.40.09, 2.3.41.09, 2.3.42.09, 2.3.43.07, 2.3.44.08, 2.3.45.10, 2.3.46.07, 2.3.47.04, 2.3.48.05, 2.3.49.04, 2.3.50.02, 2.3.51.07, 2.3.52.04","crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_allergy_intolerance-us_core_v700_allergy_intolerance_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_plan-us_core_v700_care_plan_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_team-us_core_v700_care_team_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_coverage-us_core_v700_coverage_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_device-us_core_v700_device_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_goal-us_core_v700_goal_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_immunization-us_core_v700_immunization_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_dispense-us_core_v700_medication_dispense_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_sexual_orientation-us_core_v700_observation_sexual_orientation_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_questionnaire_response-us_core_v700_questionnaire_response_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_location-us_core_v700_location_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_organization-us_core_v700_organization_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner-us_core_v700_practitioner_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner_role-us_core_v700_practitioner_role_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_provenance-us_core_v700_provenance_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_related_person-us_core_v700_related_person_validation_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_specimen-us_core_v700_specimen_validation_test"
|
|
840
|
+
hl7.fhir.us.core_7.0.0,75,https://hl7.org/fhir/us/core/STU7/must-support.html#must-support-elements,"For querying and reading US Core Profiles, Must Support on any profile data element **SHALL** be interpreted as follows…:
|
|
841
|
+
|
|
842
|
+
US Core Responders **SHALL** be capable of populating all data elements as part of the query results specified by the [US Core Server Capability Statement](https://hl7.org/fhir/us/core/STU7/CapabilityStatement-us-core-server.html).",SHALL,Server,true,,,"2.3.3.12, 2.3.4.06, 2.3.5.08, 2.3.6.07, 2.3.7.15, 2.3.8.15, 2.3.9.05, 2.3.10.07, 2.3.11.11, 2.3.12.11, 2.3.13.11, 2.3.14.14, 2.3.15.08, 2.3.16.07, 2.3.17.07, 2.3.18.09, 2.3.19.10, 2.3.20.10, 2.3.21.10, 2.3.22.10, 2.3.23.10, 2.3.24.10, 2.3.25.10, 2.3.26.10, 2.3.27.10, 2.3.28.10, 2.3.29.10, 2.3.30.10, 2.3.31.10, 2.3.32.10, 2.3.33.10, 2.3.34.10, 2.3.35.10, 2.3.36.10, 2.3.37.10, 2.3.38.10, 2.3.39.10, 2.3.40.10, 2.3.41.10, 2.3.42.10, 2.3.43.08, 2.3.44.09, 2.3.45.11, 2.3.46.08, 2.3.47.05, 2.3.48.06, 2.3.49.05, 2.3.50.03, 2.3.51.08, 2.3.52.05","crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_allergy_intolerance-us_core_v700_allergy_intolerance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_plan-us_core_v700_care_plan_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_team-us_core_v700_care_team_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_coverage-us_core_v700_coverage_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_device-us_core_v700_device_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_goal-us_core_v700_goal_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_immunization-us_core_v700_immunization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_dispense-us_core_v700_medication_dispense_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_sexual_orientation-us_core_v700_observation_sexual_orientation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_questionnaire_response-us_core_v700_questionnaire_response_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_location-us_core_v700_location_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_organization-us_core_v700_organization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner-us_core_v700_practitioner_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner_role-us_core_v700_practitioner_role_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_provenance-us_core_v700_provenance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_related_person-us_core_v700_related_person_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_specimen-us_core_v700_specimen_must_support_test"
|
|
843
|
+
hl7.fhir.us.core_7.0.0,78,https://hl7.org/fhir/us/core/STU7/must-support.html#must-support-elements,"For querying and reading US Core Profiles, Must Support on any profile data element **SHALL** be interpreted as follows…:
|
|
844
|
+
|
|
845
|
+
When information on a particular data element is not present, and the reason for absence is unknown, US Core Responders **SHALL NOT** include the data elements in the resource instance returned as part of the query results.",SHALL NOT,Server,true,,,"",""
|
|
846
|
+
hl7.fhir.us.core_7.0.0,80,https://hl7.org/fhir/us/core/STU7/must-support.html#must-support-elements,"For querying and reading US Core Profiles, Must Support on any profile data element **SHALL** be interpreted as follows…:
|
|
847
|
+
|
|
848
|
+
In cases where information on a specific data element is missing, and the US Core Responder knows the precise reason for the absence of data (other than suppressed data), US Core Responders **SHOULD** send the reason for the missing information.",SHOULD,Server,true,,,"",""
|
|
849
|
+
hl7.fhir.us.core_7.0.0,81,https://hl7.org/fhir/us/core/STU7/must-support.html#must-support-elements,"[When sending reason for missing information, follow] the same methdology outlined in the [Missing Data](https://hl7.org/fhir/us/core/STU7/general-requirements.html#missing-data) section but using the appropriate reason code instead of unknown [reason code].",SHOULD,Server,true,,,"",""
|
|
850
|
+
hl7.fhir.us.core_7.0.0,84,https://hl7.org/fhir/us/core/STU7/must-support.html#additional-uscdi-requirements,Implementors [US Core Responders] seeking ONC certification [in the ONC IT Health Certification program] **SHALL** interpret Additional USCDI Requirements as Must Support elements as documented above;,SHALL,Server,true,Not Tested,This requirement is specific to certification testing and is not relevant to the IG tests,NA,NA
|
|
851
|
+
hl7.fhir.us.core_7.0.0,86,https://hl7.org/fhir/us/core/STU7/must-support.html#additional-uscdi-requirements,Implementors [US Core Responders] [not] seeking ONC certification [in the ONC IT Health Certification program] **SHALL** interpret Additional USCDI Requirements as … optional.,SHALL,Server,true,,,"",""
|
|
852
|
+
hl7.fhir.us.core_7.0.0,87,https://hl7.org/fhir/us/core/STU7/must-support.html#defined-pattern-elements,"If an element is marked as Must Support and defined by a pattern [as described by [ElementDefinition.pattern](http://hl7.org/fhir/R4/elementdefinition-definitions.html#ElementDefinition.pattern_x_)], then the pattern defines the elements and element values that the server **SHALL** be capable of providing.",SHALL,Server,false,,,"2.3.3.12, 2.3.4.06, 2.3.5.08, 2.3.6.07, 2.3.7.15, 2.3.8.15, 2.3.9.05, 2.3.10.07, 2.3.11.11, 2.3.12.11, 2.3.13.11, 2.3.14.14, 2.3.15.08, 2.3.16.07, 2.3.17.07, 2.3.18.09, 2.3.19.10, 2.3.20.10, 2.3.21.10, 2.3.22.10, 2.3.23.10, 2.3.24.10, 2.3.25.10, 2.3.26.10, 2.3.27.10, 2.3.28.10, 2.3.29.10, 2.3.30.10, 2.3.31.10, 2.3.32.10, 2.3.33.10, 2.3.34.10, 2.3.35.10, 2.3.36.10, 2.3.37.10, 2.3.38.10, 2.3.39.10, 2.3.40.10, 2.3.41.10, 2.3.42.10, 2.3.43.08, 2.3.44.09, 2.3.45.11, 2.3.46.08, 2.3.47.05, 2.3.48.06, 2.3.49.05, 2.3.50.03, 2.3.51.08, 2.3.52.05","crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_allergy_intolerance-us_core_v700_allergy_intolerance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_plan-us_core_v700_care_plan_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_team-us_core_v700_care_team_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_coverage-us_core_v700_coverage_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_device-us_core_v700_device_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_goal-us_core_v700_goal_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_immunization-us_core_v700_immunization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_dispense-us_core_v700_medication_dispense_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_sexual_orientation-us_core_v700_observation_sexual_orientation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_questionnaire_response-us_core_v700_questionnaire_response_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_location-us_core_v700_location_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_organization-us_core_v700_organization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner-us_core_v700_practitioner_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner_role-us_core_v700_practitioner_role_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_provenance-us_core_v700_provenance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_related_person-us_core_v700_related_person_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_specimen-us_core_v700_specimen_must_support_test"
|
|
853
|
+
hl7.fhir.us.core_7.0.0,90,https://hl7.org/fhir/us/core/STU7/must-support.html#must-support---primitive-element,"Primitive elements are single elements with a primitive value. If they are marked as Must Support, then the server **SHALL** be capable of providing the element value to meet the Must Support requirement.",SHALL,Server,false,,,"2.3.3.12, 2.3.4.06, 2.3.5.08, 2.3.6.07, 2.3.7.15, 2.3.8.15, 2.3.9.05, 2.3.10.07, 2.3.11.11, 2.3.12.11, 2.3.13.11, 2.3.14.14, 2.3.15.08, 2.3.16.07, 2.3.17.07, 2.3.18.09, 2.3.19.10, 2.3.20.10, 2.3.21.10, 2.3.22.10, 2.3.23.10, 2.3.24.10, 2.3.25.10, 2.3.26.10, 2.3.27.10, 2.3.28.10, 2.3.29.10, 2.3.30.10, 2.3.31.10, 2.3.32.10, 2.3.33.10, 2.3.34.10, 2.3.35.10, 2.3.36.10, 2.3.37.10, 2.3.38.10, 2.3.39.10, 2.3.40.10, 2.3.41.10, 2.3.42.10, 2.3.43.08, 2.3.44.09, 2.3.45.11, 2.3.46.08, 2.3.47.05, 2.3.48.06, 2.3.49.05, 2.3.50.03, 2.3.51.08, 2.3.52.05","crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_allergy_intolerance-us_core_v700_allergy_intolerance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_plan-us_core_v700_care_plan_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_team-us_core_v700_care_team_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_coverage-us_core_v700_coverage_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_device-us_core_v700_device_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_goal-us_core_v700_goal_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_immunization-us_core_v700_immunization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_dispense-us_core_v700_medication_dispense_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_sexual_orientation-us_core_v700_observation_sexual_orientation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_questionnaire_response-us_core_v700_questionnaire_response_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_location-us_core_v700_location_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_organization-us_core_v700_organization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner-us_core_v700_practitioner_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner_role-us_core_v700_practitioner_role_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_provenance-us_core_v700_provenance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_related_person-us_core_v700_related_person_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_specimen-us_core_v700_specimen_must_support_test"
|
|
854
|
+
hl7.fhir.us.core_7.0.0,91,https://hl7.org/fhir/us/core/STU7/must-support.html#must-support---primitive-element,[W]hen claiming conformance [to a profile with a must support primitive element] … US Core responders SHALL be capable of providing the value [of the primitive element],SHALL,Server,false,,,"2.3.3.12, 2.3.4.06, 2.3.5.08, 2.3.6.07, 2.3.7.15, 2.3.8.15, 2.3.9.05, 2.3.10.07, 2.3.11.11, 2.3.12.11, 2.3.13.11, 2.3.14.14, 2.3.15.08, 2.3.16.07, 2.3.17.07, 2.3.18.09, 2.3.19.10, 2.3.20.10, 2.3.21.10, 2.3.22.10, 2.3.23.10, 2.3.24.10, 2.3.25.10, 2.3.26.10, 2.3.27.10, 2.3.28.10, 2.3.29.10, 2.3.30.10, 2.3.31.10, 2.3.32.10, 2.3.33.10, 2.3.34.10, 2.3.35.10, 2.3.36.10, 2.3.37.10, 2.3.38.10, 2.3.39.10, 2.3.40.10, 2.3.41.10, 2.3.42.10, 2.3.43.08, 2.3.44.09, 2.3.45.11, 2.3.46.08, 2.3.47.05, 2.3.48.06, 2.3.49.05, 2.3.50.03, 2.3.51.08, 2.3.52.05","crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_allergy_intolerance-us_core_v700_allergy_intolerance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_plan-us_core_v700_care_plan_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_team-us_core_v700_care_team_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_coverage-us_core_v700_coverage_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_device-us_core_v700_device_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_goal-us_core_v700_goal_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_immunization-us_core_v700_immunization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_dispense-us_core_v700_medication_dispense_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_sexual_orientation-us_core_v700_observation_sexual_orientation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_questionnaire_response-us_core_v700_questionnaire_response_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_location-us_core_v700_location_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_organization-us_core_v700_organization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner-us_core_v700_practitioner_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner_role-us_core_v700_practitioner_role_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_provenance-us_core_v700_provenance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_related_person-us_core_v700_related_person_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_specimen-us_core_v700_specimen_must_support_test"
|
|
855
|
+
hl7.fhir.us.core_7.0.0,93,https://hl7.org/fhir/us/core/STU7/must-support.html#must-support---complex-elements,"For any complex element marked as Must Support, the server **SHALL** be capable of providing at least one of the sub-element values.",SHALL,Server,false,,,"2.3.3.12, 2.3.4.06, 2.3.5.08, 2.3.6.07, 2.3.7.15, 2.3.8.15, 2.3.9.05, 2.3.10.07, 2.3.11.11, 2.3.12.11, 2.3.13.11, 2.3.14.14, 2.3.15.08, 2.3.16.07, 2.3.17.07, 2.3.18.09, 2.3.19.10, 2.3.20.10, 2.3.21.10, 2.3.22.10, 2.3.23.10, 2.3.24.10, 2.3.25.10, 2.3.26.10, 2.3.27.10, 2.3.28.10, 2.3.29.10, 2.3.30.10, 2.3.31.10, 2.3.32.10, 2.3.33.10, 2.3.34.10, 2.3.35.10, 2.3.36.10, 2.3.37.10, 2.3.38.10, 2.3.39.10, 2.3.40.10, 2.3.41.10, 2.3.42.10, 2.3.43.08, 2.3.44.09, 2.3.45.11, 2.3.46.08, 2.3.47.05, 2.3.48.06, 2.3.49.05, 2.3.50.03, 2.3.51.08, 2.3.52.05","crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_allergy_intolerance-us_core_v700_allergy_intolerance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_plan-us_core_v700_care_plan_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_team-us_core_v700_care_team_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_coverage-us_core_v700_coverage_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_device-us_core_v700_device_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_goal-us_core_v700_goal_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_immunization-us_core_v700_immunization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_dispense-us_core_v700_medication_dispense_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_sexual_orientation-us_core_v700_observation_sexual_orientation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_questionnaire_response-us_core_v700_questionnaire_response_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_location-us_core_v700_location_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_organization-us_core_v700_organization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner-us_core_v700_practitioner_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner_role-us_core_v700_practitioner_role_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_provenance-us_core_v700_provenance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_related_person-us_core_v700_related_person_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_specimen-us_core_v700_specimen_must_support_test"
|
|
856
|
+
hl7.fhir.us.core_7.0.0,94,https://hl7.org/fhir/us/core/STU7/must-support.html#must-support---complex-elements,"If any sub-element is marked as Must Support [for a complex element], it must also meet the Must Support requirements and satisfy the Must Support requirements for the parent element.",SHALL,Server,false,,,"2.3.3.12, 2.3.4.06, 2.3.5.08, 2.3.6.07, 2.3.7.15, 2.3.8.15, 2.3.9.05, 2.3.10.07, 2.3.11.11, 2.3.12.11, 2.3.13.11, 2.3.14.14, 2.3.15.08, 2.3.16.07, 2.3.17.07, 2.3.18.09, 2.3.19.10, 2.3.20.10, 2.3.21.10, 2.3.22.10, 2.3.23.10, 2.3.24.10, 2.3.25.10, 2.3.26.10, 2.3.27.10, 2.3.28.10, 2.3.29.10, 2.3.30.10, 2.3.31.10, 2.3.32.10, 2.3.33.10, 2.3.34.10, 2.3.35.10, 2.3.36.10, 2.3.37.10, 2.3.38.10, 2.3.39.10, 2.3.40.10, 2.3.41.10, 2.3.42.10, 2.3.43.08, 2.3.44.09, 2.3.45.11, 2.3.46.08, 2.3.47.05, 2.3.48.06, 2.3.49.05, 2.3.50.03, 2.3.51.08, 2.3.52.05","crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_allergy_intolerance-us_core_v700_allergy_intolerance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_plan-us_core_v700_care_plan_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_team-us_core_v700_care_team_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_coverage-us_core_v700_coverage_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_device-us_core_v700_device_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_goal-us_core_v700_goal_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_immunization-us_core_v700_immunization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_dispense-us_core_v700_medication_dispense_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_sexual_orientation-us_core_v700_observation_sexual_orientation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_questionnaire_response-us_core_v700_questionnaire_response_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_location-us_core_v700_location_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_organization-us_core_v700_organization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner-us_core_v700_practitioner_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner_role-us_core_v700_practitioner_role_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_provenance-us_core_v700_provenance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_related_person-us_core_v700_related_person_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_specimen-us_core_v700_specimen_must_support_test"
|
|
857
|
+
hl7.fhir.us.core_7.0.0,95,https://hl7.org/fhir/us/core/STU7/must-support.html#must-support---complex-elements,"[I]f any sub-element is marked as Must Support [for a complex element] and the parent element is not, there is no expectation that you must support the parent.",MAY,Server,false,,,"",""
|
|
858
|
+
hl7.fhir.us.core_7.0.0,96,https://hl7.org/fhir/us/core/STU7/must-support.html#must-support---complex-elements,"[I]f any sub-element is marked as Must Support [for a complex element] and the parent element is not… [and] the parent element is represented in the structure, you must support the sub-element (s) marked as Must Support.",SHALL,Server,false,,,"",""
|
|
859
|
+
hl7.fhir.us.core_7.0.0,97,https://hl7.org/fhir/us/core/STU7/must-support.html#must-support---complex-elements,When claiming conformance [to a must support complex element with no must support sub-elements] … US Core Responders SHALL be capable of providing a value in [the] sub-element,SHALL,Server,false,,,"2.3.3.12, 2.3.4.06, 2.3.5.08, 2.3.6.07, 2.3.7.15, 2.3.8.15, 2.3.9.05, 2.3.10.07, 2.3.11.11, 2.3.12.11, 2.3.13.11, 2.3.14.14, 2.3.15.08, 2.3.16.07, 2.3.17.07, 2.3.18.09, 2.3.19.10, 2.3.20.10, 2.3.21.10, 2.3.22.10, 2.3.23.10, 2.3.24.10, 2.3.25.10, 2.3.26.10, 2.3.27.10, 2.3.28.10, 2.3.29.10, 2.3.30.10, 2.3.31.10, 2.3.32.10, 2.3.33.10, 2.3.34.10, 2.3.35.10, 2.3.36.10, 2.3.37.10, 2.3.38.10, 2.3.39.10, 2.3.40.10, 2.3.41.10, 2.3.42.10, 2.3.43.08, 2.3.44.09, 2.3.45.11, 2.3.46.08, 2.3.47.05, 2.3.48.06, 2.3.49.05, 2.3.50.03, 2.3.51.08, 2.3.52.05","crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_allergy_intolerance-us_core_v700_allergy_intolerance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_plan-us_core_v700_care_plan_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_team-us_core_v700_care_team_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_coverage-us_core_v700_coverage_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_device-us_core_v700_device_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_goal-us_core_v700_goal_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_immunization-us_core_v700_immunization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_dispense-us_core_v700_medication_dispense_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_sexual_orientation-us_core_v700_observation_sexual_orientation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_questionnaire_response-us_core_v700_questionnaire_response_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_location-us_core_v700_location_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_organization-us_core_v700_organization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner-us_core_v700_practitioner_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner_role-us_core_v700_practitioner_role_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_provenance-us_core_v700_provenance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_related_person-us_core_v700_related_person_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_specimen-us_core_v700_specimen_must_support_test"
|
|
860
|
+
hl7.fhir.us.core_7.0.0,99,https://hl7.org/fhir/us/core/STU7/must-support.html#must-support---complex-elements,When claiming conformance [to a must support complex element with one or more must support sub-elements] … US Core Responders SHALL be capable of providing a value in [each must support sub-element],SHALL,Server,false,,,"2.3.3.12, 2.3.4.06, 2.3.5.08, 2.3.6.07, 2.3.7.15, 2.3.8.15, 2.3.9.05, 2.3.10.07, 2.3.11.11, 2.3.12.11, 2.3.13.11, 2.3.14.14, 2.3.15.08, 2.3.16.07, 2.3.17.07, 2.3.18.09, 2.3.19.10, 2.3.20.10, 2.3.21.10, 2.3.22.10, 2.3.23.10, 2.3.24.10, 2.3.25.10, 2.3.26.10, 2.3.27.10, 2.3.28.10, 2.3.29.10, 2.3.30.10, 2.3.31.10, 2.3.32.10, 2.3.33.10, 2.3.34.10, 2.3.35.10, 2.3.36.10, 2.3.37.10, 2.3.38.10, 2.3.39.10, 2.3.40.10, 2.3.41.10, 2.3.42.10, 2.3.43.08, 2.3.44.09, 2.3.45.11, 2.3.46.08, 2.3.47.05, 2.3.48.06, 2.3.49.05, 2.3.50.03, 2.3.51.08, 2.3.52.05","crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_allergy_intolerance-us_core_v700_allergy_intolerance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_plan-us_core_v700_care_plan_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_team-us_core_v700_care_team_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_coverage-us_core_v700_coverage_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_device-us_core_v700_device_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_goal-us_core_v700_goal_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_immunization-us_core_v700_immunization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_dispense-us_core_v700_medication_dispense_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_sexual_orientation-us_core_v700_observation_sexual_orientation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_questionnaire_response-us_core_v700_questionnaire_response_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_location-us_core_v700_location_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_organization-us_core_v700_organization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner-us_core_v700_practitioner_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner_role-us_core_v700_practitioner_role_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_provenance-us_core_v700_provenance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_related_person-us_core_v700_related_person_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_specimen-us_core_v700_specimen_must_support_test"
|
|
861
|
+
hl7.fhir.us.core_7.0.0,101,https://hl7.org/fhir/us/core/STU7/must-support.html#must-support---complex-elements,"Systems [US Core Responders] can support the other elements [of a complex element, not labeled as a Must Support], but this is not a requirement of US Core",MAY,Server,false,,,"",""
|
|
862
|
+
hl7.fhir.us.core_7.0.0,103,https://hl7.org/fhir/us/core/STU7/must-support.html#must-support---complex-elements,"The U.S. Core Data for Interoperability (USCDI) may require additional elements, [which is a requirement for certification in the ONC IT Health Certification program, but not a requirement of US Core conformance for US Core Responders]",MAY,Server,false,,,"",""
|
|
863
|
+
hl7.fhir.us.core_7.0.0,105,https://hl7.org/fhir/us/core/STU7/must-support.html#must-support---resource-references,"In certain profiles, only specific resource references are labeled as Must Support.
|
|
864
|
+
|
|
865
|
+
...
|
|
866
|
+
|
|
867
|
+
- US Core Responders **SHALL** be capable of providing [such an element] with a valid reference to [all listed Must Support profile(s).]",SHALL,Server,false,,,"2.3.4.07, 2.3.5.09, 2.3.6.08, 2.3.7.16, 2.3.8.16, 2.3.9.06, 2.3.10.08, 2.3.11.12, 2.3.12.12, 2.3.13.12, 2.3.14.15, 2.3.15.09, 2.3.16.08, 2.3.17.08, 2.3.18.10, 2.3.19.11, 2.3.20.11, 2.3.21.11, 2.3.22.11, 2.3.23.11, 2.3.24.11, 2.3.25.11, 2.3.26.11, 2.3.27.11, 2.3.28.11, 2.3.29.11, 2.3.30.11, 2.3.31.11, 2.3.32.11, 2.3.33.11, 2.3.34.11, 2.3.35.11, 2.3.36.11, 2.3.37.11, 2.3.38.11, 2.3.39.11, 2.3.40.11, 2.3.41.11, 2.3.42.11, 2.3.43.09, 2.3.44.10, 2.3.45.12, 2.3.46.09, 2.3.49.06, 2.3.50.04, 2.3.51.09, 2.3.52.06","crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_allergy_intolerance-us_core_v700_allergy_intolerance_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_plan-us_core_v700_care_plan_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_team-us_core_v700_care_team_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_coverage-us_core_v700_coverage_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_device-us_core_v700_device_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_goal-us_core_v700_goal_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_immunization-us_core_v700_immunization_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_dispense-us_core_v700_medication_dispense_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_sexual_orientation-us_core_v700_observation_sexual_orientation_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_questionnaire_response-us_core_v700_questionnaire_response_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_location-us_core_v700_location_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner_role-us_core_v700_practitioner_role_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_provenance-us_core_v700_provenance_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_related_person-us_core_v700_related_person_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_specimen-us_core_v700_specimen_reference_resolution_test"
|
|
868
|
+
hl7.fhir.us.core_7.0.0,107,https://hl7.org/fhir/us/core/STU7/must-support.html#must-support---resource-references,"Systems [US Core Responders] can support other [resource] references [other than those labeled as Must Support], but this is not a requirement of US Core",MAY,Server,,,,"",""
|
|
869
|
+
hl7.fhir.us.core_7.0.0,109,https://hl7.org/fhir/us/core/STU7/must-support.html#must-support---resource-references,"In specific profiles, only a single resource reference is present on an element labeled Must Support.
|
|
870
|
+
|
|
871
|
+
...
|
|
872
|
+
|
|
873
|
+
- US Core Responders **SHALL** be capable of providing [such an element] with a valid reference to [the Must Support Profile.]",SHALL,Server,false,,,"2.3.4.07, 2.3.5.09, 2.3.6.08, 2.3.7.16, 2.3.8.16, 2.3.9.06, 2.3.10.08, 2.3.11.12, 2.3.12.12, 2.3.13.12, 2.3.14.15, 2.3.15.09, 2.3.16.08, 2.3.17.08, 2.3.18.10, 2.3.19.11, 2.3.20.11, 2.3.21.11, 2.3.22.11, 2.3.23.11, 2.3.24.11, 2.3.25.11, 2.3.26.11, 2.3.27.11, 2.3.28.11, 2.3.29.11, 2.3.30.11, 2.3.31.11, 2.3.32.11, 2.3.33.11, 2.3.34.11, 2.3.35.11, 2.3.36.11, 2.3.37.11, 2.3.38.11, 2.3.39.11, 2.3.40.11, 2.3.41.11, 2.3.42.11, 2.3.43.09, 2.3.44.10, 2.3.45.12, 2.3.46.09, 2.3.49.06, 2.3.50.04, 2.3.51.09, 2.3.52.06","crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_allergy_intolerance-us_core_v700_allergy_intolerance_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_plan-us_core_v700_care_plan_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_team-us_core_v700_care_team_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_coverage-us_core_v700_coverage_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_device-us_core_v700_device_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_goal-us_core_v700_goal_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_immunization-us_core_v700_immunization_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_dispense-us_core_v700_medication_dispense_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_sexual_orientation-us_core_v700_observation_sexual_orientation_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_questionnaire_response-us_core_v700_questionnaire_response_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_location-us_core_v700_location_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner_role-us_core_v700_practitioner_role_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_provenance-us_core_v700_provenance_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_related_person-us_core_v700_related_person_reference_resolution_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_specimen-us_core_v700_specimen_reference_resolution_test"
|
|
874
|
+
hl7.fhir.us.core_7.0.0,111,https://hl7.org/fhir/us/core/STU7/must-support.html#must-support---choice-of-data-types,"Some elements allow different data types (e.g., Observation.effective[x]) for their content. Only specific data type choice elements are labeled Must Support in these situations.
|
|
875
|
+
|
|
876
|
+
… When claiming conformance to [such a] profile:
|
|
877
|
+
|
|
878
|
+
- US Core Responders **SHALL** be capable of populating [the Must Support data type choice]",SHALL,Server,false,,,"2.3.3.12, 2.3.4.06, 2.3.5.08, 2.3.6.07, 2.3.7.15, 2.3.8.15, 2.3.9.05, 2.3.10.07, 2.3.11.11, 2.3.12.11, 2.3.13.11, 2.3.14.14, 2.3.15.08, 2.3.16.07, 2.3.17.07, 2.3.18.09, 2.3.19.10, 2.3.20.10, 2.3.21.10, 2.3.22.10, 2.3.23.10, 2.3.24.10, 2.3.25.10, 2.3.26.10, 2.3.27.10, 2.3.28.10, 2.3.29.10, 2.3.30.10, 2.3.31.10, 2.3.32.10, 2.3.33.10, 2.3.34.10, 2.3.35.10, 2.3.36.10, 2.3.37.10, 2.3.38.10, 2.3.39.10, 2.3.40.10, 2.3.41.10, 2.3.42.10, 2.3.43.08, 2.3.44.09, 2.3.45.11, 2.3.46.08, 2.3.47.05, 2.3.48.06, 2.3.49.05, 2.3.50.03, 2.3.51.08, 2.3.52.05","crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_allergy_intolerance-us_core_v700_allergy_intolerance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_plan-us_core_v700_care_plan_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_team-us_core_v700_care_team_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_coverage-us_core_v700_coverage_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_device-us_core_v700_device_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_goal-us_core_v700_goal_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_immunization-us_core_v700_immunization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_dispense-us_core_v700_medication_dispense_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_sexual_orientation-us_core_v700_observation_sexual_orientation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_questionnaire_response-us_core_v700_questionnaire_response_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_location-us_core_v700_location_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_organization-us_core_v700_organization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner-us_core_v700_practitioner_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner_role-us_core_v700_practitioner_role_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_provenance-us_core_v700_provenance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_related_person-us_core_v700_related_person_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_specimen-us_core_v700_specimen_must_support_test"
|
|
879
|
+
hl7.fhir.us.core_7.0.0,114,https://hl7.org/fhir/us/core/STU7/must-support.html#must-support---choice-of-data-types,"Some elements allow different data types (e.g., Observation.effective[x]) for their content. Only specific data type choice elements are labeled Must Support in these situations.
|
|
880
|
+
|
|
881
|
+
…
|
|
882
|
+
|
|
883
|
+
[US Core Responders] **MAY** support populating ... other [data type] choice elements (such as Observation.effectivePeriod), but this is not a requirement of US Core.",MAY,Server,false,,,"",""
|
|
884
|
+
hl7.fhir.us.core_7.0.0,115,https://hl7.org/fhir/us/core/STU7/must-support.html#must-support---choice-of-profile-elements,"There are several instances in this Guide where there is a choice of supporting one or another profile element to meet the Must Support requirement. In such cases, the server **SHALL** support at least one element.",SHALL,Server,false,,,"2.3.3.12, 2.3.4.06, 2.3.5.08, 2.3.6.07, 2.3.7.15, 2.3.8.15, 2.3.9.05, 2.3.10.07, 2.3.11.11, 2.3.12.11, 2.3.13.11, 2.3.14.14, 2.3.15.08, 2.3.16.07, 2.3.17.07, 2.3.18.09, 2.3.19.10, 2.3.20.10, 2.3.21.10, 2.3.22.10, 2.3.23.10, 2.3.24.10, 2.3.25.10, 2.3.26.10, 2.3.27.10, 2.3.28.10, 2.3.29.10, 2.3.30.10, 2.3.31.10, 2.3.32.10, 2.3.33.10, 2.3.34.10, 2.3.35.10, 2.3.36.10, 2.3.37.10, 2.3.38.10, 2.3.39.10, 2.3.40.10, 2.3.41.10, 2.3.42.10, 2.3.43.08, 2.3.44.09, 2.3.45.11, 2.3.46.08, 2.3.47.05, 2.3.48.06, 2.3.49.05, 2.3.50.03, 2.3.51.08, 2.3.52.05","crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_allergy_intolerance-us_core_v700_allergy_intolerance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_plan-us_core_v700_care_plan_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_team-us_core_v700_care_team_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_coverage-us_core_v700_coverage_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_device-us_core_v700_device_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_goal-us_core_v700_goal_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_immunization-us_core_v700_immunization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_dispense-us_core_v700_medication_dispense_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_respiratory_rate-us_core_v700_respiratory_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_simple_observation-us_core_v700_simple_observation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_treatment_intervention_preference-us_core_v700_treatment_intervention_preference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_experience_preference-us_core_v700_care_experience_preference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_heart_rate-us_core_v700_heart_rate_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_temperature-us_core_v700_body_temperature_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_weight_for_height-us_core_v700_pediatric_weight_for_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pulse_oximetry-us_core_v700_pulse_oximetry_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_smokingstatus-us_core_v700_smokingstatus_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_sexual_orientation-us_core_v700_observation_sexual_orientation_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference-us_core_v700_head_circumference_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_height-us_core_v700_body_height_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_bmi-us_core_v700_bmi_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_blood_pressure-us_core_v700_blood_pressure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_pediatric_bmi_for_age-us_core_v700_pediatric_bmi_for_age_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_head_circumference_percentile-us_core_v700_head_circumference_percentile_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_body_weight-us_core_v700_body_weight_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_questionnaire_response-us_core_v700_questionnaire_response_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_location-us_core_v700_location_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_organization-us_core_v700_organization_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner-us_core_v700_practitioner_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_practitioner_role-us_core_v700_practitioner_role_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_provenance-us_core_v700_provenance_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_related_person-us_core_v700_related_person_must_support_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_specimen-us_core_v700_specimen_must_support_test"
|
|
885
|
+
hl7.fhir.us.core_7.0.0,117,https://hl7.org/fhir/us/core/STU7/scopes.html#capability-sets,"An individual SMART server will publish a granular list of its capabilities, and a set of these capabilities is combined to support a specific use, a Capability Set. See SMART App Launch’s [FHIR OAuth authorization Endpoints and Capabilities](http://hl7.org/fhir/smart-app-launch/STU2/conformance.html#smart-on-fhir-oauth-authorization-endpoints-and-capabilities) for more details. Servers MAY support ... [any] SMART on FHIR Capability Sets and capabilities [(see [FHIR OAuth authorization Endpoints and Capabilities](http://hl7.org/fhir/smart-app-launch/STU2/conformance.html#smart-on-fhir-oauth-authorization-endpoints-and-capabilities))]",MAY,Server,false,,,"",""
|
|
886
|
+
hl7.fhir.us.core_7.0.0,118,https://hl7.org/fhir/us/core/STU7/scopes.html#capabilities-for-implementations-supporting-user-facing-applications,"At least one of the following SMART on FHIR Capability Sets SHOULD be supported for US Core Servers that support User-Facing Applications ...
|
|
887
|
+
[Patient Access Standalone Apps](http://hl7.org/fhir/smart-app-launch/STU2/conformance.html#patient-access-for-standalone-apps)
|
|
888
|
+
[Clinician Access for EHR Launch](http://hl7.org/fhir/smart-app-launch/STU2/conformance.html#clinician-access-for-standalone)",SHOULD,Server,true,,,"",""
|
|
889
|
+
hl7.fhir.us.core_7.0.0,119,https://hl7.org/fhir/us/core/STU7/scopes.html#capabilities-for-implementations-supporting-user-facing-applications,"For certified systems[, those participating in the ONC IT Health Certification program], both SHALL be supported:
|
|
890
|
+
[Patient Access Standalone Apps](http://hl7.org/fhir/smart-app-launch/STU2/conformance.html#patient-access-for-standalone-apps)
|
|
891
|
+
[Clinician Access for EHR Launch](http://hl7.org/fhir/smart-app-launch/STU2/conformance.html#clinician-access-for-standalone)",SHALL,Server,true,,,"",""
|
|
892
|
+
hl7.fhir.us.core_7.0.0,120,https://hl7.org/fhir/us/core/STU7/scopes.html#capabilities-for-implementations-supporting-backend-services,Implementations [US Core Responders] supporting Backend Services ... SHALL include support for the client-confidential-asymmetric capability.,SHALL,Server,false,,,"",""
|
|
893
|
+
hl7.fhir.us.core_7.0.0,121,https://hl7.org/fhir/us/core/STU7/scopes.html#capabilities-for-implementations-supporting-backend-services,Implementations [US Core Responders] supporting Backend Services ... SHALL include support for the ... system/scopes.,SHALL,Server,false,,,"",""
|
|
894
|
+
hl7.fhir.us.core_7.0.0,122,https://hl7.org/fhir/us/core/STU7/scopes.html#capabilities-for-implementations-supporting-backend-services,"Implementations [US Core Requestors] supporting Backend Services – for example, to meet US EHR certification requirements [of the ONC IT Health Certification program]- SHALL include support for the client-confidential-asymmetric capability and system/scopes.",SHALL,Server,false,,,"",""
|
|
895
|
+
hl7.fhir.us.core_7.0.0,123,https://hl7.org/fhir/us/core/STU7/scopes.html#us-core-servers-shall-support-token-introspection,"US Core Server[s] SHALL support token introspection defined by the SMART App Launch Guide. For more details and additional consideration, see SMART App Launch’s [Token Introspection](http://hl7.org/fhir/smart-app-launch/STU2/token-introspection.html#token-introspection).",SHALL,Server,false,,,"",""
|
|
896
|
+
hl7.fhir.us.core_7.0.0,124,https://hl7.org/fhir/us/core/STU7/scopes.html#smart-scopes,Implementations meeting US EHR certification [of the ONC IT Health Certification program] requirements must support all US Core’s required scopes.,SHALL,Server,true,,,"",""
|
|
897
|
+
hl7.fhir.us.core_7.0.0,125,https://hl7.org/fhir/us/core/STU7/scopes.html#smart-scopes,Other systems only need to support scopes for the US Core APIs they support [instead of all US Core's required scopes],MAY,Server,false,,,"",""
|
|
898
|
+
hl7.fhir.us.core_7.0.0,126,https://hl7.org/fhir/us/core/STU7/scopes.html#smart-scopes,Servers MAY support other scopes in addition to those listed below and in the Quick Start sections.,MAY,Server,false,,,"",""
|
|
899
|
+
hl7.fhir.us.core_7.0.0,128,https://hl7.org/fhir/us/core/STU7/scopes.html#us-core-scopes,"For “User-Facing Applications”, a system’s support for patient-level (patient) or user-level (user) scopes depends on its published list of SMART on FHIR capabilities (see the [capability sets](https://hl7.org/fhir/us/core/STU7/scopes.html#capability-sets) above). For example, if a server lists permission-patient and permission-user in its capabilities, it SHALL support both patient-level and user-level required scopes",SHALL,Server,false,,,"",""
|
|
900
|
+
hl7.fhir.us.core_7.0.0,129,https://hl7.org/fhir/us/core/STU7/scopes.html#us-core-scopes,"For “User-Facing Applications”, a system’s support for patient-level (patient) or user-level (user) scopes depends on its published list of SMART on FHIR capabilities (see the [capability sets](https://hl7.org/fhir/us/core/STU7/scopes.html#capability-sets) above). For example, if a server lists permission-patient and permission-user in its capabilities, it ... SHOULD support both patient-level and user-level recommended best-practice scopes",SHOULD,Server,false,,,"",""
|
|
901
|
+
hl7.fhir.us.core_7.0.0,130,https://hl7.org/fhir/us/core/STU7/scopes.html#the-following-resource-level-scopes-shall-be-supported,"For “Backend-Services”, System-level scopes (system) describe data that a client system is directly authorized to access. Systems that support system-level (system) scopes SHALL support the required US Core scopes",SHALL,Server,false,,,"",""
|
|
902
|
+
hl7.fhir.us.core_7.0.0,131,https://hl7.org/fhir/us/core/STU7/scopes.html#the-following-resource-level-scopes-shall-be-supported,"For “Backend-Services”, System-level scopes (system) describe data that a client system is directly authorized to access. Systems that support system-level (system) scopes SHOULD support the recommended US Core scopes",SHOULD,Server,false,,,"",""
|
|
903
|
+
hl7.fhir.us.core_7.0.0,132,"https://hl7.org/fhir/us/core/STU7/scopes.html#the-following-resource-level-scopes-shall-be-supported, https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-allergyintolerance.html#us-core-scopes","The Following Resource Level Scopes SHALL Be Supported
|
|
904
|
+
...
|
|
905
|
+
[For] AllergyIntolerance [the] <patient|user|system>/AllergyIntolerance.rs [see [SMART Clinical Scope Syntax](https://hl7.org/fhir/smart-app-launch/STU2/scopes-and-launch-context.html#clinical-scope-syntax) for details on clinical data scopes]",SHALL,Server,true,,,"",""
|
|
906
|
+
hl7.fhir.us.core_7.0.0,133,https://hl7.org/fhir/us/core/STU7/scopes.html#the-following-resource-level-scopes-shall-be-supported,"The Following Resource Level Scopes SHALL Be Supported
|
|
907
|
+
...
|
|
908
|
+
[For] CarePlan [the] <patient|user|system>/CarePlan.rs [see [SMART Clinical Scope Syntax](https://hl7.org/fhir/smart-app-launch/STU2/scopes-and-launch-context.html#clinical-scope-syntax) for details on clinical data scopes]",SHALL,Server,true,,,"",""
|
|
909
|
+
hl7.fhir.us.core_7.0.0,134,https://hl7.org/fhir/us/core/STU7/scopes.html#the-following-resource-level-scopes-shall-be-supported,"The Following Resource Level Scopes SHALL Be Supported
|
|
910
|
+
...
|
|
911
|
+
[For] CareTeam [the] <patient|user|system>/CareTeam.rs [see [SMART Clinical Scope Syntax](https://hl7.org/fhir/smart-app-launch/STU2/scopes-and-launch-context.html#clinical-scope-syntax) for details on clinical data scopes]",SHALL,Server,true,,,"",""
|
|
912
|
+
hl7.fhir.us.core_7.0.0,135,https://hl7.org/fhir/us/core/STU7/scopes.html#the-following-resource-level-scopes-shall-be-supported,"The Following Resource Level Scopes SHALL Be Supported
|
|
913
|
+
...
|
|
914
|
+
[For] Condition [the] <patient|user|system>/Condition.rs [see [SMART Clinical Scope Syntax](https://hl7.org/fhir/smart-app-launch/STU2/scopes-and-launch-context.html#clinical-scope-syntax) for details on clinical data scopes]",SHALL,Server,true,,,"",""
|
|
915
|
+
hl7.fhir.us.core_7.0.0,136,https://hl7.org/fhir/us/core/STU7/scopes.html#the-following-resource-level-scopes-shall-be-supported,"The Following Resource Level Scopes SHALL Be Supported
|
|
916
|
+
...
|
|
917
|
+
[For] Coverage [the] <patient|user|system>/Coverage.rs [see [SMART Clinical Scope Syntax](https://hl7.org/fhir/smart-app-launch/STU2/scopes-and-launch-context.html#clinical-scope-syntax) for details on clinical data scopes]",SHALL,Server,true,,,"",""
|
|
918
|
+
hl7.fhir.us.core_7.0.0,137,https://hl7.org/fhir/us/core/STU7/scopes.html#the-following-resource-level-scopes-shall-be-supported,"The Following Resource Level Scopes SHALL Be Supported
|
|
919
|
+
...
|
|
920
|
+
[For] Device [the] <patient|user|system>/Device.rs [see [SMART Clinical Scope Syntax](https://hl7.org/fhir/smart-app-launch/STU2/scopes-and-launch-context.html#clinical-scope-syntax) for details on clinical data scopes]",SHALL,Server,true,,,"",""
|
|
921
|
+
hl7.fhir.us.core_7.0.0,138,https://hl7.org/fhir/us/core/STU7/scopes.html#the-following-resource-level-scopes-shall-be-supported,"The Following Resource Level Scopes SHALL Be Supported
|
|
922
|
+
...
|
|
923
|
+
[For] DiagnosticReport [the] <patient|user|system>/DiagnosticReport.rs [see [SMART Clinical Scope Syntax](https://hl7.org/fhir/smart-app-launch/STU2/scopes-and-launch-context.html#clinical-scope-syntax) for details on clinical data scopes]",SHALL,Server,true,,,"",""
|
|
924
|
+
hl7.fhir.us.core_7.0.0,139,https://hl7.org/fhir/us/core/STU7/scopes.html#the-following-resource-level-scopes-shall-be-supported,"The Following Resource Level Scopes SHALL Be Supported
|
|
925
|
+
...
|
|
926
|
+
[For] DocumentReference [the] <patient|user|system>/DocumentReference.rs [see [SMART Clinical Scope Syntax](https://hl7.org/fhir/smart-app-launch/STU2/scopes-and-launch-context.html#clinical-scope-syntax) for details on clinical data scopes]",SHALL,Server,true,,,"",""
|
|
927
|
+
hl7.fhir.us.core_7.0.0,140,https://hl7.org/fhir/us/core/STU7/scopes.html#the-following-resource-level-scopes-shall-be-supported,"The Following Resource Level Scopes SHALL Be Supported
|
|
928
|
+
...
|
|
929
|
+
[For] Encounter [the] <patient|user|system>/Encounter.rs [see [SMART Clinical Scope Syntax](https://hl7.org/fhir/smart-app-launch/STU2/scopes-and-launch-context.html#clinical-scope-syntax) for details on clinical data scopes]",SHALL,Server,true,,,"",""
|
|
930
|
+
hl7.fhir.us.core_7.0.0,141,https://hl7.org/fhir/us/core/STU7/scopes.html#the-following-resource-level-scopes-shall-be-supported,"The Following Resource Level Scopes SHALL Be Supported
|
|
931
|
+
...
|
|
932
|
+
[For] Goal [the] <patient|user|system>/Goal.rs [see [SMART Clinical Scope Syntax](https://hl7.org/fhir/smart-app-launch/STU2/scopes-and-launch-context.html#clinical-scope-syntax) for details on clinical data scopes]",SHALL,Server,true,,,"",""
|
|
933
|
+
hl7.fhir.us.core_7.0.0,142,https://hl7.org/fhir/us/core/STU7/scopes.html#the-following-resource-level-scopes-shall-be-supported,"The Following Resource Level Scopes SHALL Be Supported
|
|
934
|
+
...
|
|
935
|
+
[For] Immunization [the] <patient|user|system>/Immunization.rs [see [SMART Clinical Scope Syntax](https://hl7.org/fhir/smart-app-launch/STU2/scopes-and-launch-context.html#clinical-scope-syntax) for details on clinical data scopes]",SHALL,Server,true,,,"",""
|
|
936
|
+
hl7.fhir.us.core_7.0.0,143,https://hl7.org/fhir/us/core/STU7/scopes.html#the-following-resource-level-scopes-shall-be-supported,"The Following Resource Level Scopes SHALL Be Supported
|
|
937
|
+
...
|
|
938
|
+
[For] MedicationDispense [the] <patient|user|system>/MedicationDispense.rs [see [SMART Clinical Scope Syntax](https://hl7.org/fhir/smart-app-launch/STU2/scopes-and-launch-context.html#clinical-scope-syntax) for details on clinical data scopes]",SHALL,Server,true,,,"",""
|
|
939
|
+
hl7.fhir.us.core_7.0.0,144,https://hl7.org/fhir/us/core/STU7/scopes.html#the-following-resource-level-scopes-shall-be-supported,"The Following Resource Level Scopes SHALL Be Supported
|
|
940
|
+
...
|
|
941
|
+
[For] MedicationRequest [the] <patient|user|system>/MedicationRequest.rs [see [SMART Clinical Scope Syntax](https://hl7.org/fhir/smart-app-launch/STU2/scopes-and-launch-context.html#clinical-scope-syntax) for details on clinical data scopes]",SHALL,Server,true,,,"",""
|
|
942
|
+
hl7.fhir.us.core_7.0.0,145,https://hl7.org/fhir/us/core/STU7/scopes.html#the-following-resource-level-scopes-shall-be-supported,"The Following Resource Level Scopes SHALL Be Supported
|
|
943
|
+
...
|
|
944
|
+
[For] Observation [the] <patient|user|system>/Observation.rs [see [SMART Clinical Scope Syntax](https://hl7.org/fhir/smart-app-launch/STU2/scopes-and-launch-context.html#clinical-scope-syntax) for details on clinical data scopes]",SHALL,Server,true,,,"",""
|
|
945
|
+
hl7.fhir.us.core_7.0.0,146,https://hl7.org/fhir/us/core/STU7/scopes.html#the-following-resource-level-scopes-shall-be-supported,"The Following Resource Level Scopes SHALL Be Supported
|
|
946
|
+
...
|
|
947
|
+
[For] Organization [the] <patient|user|system>/Organization.rs [see [SMART Clinical Scope Syntax](https://hl7.org/fhir/smart-app-launch/STU2/scopes-and-launch-context.html#clinical-scope-syntax) for details on clinical data scopes]",SHALL,Server,true,,,"",""
|
|
948
|
+
hl7.fhir.us.core_7.0.0,147,https://hl7.org/fhir/us/core/STU7/scopes.html#the-following-resource-level-scopes-shall-be-supported,"The Following Resource Level Scopes SHALL Be Supported
|
|
949
|
+
...
|
|
950
|
+
[For] Patient [the] <patient|user|system>/Patient.rs [see [SMART Clinical Scope Syntax](https://hl7.org/fhir/smart-app-launch/STU2/scopes-and-launch-context.html#clinical-scope-syntax) for details on clinical data scopes]",SHALL,Server,true,,,"",""
|
|
951
|
+
hl7.fhir.us.core_7.0.0,148,https://hl7.org/fhir/us/core/STU7/scopes.html#the-following-resource-level-scopes-shall-be-supported,"The Following Resource Level Scopes SHALL Be Supported
|
|
952
|
+
...
|
|
953
|
+
[For] Practitioner [the] <patient|user|system>/Practitioner.rs [see [SMART Clinical Scope Syntax](https://hl7.org/fhir/smart-app-launch/STU2/scopes-and-launch-context.html#clinical-scope-syntax) for details on clinical data scopes]",SHALL,Server,true,,,"",""
|
|
954
|
+
hl7.fhir.us.core_7.0.0,149,https://hl7.org/fhir/us/core/STU7/scopes.html#the-following-resource-level-scopes-shall-be-supported,"The Following Resource Level Scopes SHALL Be Supported
|
|
955
|
+
...
|
|
956
|
+
[For] PractitionerRole [the] <patient|user|system>/PractitionerRole.rs [see [SMART Clinical Scope Syntax](https://hl7.org/fhir/smart-app-launch/STU2/scopes-and-launch-context.html#clinical-scope-syntax) for details on clinical data scopes]",SHALL,Server,true,,,"",""
|
|
957
|
+
hl7.fhir.us.core_7.0.0,150,https://hl7.org/fhir/us/core/STU7/scopes.html#the-following-resource-level-scopes-shall-be-supported,"The Following Resource Level Scopes SHALL Be Supported
|
|
958
|
+
...
|
|
959
|
+
[For] Procedure [the] <patient|user|system>/Procedure.rs [see [SMART Clinical Scope Syntax](https://hl7.org/fhir/smart-app-launch/STU2/scopes-and-launch-context.html#clinical-scope-syntax) for details on clinical data scopes]",SHALL,Server,true,,,"",""
|
|
960
|
+
hl7.fhir.us.core_7.0.0,151,https://hl7.org/fhir/us/core/STU7/scopes.html#the-following-resource-level-scopes-shall-be-supported,"The Following Resource Level Scopes SHALL Be Supported
|
|
961
|
+
...
|
|
962
|
+
[For] Provenance [the] <patient|user|system>/Provenance.rs [see [SMART Clinical Scope Syntax](https://hl7.org/fhir/smart-app-launch/STU2/scopes-and-launch-context.html#clinical-scope-syntax) for details on clinical data scopes]",SHALL,Server,true,,,"",""
|
|
963
|
+
hl7.fhir.us.core_7.0.0,152,https://hl7.org/fhir/us/core/STU7/scopes.html#the-following-resource-level-scopes-shall-be-supported,"The Following Resource Level Scopes SHALL Be Supported
|
|
964
|
+
...
|
|
965
|
+
[For] QuestionnaireResponse [the] <patient|user|system>/QuestionnaireResponse.rs [see [SMART Clinical Scope Syntax](https://hl7.org/fhir/smart-app-launch/STU2/scopes-and-launch-context.html#clinical-scope-syntax) for details on clinical data scopes]",SHALL,Server,true,,,"",""
|
|
966
|
+
hl7.fhir.us.core_7.0.0,153,https://hl7.org/fhir/us/core/STU7/scopes.html#the-following-resource-level-scopes-shall-be-supported,"The Following Resource Level Scopes SHALL Be Supported
|
|
967
|
+
...
|
|
968
|
+
[For] RelatedPerson [the] <patient|user|system>/RelatedPerson.rs [see [SMART Clinical Scope Syntax](https://hl7.org/fhir/smart-app-launch/STU2/scopes-and-launch-context.html#clinical-scope-syntax) for details on clinical data scopes]",SHALL,Server,true,,,"",""
|
|
969
|
+
hl7.fhir.us.core_7.0.0,154,https://hl7.org/fhir/us/core/STU7/scopes.html#the-following-resource-level-scopes-shall-be-supported,"The Following Resource Level Scopes SHALL Be Supported
|
|
970
|
+
...
|
|
971
|
+
[For] ServiceRequest [the] <patient|user|system>/ServiceRequest.rs [see [SMART Clinical Scope Syntax](https://hl7.org/fhir/smart-app-launch/STU2/scopes-and-launch-context.html#clinical-scope-syntax) for details on clinical data scopes]",SHALL,Server,true,,,"",""
|
|
972
|
+
hl7.fhir.us.core_7.0.0,155,https://hl7.org/fhir/us/core/STU7/scopes.html#the-following-resource-level-scopes-shall-be-supported,"The Following Resource Level Scopes SHALL Be Supported
|
|
973
|
+
...
|
|
974
|
+
[For] Specimen [the] <patient|user|system>/Specimen.rs [see [SMART Clinical Scope Syntax](https://hl7.org/fhir/smart-app-launch/STU2/scopes-and-launch-context.html#clinical-scope-syntax) for details on clinical data scopes]",SHALL,Server,true,,,"",""
|
|
975
|
+
hl7.fhir.us.core_7.0.0,156,https://hl7.org/fhir/us/core/STU7/scopes.html#the-following-resource-level-scopes-may-be-supported,"The Following Resource Level Scopes MAY Be Supported
|
|
976
|
+
...
|
|
977
|
+
[For] Location [the] <patient|user|system>/Location.rs [see [SMART Clinical Scope Syntax](https://hl7.org/fhir/smart-app-launch/STU2/scopes-and-launch-context.html#clinical-scope-syntax) for details on clinical data scopes]",MAY,Server,false,,,"",""
|
|
978
|
+
hl7.fhir.us.core_7.0.0,157,https://hl7.org/fhir/us/core/STU7/scopes.html#the-following-resource-level-scopes-may-be-supported,"The Following Resource Level Scopes MAY Be Supported
|
|
979
|
+
...
|
|
980
|
+
[For] Medication [the] <patient|user|system>/Medication.rs [see [SMART Clinical Scope Syntax](https://hl7.org/fhir/smart-app-launch/STU2/scopes-and-launch-context.html#clinical-scope-syntax) for details on clinical data scopes]",MAY,Server,false,,,"",""
|
|
981
|
+
hl7.fhir.us.core_7.0.0,158,https://hl7.org/fhir/us/core/STU7/scopes.html#the-following-granular-scopes-shall-be-supported,"The Following Granular Level Scopes SHALL Be Supported
|
|
982
|
+
...
|
|
983
|
+
[For] Condition [the] <patient|user|system>/Condition.rs?category=http://hl7.org/fhir/us/core/CodeSystem/condition-category|health-concern [see [SMART Clinical Scope Syntax](https://hl7.org/fhir/smart-app-launch/STU2/scopes-and-launch-context.html#clinical-scope-syntax) for details on clinical data scopes]",SHALL,Server,false,,,"",""
|
|
984
|
+
hl7.fhir.us.core_7.0.0,159,https://hl7.org/fhir/us/core/STU7/scopes.html#the-following-granular-scopes-shall-be-supported,"The Following Granular Level Scopes SHALL Be Supported
|
|
985
|
+
...
|
|
986
|
+
[For] Condition [the] <patient|user|system>/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|encounter-diagnosis [see [SMART Clinical Scope Syntax](https://hl7.org/fhir/smart-app-launch/STU2/scopes-and-launch-context.html#clinical-scope-syntax) for details on clinical data scopes]",SHALL,Server,false,,,"",""
|
|
987
|
+
hl7.fhir.us.core_7.0.0,160,https://hl7.org/fhir/us/core/STU7/scopes.html#the-following-granular-scopes-shall-be-supported,"The Following Granular Level Scopes SHALL Be Supported
|
|
988
|
+
...
|
|
989
|
+
[For] Condition [the] <patient|user|system>/Condition.rs?category=http://terminology.hl7.org/CodeSystem/condition-category|problem-list-item [see [SMART Clinical Scope Syntax](https://hl7.org/fhir/smart-app-launch/STU2/scopes-and-launch-context.html#clinical-scope-syntax) for details on clinical data scopes]",SHALL,Server,false,,,"",""
|
|
990
|
+
hl7.fhir.us.core_7.0.0,161,https://hl7.org/fhir/us/core/STU7/scopes.html#the-following-granular-scopes-shall-be-supported,"The Following Granular Level Scopes SHALL Be Supported
|
|
991
|
+
...
|
|
992
|
+
[For] Observation [the] <patient|user|system>/Observation.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-category|sdoh [see [SMART Clinical Scope Syntax](https://hl7.org/fhir/smart-app-launch/STU2/scopes-and-launch-context.html#clinical-scope-syntax) for details on clinical data scopes]",SHALL,Server,false,,,"",""
|
|
993
|
+
hl7.fhir.us.core_7.0.0,162,https://hl7.org/fhir/us/core/STU7/scopes.html#the-following-granular-scopes-shall-be-supported,"The Following Granular Level Scopes SHALL Be Supported
|
|
994
|
+
...
|
|
995
|
+
[For] Observation [the] <patient|user|system>/Observation.rs?category=http://terminology.hl7.org//CodeSystem-observation-category|social-history [see [SMART Clinical Scope Syntax](https://hl7.org/fhir/smart-app-launch/STU2/scopes-and-launch-context.html#clinical-scope-syntax) for details on clinical data scopes]",SHALL,Server,false,,,"",""
|
|
996
|
+
hl7.fhir.us.core_7.0.0,163,https://hl7.org/fhir/us/core/STU7/scopes.html#the-following-granular-scopes-shall-be-supported,"The Following Granular Level Scopes SHALL Be Supported
|
|
997
|
+
...
|
|
998
|
+
[For] Observation [the] <patient|user|system>/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|laboratory [see [SMART Clinical Scope Syntax](https://hl7.org/fhir/smart-app-launch/STU2/scopes-and-launch-context.html#clinical-scope-syntax) for details on clinical data scopes]",SHALL,Server,false,,,"",""
|
|
999
|
+
hl7.fhir.us.core_7.0.0,164,https://hl7.org/fhir/us/core/STU7/scopes.html#the-following-granular-scopes-shall-be-supported,"The Following Granular Level Scopes SHALL Be Supported
|
|
1000
|
+
...
|
|
1001
|
+
[For] Observation [the] <patient|user|system>/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|survey [see [SMART Clinical Scope Syntax](https://hl7.org/fhir/smart-app-launch/STU2/scopes-and-launch-context.html#clinical-scope-syntax) for details on clinical data scopes]",SHALL,Server,false,,,"",""
|
|
1002
|
+
hl7.fhir.us.core_7.0.0,165,https://hl7.org/fhir/us/core/STU7/scopes.html#the-following-granular-scopes-shall-be-supported,"The Following Granular Level Scopes SHALL Be Supported
|
|
1003
|
+
...
|
|
1004
|
+
[For] Observation [the] <patient|user|system>/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs [see [SMART Clinical Scope Syntax](https://hl7.org/fhir/smart-app-launch/STU2/scopes-and-launch-context.html#clinical-scope-syntax) for details on clinical data scopes]",SHALL,Server,false,,,"",""
|
|
1005
|
+
hl7.fhir.us.core_7.0.0,166,https://hl7.org/fhir/us/core/STU7/scopes.html#the-following-granular-scopes-should-be-supported,"The Following Granular Level Scopes SHOULD Be Supported
|
|
1006
|
+
...
|
|
1007
|
+
[For] DocumentReference [the] <patient|user|system>/DocumentReference.rs?category=http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category|clinical-note [see [SMART Clinical Scope Syntax](https://hl7.org/fhir/smart-app-launch/STU2/scopes-and-launch-context.html#clinical-scope-syntax) for details on clinical data scopes]",SHOULD,Server,false,,,"",""
|
|
1008
|
+
hl7.fhir.us.core_7.0.0,167,https://hl7.org/fhir/us/core/STU7/scopes.html#servers-shall-support-the-following-metadata-in-their-well-knownsmart-configuration,"In addition to the capabilities defined in the server’s CapabilityStatement, servers SHALL document their SMART capabilities in their [Well-Known Uniform Resource Identifiers (URIs)](https://hl7.org/fhir/smart-app-launch/STU2/conformance.html#using-well-known) JSON file.",SHALL,Server,false,,,"",""
|
|
1009
|
+
hl7.fhir.us.core_7.0.0,168,https://hl7.org/fhir/us/core/STU7/scopes.html#additional-us-core-requirements,"US Core requires ... additional metadata [to be available through the server's [Well-Known Uniform Resource Identifier (URI)](https://hl7.org/fhir/smart-app-launch/STU2/conformance.html#using-well-known)]: ... [in] `scopes_supported` [the] array of scopes a client may request. ... The server SHALL support all [required] scopes ... for the US Core Profiles they support""",SHALL,Server,false,,,"",""
|
|
1010
|
+
hl7.fhir.us.core_7.0.0,169,https://hl7.org/fhir/us/core/STU7/scopes.html#additional-us-core-requirements,US Core requires ... additional metadata [to be available through the server's [Well-Known Uniform Resource Identifier (URI)](https://hl7.org/fhir/smart-app-launch/STU2/conformance.html#using-well-known)]: ... [in] `scopes_supported` [the] array of scopes a client may request. The server [MAY support] additional scopes (so clients should not consider … [the required scopes] an exhaustive list).,MAY,Server,false,,,"",""
|
|
1011
|
+
hl7.fhir.us.core_7.0.0,170,https://hl7.org/fhir/us/core/STU7/scopes.html#additional-us-core-requirements,US Core requires ... additional metadata [to be available through the server's [Well-Known Uniform Resource Identifier (URI)](https://hl7.org/fhir/smart-app-launch/STU2/conformance.html#using-well-known)]: ... [in] `scopes_supported` [the] array of scopes a client may request. Servers MAY limit clients’ scopes to those configured at registration time.,MAY,Server,false,,,"",""
|
|
1012
|
+
hl7.fhir.us.core_7.0.0,171,https://hl7.org/fhir/us/core/STU7/scopes.html#additional-us-core-requirements,US Core requires ... additional metadata [to be available through the server's [Well-Known Uniform Resource Identifier (URI)](https://hl7.org/fhir/smart-app-launch/STU2/conformance.html#using-well-known)]: ... [in] `scopes_supported` [the] array of scopes a client may request. … Servers SHALL allow users to select a subset of the requested scopes at the approval time.,SHALL,Server,false,,,"",""
|
|
1013
|
+
hl7.fhir.us.core_7.0.0,173,https://hl7.org/fhir/us/core/STU7/scopes.html#additional-us-core-requirements,US Core requires ... additional metadata [to be available through the server's [Well-Known Uniform Resource Identifier (URI)](https://hl7.org/fhir/smart-app-launch/STU2/conformance.html#using-well-known)]: ... [in] `introspection_endpoint` the URL to a server’s introspection endpoint. ... Servers SHALL document this endpoint in the file,SHALL,Server,false,,,"",""
|
|
1014
|
+
hl7.fhir.us.core_7.0.0,174,https://hl7.org/fhir/us/core/STU7/general-guidance.html#referencing-us-core-profiles,"Therefore, a [reference](http://hl7.org/fhir/R4/references.html) to a US Core resource SHOULD include a logical id (Reference.reference), not an identifier (Reference.identifier).",SHOULD,Server,false,,,"",""
|
|
1015
|
+
hl7.fhir.us.core_7.0.0,175,https://hl7.org/fhir/us/core/STU7/general-guidance.html#referencing-us-core-profiles,"For all references, US Core Responders SHOULD return resources that conform to a US Core profile if a US Core profile exists for the resource type.",SHOULD,Server,false,,,"",""
|
|
1016
|
+
hl7.fhir.us.core_7.0.0,176,https://hl7.org/fhir/us/core/STU7/general-guidance.html#contained-resources,"When responding to a query, servers SHOULD not use inline [contained](http://hl7.org/fhir/R4/references.html#contained) resources to represent the returned data.",SHOULD NOT,Server,false,,,"",""
|
|
1017
|
+
hl7.fhir.us.core_7.0.0,177,https://hl7.org/fhir/us/core/STU7/general-guidance.html#contained-resources,"[I]f referencing a contained resource in a US Core Profile, the contained resource SHOULD be a US Core Profile if a US Core Profile exists for the resource type.",SHOULD,Server,false,,,"",""
|
|
1018
|
+
hl7.fhir.us.core_7.0.0,178,https://hl7.org/fhir/us/core/STU7/general-guidance.html#contained-resources,[M]asking data [where a specific piece of data is hidden for security and privacy reasons] SHOULD be handled based on implemented policies.,SHOULD,Server,false,,,"",""
|
|
1019
|
+
hl7.fhir.us.core_7.0.0,179,https://hl7.org/fhir/us/core/STU7/general-guidance.html#contained-resources,"[When masking data] elements with a minimum cardinality = 0 (including elements labeled Must Support) [for security and privacy reasons], the element SHOULD be omitted from the resource.",SHOULD,Server,true,,,"",""
|
|
1020
|
+
hl7.fhir.us.core_7.0.0,180,https://hl7.org/fhir/us/core/STU7/general-guidance.html#contained-resources,"[When masking] Mandatory elements (in other words, where the minimum cardinality is > 0) [for security and privacy reasons, use the code “unknown” following the guidance on Missing Data in the Conformance Sections.",SHOULD,Server,true,,,"",""
|
|
1021
|
+
hl7.fhir.us.core_7.0.0,181,https://hl7.org/fhir/us/core/STU7/general-guidance.html#snomed-ct-united-states-edition,"[When using SNOMED codes in US Core Profiles I]mplementers MAY use the default system URI [of [SNOMED CT](http://snomed.info/sct)], which refers to an unspecified edition/version [of SNOMED]",MAY,Server,true,,,"",""
|
|
1022
|
+
hl7.fhir.us.core_7.0.0,182,https://hl7.org/fhir/us/core/STU7/general-guidance.html#snomed-ct-united-states-edition,"[To enable] terminology servers to be able to validate US Edition-only codes [of [SNOMED CT](http://snomed.info/sct)], implementers SHOULD provide the accompanying system URI to describe the edition [see example 2 on [US Core general guidance](https://hl7.org/fhir/us/core/STU7/general-guidance.html#snomed-ct-united-states-edition)]",SHOULD,Server,false,,,"",""
|
|
1023
|
+
hl7.fhir.us.core_7.0.0,183,https://hl7.org/fhir/us/core/STU7/general-guidance.html#using-ucum-codes-in-the-quantity-datatype,"[If a] US Core Profiles binds the Quantity.code element in the Quantity datatype to the [UCUM](http://unitsofmeasure.org/) code system, [then] systems should also use UCUM for the optional valueRange and valueRatio datatypes (which are complex datatypes with Quantity elements)",SHOULD,Server,true,,,"",""
|
|
1024
|
+
hl7.fhir.us.core_7.0.0,184,https://hl7.org/fhir/us/core/STU7/general-guidance.html#using-ucum-codes-in-the-quantity-datatype,"[If a] US Core Profiles binds the Quantity.code element in the Quantity datatype to the [UCUM](http://unitsofmeasure.org/) code system, [when] UCUM code [is] provided [it SHOULD be indicated in the Quantity.unit and Quantity.code elements with Quantity.system = ""http://unitsofmeasure.org""]",SHOULD,Server,true,,,"",""
|
|
1025
|
+
hl7.fhir.us.core_7.0.0,185,https://hl7.org/fhir/us/core/STU7/general-guidance.html#using-ucum-codes-in-the-quantity-datatype,"[If a] US Core Profiles binds the Quantity.code element in the Quantity datatype to the [UCUM](http://unitsofmeasure.org/) code system, [then] if UCUM units are unavailable, represent units in the unit element",SHOULD,Server,true,,,"",""
|
|
1026
|
+
hl7.fhir.us.core_7.0.0,186,https://hl7.org/fhir/us/core/STU7/general-guidance.html#using-ucum-codes-in-the-quantity-datatype,"[If a] US Core Profiles binds the Quantity.code element in the Quantity datatype to the [UCUM](http://unitsofmeasure.org/) code system, [when]
|
|
1027
|
+
no units [are available systems SHOULD NOT supply the unit field]",SHOULD NOT,Server,true,,,"",""
|
|
1028
|
+
hl7.fhir.us.core_7.0.0,187,"https://hl7.org/fhir/us/core/STU7/general-guidance.html#representing-deleted-information, https://hl7.org/fhir/us/core/STU7/general-guidance.html#representing-entered-in-error-information",A FHIR Server SHOULD not delete records.,SHOULD NOT,Server,false,,,"",""
|
|
1029
|
+
hl7.fhir.us.core_7.0.0,188,https://hl7.org/fhir/us/core/STU7/general-guidance.html#representing-deleted-information,A FHIR server SHOULD update the appropriate resource status to entered-in-error or inactive [when requested to delete records],SHOULD,Server,false,,,"",""
|
|
1030
|
+
hl7.fhir.us.core_7.0.0,189,"https://hl7.org/fhir/us/core/STU7/general-guidance.html#representing-deleted-information, https://hl7.org/fhir/us/core/STU7/general-guidance.html#representing-entered-in-error-information","If a system supports the deletion of records, they SHOULD refer to the [Deletion Safety Checks](http://hl7.org/fhir/R4/safety.html#conformance) in the FHIR specification.",SHOULD,Server,true,,,"",""
|
|
1031
|
+
hl7.fhir.us.core_7.0.0,190,https://hl7.org/fhir/us/core/STU7/general-guidance.html#representing-entered-in-error-information,A FHIR Server SHOULD allow these resources [those entered in error] to be searchable by client applications.,SHOULD,Server,true,,,"",""
|
|
1032
|
+
hl7.fhir.us.core_7.0.0,191,https://hl7.org/fhir/us/core/STU7/general-guidance.html#representing-entered-in-error-information,"If the FHIR server has updated the resource status to entered-in-error:
|
|
1033
|
+
For patient facing applications, A FHIR Server SHOULD remove the resource’s contents, leaving only an id and status. Note that this typically will not conform to the US Core or FHIR StructureDefinitions.",SHOULD,Server,true,,,"",""
|
|
1034
|
+
hl7.fhir.us.core_7.0.0,192,https://hl7.org/fhir/us/core/STU7/general-guidance.html#representing-entered-in-error-information,"If the FHIR server has updated the resource status to entered-in-error:
|
|
1035
|
+
...
|
|
1036
|
+
For provider-facing applications, the content may be supplied with content and additional detail (such as the reason for the status change) that the patient viewing system would typically not have access to.",MAY,Server,true,,,"",""
|
|
1037
|
+
hl7.fhir.us.core_7.0.0,193,https://hl7.org/fhir/us/core/STU7/general-guidance.html#language-support,the data provider SHOULD do their best to translate (safely) to the requested language [when accessing records in a native or requested language],SHOULD,Server,false,,,"",""
|
|
1038
|
+
hl7.fhir.us.core_7.0.0,195,https://hl7.org/fhir/us/core/STU7/general-guidance.html#language-support,[When clients request a resource in a specific language] servers SHOULD make reasonable efforts to translate what can be safely translated.,SHOULD,Server,true,,,"",""
|
|
1039
|
+
hl7.fhir.us.core_7.0.0,196,https://hl7.org/fhir/us/core/STU7/general-guidance.html#language-support,"[When clients request a resource in a specific language] servers SHOULD populate the Resource’s language element with a code based on the underlying language of record, not the requested language.",SHOULD,Server,true,,,"",""
|
|
1040
|
+
hl7.fhir.us.core_7.0.0,197,https://hl7.org/fhir/us/core/STU7/general-guidance.html#language-support,"[When clients request a resource in a specific language] Servers SHOULD … [use] the [Human Language](http://hl7.org/fhir/R4/extension-language.html) Extension when the language of a display, etc, is known to differ from the stated (or inferred) language.",SHOULD,Server,true,,,"",""
|
|
1041
|
+
hl7.fhir.us.core_7.0.0,198,https://hl7.org/fhir/us/core/STU7/general-guidance.html#language-support,[When clients request a resource in a specific language] [servers SHOULD use] the [Translation](http://hl7.org/fhir/R4/extension-translation.html) Extension when the server provides additional translations by its own choice or in response to a different Accept-Language than what the resource is stored in.,SHOULD,Server,true,,,"",""
|
|
1042
|
+
hl7.fhir.us.core_7.0.0,199,https://hl7.org/fhir/us/core/STU7/general-guidance.html#language-support,"[When clients request a resource in a specific language] servers SHOULD make it known what languages are supported in their CapabilityStatement(s) using this extension:
|
|
1043
|
+
http://hl7.org/fhir/5.0/StructureDefinition/extension-CapablilityStatement.acceptLanguage [[definition](https://hl7.org/fhir/R5/capabilitystatement-definitions.html#CapabilityStatement.acceptLanguage)]",SHOULD,Server,true,,,"",""
|
|
1044
|
+
hl7.fhir.us.core_7.0.0,200,https://hl7.org/fhir/us/core/STU7/general-guidance.html#searching-using-lastupdated,Servers SHOULD support the [_lastUpdated](http://hl7.org/fhir/R4/search.html#lastUpdated) search parameter for US Core Profiles,SHOULD,Server,false,,,"",""
|
|
1045
|
+
hl7.fhir.us.core_7.0.0,201,https://hl7.org/fhir/us/core/STU7/general-guidance.html#searching-using-lastupdated,Servers ... SHOULD populate [Meta.lastUpdated](http://hl7.org/fhir/R4/resource.html#Meta) for US Core Profiles as accurately as possible.,SHOULD,Server,false,,,"",""
|
|
1046
|
+
hl7.fhir.us.core_7.0.0,202,https://hl7.org/fhir/us/core/STU7/general-guidance.html#searching-using-lastupdated,Servers SHALL document in CapabilityStatement.rest.resource.searchParam.documentation the types of changes that can be detected using the _lastUpdated search parameter,SHALL,Server,false,,,"",""
|
|
1047
|
+
hl7.fhir.us.core_7.0.0,203,https://hl7.org/fhir/us/core/STU7/general-guidance.html#compartment-based-search,"US Core servers [MAY support compartment based searchs, but] are not required to support patient [compartment](http://hl7.org/fhir/R4/compartmentdefinition.html) based searches.",MAY,Server,false,,,"",""
|
|
1048
|
+
hl7.fhir.us.core_7.0.0,204,https://hl7.org/fhir/us/core/STU7/general-guidance.html#across-platform-searches,"US Core servers [MAY resolve absolute URLs, but] are not required to resolve absolute URLs external to their environment.",MAY,Server,false,,,"",""
|
|
1049
|
+
hl7.fhir.us.core_7.0.0,205,https://hl7.org/fhir/us/core/STU7/general-guidance.html#limiting-the-number-of-search-results,Servers can [MAY] choose to return the results in a series of pages to manage the number of search results returned.,MAY,Server,false,,,"",""
|
|
1050
|
+
hl7.fhir.us.core_7.0.0,206,"https://hl7.org/fhir/us/core/STU7/clinical-notes.html#clinical-notes, https://hl7.org/fhir/us/core/STU7/clinical-notes.html#support-requirements","Servers SHALL support, at minimum, these … ""Common Clinical Notes"":
|
|
1051
|
+
[Consultation Note (11488-4)](https://loinc.org/11488-4.html)",SHALL,Server,false,,,2.3.53,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v400_clinical_notes_guidance
|
|
1052
|
+
hl7.fhir.us.core_7.0.0,207,"https://hl7.org/fhir/us/core/STU7/clinical-notes.html#clinical-notes, https://hl7.org/fhir/us/core/STU7/clinical-notes.html#support-requirements","Servers SHALL support, at minimum, these … ""Common Clinical Notes"":
|
|
1053
|
+
[Discharge Summary (18842-5)](https://loinc.org/18842-5.html)",SHALL,Server,false,,,2.3.53,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v400_clinical_notes_guidance
|
|
1054
|
+
hl7.fhir.us.core_7.0.0,208,"https://hl7.org/fhir/us/core/STU7/clinical-notes.html#clinical-notes, https://hl7.org/fhir/us/core/STU7/clinical-notes.html#support-requirements","Servers SHALL support, at minimum, these … ""Common Clinical Notes"":
|
|
1055
|
+
[History & Physical Note (34117-2)](https://loinc.org/34117-2.html)",SHALL,Server,false,,,2.3.53,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v400_clinical_notes_guidance
|
|
1056
|
+
hl7.fhir.us.core_7.0.0,209,"https://hl7.org/fhir/us/core/STU7/clinical-notes.html#clinical-notes, https://hl7.org/fhir/us/core/STU7/clinical-notes.html#support-requirements","Servers SHALL support, at minimum, these … ""Common Clinical Notes"":
|
|
1057
|
+
[Procedures Note (28570-0)](https://loinc.org/28570-0.html)",SHALL,Server,false,,,2.3.53,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v400_clinical_notes_guidance
|
|
1058
|
+
hl7.fhir.us.core_7.0.0,210,"https://hl7.org/fhir/us/core/STU7/clinical-notes.html#clinical-notes, https://hl7.org/fhir/us/core/STU7/clinical-notes.html#support-requirements","Servers SHALL support, at minimum, these … ""Common Clinical Notes"":
|
|
1059
|
+
[Progress Note (11506-3)](https://loinc.org/11506-3.html)",SHALL,Server,false,,,2.3.53,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v400_clinical_notes_guidance
|
|
1060
|
+
hl7.fhir.us.core_7.0.0,211,"https://hl7.org/fhir/us/core/STU7/clinical-notes.html#clinical-notes, https://hl7.org/fhir/us/core/STU7/clinical-notes.html#support-requirements","Servers SHALL support, at minimum, these … ""Common Clinical Notes"":
|
|
1061
|
+
[Imaging Narrative (18748-4)](https://loinc.org/18748-4.html)",SHALL,Server,false,,,2.3.53,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v400_clinical_notes_guidance
|
|
1062
|
+
hl7.fhir.us.core_7.0.0,212,"https://hl7.org/fhir/us/core/STU7/clinical-notes.html#clinical-notes, https://hl7.org/fhir/us/core/STU7/clinical-notes.html#support-requirements","Servers SHALL support, at minimum, these … ""Common Clinical Notes"":
|
|
1063
|
+
[Laboratory Report Narrative (11502-2)](https://loinc.org/11502-2.html)",SHALL,Server,false,,,2.3.53,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v400_clinical_notes_guidance
|
|
1064
|
+
hl7.fhir.us.core_7.0.0,213,"https://hl7.org/fhir/us/core/STU7/clinical-notes.html#clinical-notes, https://hl7.org/fhir/us/core/STU7/clinical-notes.html#support-requirements","Servers SHALL support, at minimum, these … ""Common Clinical Notes"":
|
|
1065
|
+
[Pathology Report Narrative (11526-1)](https://loinc.org/11526-1.html)",SHALL,Server,false,,,2.3.53,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v400_clinical_notes_guidance
|
|
1066
|
+
hl7.fhir.us.core_7.0.0,214,"https://hl7.org/fhir/us/core/STU7/clinical-notes.html#clinical-notes, https://hl7.org/fhir/us/core/STU7/clinical-notes.html#support-requirements","Servers SHALL support, at minimum, these … DiagnosticReport categories:
|
|
1067
|
+
[Cardiology (LP29708-2)](https://loinc.org/LP29708-2)",SHALL,Server,false,,,2.3.53,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v400_clinical_notes_guidance
|
|
1068
|
+
hl7.fhir.us.core_7.0.0,215,"https://hl7.org/fhir/us/core/STU7/clinical-notes.html#clinical-notes, https://hl7.org/fhir/us/core/STU7/clinical-notes.html#support-requirements","Servers SHALL support, at minimum, these … DiagnosticReport categories:
|
|
1069
|
+
[Pathology (LP7839-6)](https://loinc.org/LP7839-6)",SHALL,Server,false,,,2.3.53,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v400_clinical_notes_guidance
|
|
1070
|
+
hl7.fhir.us.core_7.0.0,216,"https://hl7.org/fhir/us/core/STU7/clinical-notes.html#clinical-notes, https://hl7.org/fhir/us/core/STU7/clinical-notes.html#support-requirements","Servers SHALL support, at minimum, these … DiagnosticReport categories:
|
|
1071
|
+
[Radiology (LP29684-5)](https://loinc.org/LP29684-5)",SHALL,Server,false,,,2.3.53,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v400_clinical_notes_guidance
|
|
1072
|
+
hl7.fhir.us.core_7.0.0,217,https://hl7.org/fhir/us/core/STU7/clinical-notes.html#clinical-notes,"systems are encouraged to support other common notes types, such as:
|
|
1073
|
+
[Referral Note (57133-1)](https://loinc.org/57133-1.html)",SHOULD,Server,false,,,"",""
|
|
1074
|
+
hl7.fhir.us.core_7.0.0,218,https://hl7.org/fhir/us/core/STU7/clinical-notes.html#clinical-notes,"systems are encouraged to support other common notes types, such as:
|
|
1075
|
+
[Surgical Operation Note (11504-8)](https://loinc.org/11504-8.html)",SHOULD,Server,false,,,"",""
|
|
1076
|
+
hl7.fhir.us.core_7.0.0,219,https://hl7.org/fhir/us/core/STU7/clinical-notes.html#clinical-notes,"systems are encouraged to support other common notes types, such as:
|
|
1077
|
+
[Nurse Note (34746-8)](https://loinc.org/34746-8.html)",SHOULD,Server,false,,,"",""
|
|
1078
|
+
hl7.fhir.us.core_7.0.0,220,https://hl7.org/fhir/us/core/STU7/clinical-notes.html#fhir-resources-to-exchange-clinical-notes,"To enable consistent access to scanned DiagnosticReport clinical reports, the FHIR Server SHALL expose these overlapping scanned or narrative-only reports through both DiagnosticReport and DocumentReference by representing the same attachment URL [as] DocumentReference.content.attachment.url [and]
|
|
1079
|
+
DiagnosticReport.presentedForm.url",SHALL,Server,false,,,2.3.53,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v400_clinical_notes_guidance
|
|
1080
|
+
hl7.fhir.us.core_7.0.0,221,https://hl7.org/fhir/us/core/STU7/clinical-notes.html#fhir-resources-to-exchange-clinical-notes,"when DiagnosticReport.presentedForm.url references a Scan (PDF), that Attachment SHALL also be accessible through DocumentReference.content.attachment.url",SHALL,Server,false,,,2.3.53,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v400_clinical_notes_guidance
|
|
1081
|
+
hl7.fhir.us.core_7.0.0,222,https://hl7.org/fhir/us/core/STU7/clinical-notes.html#support-requirements,Systems [servers] may extend their capabilities [around types of clinical notes] to the complete US Core DocumentReference Type Value Set.,MAY,Server,false,,,"",""
|
|
1082
|
+
hl7.fhir.us.core_7.0.0,223,https://hl7.org/fhir/us/core/STU7/clinical-notes.html#support-requirements,This guide requires [server] systems to implement the [US Core DocumentReference Profile](https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-documentreference.html),SHALL,Server,false,,,2.3.53,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v400_clinical_notes_guidance
|
|
1083
|
+
hl7.fhir.us.core_7.0.0,224,https://hl7.org/fhir/us/core/STU7/clinical-notes.html#support-requirements,This guide requires [server] systems to implement the [US Core DiagnosticReport Profile for Report and Note exchange](https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-diagnosticreport-note.html),SHALL,Server,false,,,2.3.53,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v400_clinical_notes_guidance
|
|
1084
|
+
hl7.fhir.us.core_7.0.0,225,https://hl7.org/fhir/us/core/STU7/clinical-notes.html#support-requirements,Systems [servers] may support other [DiagnosticReport] categories as well.,MAY,Server,false,,,"",""
|
|
1085
|
+
hl7.fhir.us.core_7.0.0,227,https://hl7.org/fhir/us/core/STU7/clinical-notes.html#support-requirements,The following SHOULD be exposed via DiagnosticReport: Imaging Narrative,SHOULD,Server,false,,,"",""
|
|
1086
|
+
hl7.fhir.us.core_7.0.0,228,https://hl7.org/fhir/us/core/STU7/clinical-notes.html#support-requirements,The following SHOULD be exposed via DiagnosticReport: Laboratory Report Narrative,SHOULD,Server,false,,,"",""
|
|
1087
|
+
hl7.fhir.us.core_7.0.0,229,https://hl7.org/fhir/us/core/STU7/clinical-notes.html#support-requirements,The following SHOULD be exposed via DiagnosticReport: Pathology Report Narrative,SHOULD,Server,false,,,"",""
|
|
1088
|
+
hl7.fhir.us.core_7.0.0,230,https://hl7.org/fhir/us/core/STU7/clinical-notes.html#support-requirements,The following SHOULD be exposed via DiagnosticReport: Procedure Note,SHOULD,Server,false,,,"",""
|
|
1089
|
+
hl7.fhir.us.core_7.0.0,231,https://hl7.org/fhir/us/core/STU7/clinical-notes.html#support-requirements,Servers that support DiagnosticReport will include the clinical note narrative content in DiagnosticReport.presentedForm,SHALL,Server,false,,,2.3.53,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v400_clinical_notes_guidance
|
|
1090
|
+
hl7.fhir.us.core_7.0.0,233,https://hl7.org/fhir/us/core/STU7/clinical-notes.html#support-requirements,FHIR server claiming support to this guide SHOULD support the $expand operation [[operation link](http://hl7.org/fhir/R4/valueset-operation-expand.html) to provide information to clients requesting information on the note and report types the server supports],SHOULD,Server,false,,,"",""
|
|
1091
|
+
hl7.fhir.us.core_7.0.0,234,https://hl7.org/fhir/us/core/STU7/clinical-notes.html#support-requirements,"[If servers support the [$expand] (http://hl7.org/fhir/R4/valueset-operation-expand.html) operation for discovering note and report types, then servers SHALL support] the #expand operation as follows:
|
|
1092
|
+
GET [base]/ValueSet/$expand?context=http://hl7.org/fhir/us/core/StructureDefinition/us-core-diagnosticreport-note#DiagnosticReport.category&contextDirection=outgoing for DiagnosticReport report category discovery [for read operations]",SHALL,Server,true,,,"",""
|
|
1093
|
+
hl7.fhir.us.core_7.0.0,235,https://hl7.org/fhir/us/core/STU7/clinical-notes.html#support-requirements,"[If servers support the [$expand] (http://hl7.org/fhir/R4/valueset-operation-expand.html) operation for discovering note and report types, then servers SHALL support] the #expand operation as follows:
|
|
1094
|
+
GET [base]/ValueSet/$expand?context=http://hl7.org/fhir/us/core/StructureDefinition/us-core-diagnosticreport-note#DiagnosticReport.category&contextDirection=incoming for DiagnosticReport report category discovery [for write operations]",SHALL,Server,true,,,"",""
|
|
1095
|
+
hl7.fhir.us.core_7.0.0,236,https://hl7.org/fhir/us/core/STU7/clinical-notes.html#support-requirements,"[If servers support the [$expand] (http://hl7.org/fhir/R4/valueset-operation-expand.html) operation for discovering note and report types, then servers SHALL support] the #expand operation as follows:
|
|
1096
|
+
GET [base]/ValueSet/$expand?context=http://hl7.org/fhir/us/core/StructureDefinition/us-core-diagnosticreport-note#DiagnosticReport.code&contextDirection=outgoing for DiagnosticReport report type discovery [for read operations]",SHALL,Server,true,,,"",""
|
|
1097
|
+
hl7.fhir.us.core_7.0.0,237,https://hl7.org/fhir/us/core/STU7/clinical-notes.html#support-requirements,"[If servers support the [$expand] (http://hl7.org/fhir/R4/valueset-operation-expand.html) operation for discovering note and report types, then servers SHALL support] the #expand operation as follows:
|
|
1098
|
+
GET [base]/ValueSet/$expand?context=http://hl7.org/fhir/us/core/StructureDefinition/us-core-diagnosticreport-note#DiagnosticReport.code&contextDirection=incoming for DiagnosticReport report type discovery [for write operations]",SHALL,Server,true,,,"",""
|
|
1099
|
+
hl7.fhir.us.core_7.0.0,238,https://hl7.org/fhir/us/core/STU7/clinical-notes.html#support-requirements,"[If servers support the [$expand] (http://hl7.org/fhir/R4/valueset-operation-expand.html) operation for discovering note and report types, then servers SHALL support] the #expand operation as follows:
|
|
1100
|
+
GET [base]/ValueSet/$expand?context=http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference#DocumentReference.category&contextDirection=outgoing for DocumentReference note category discovery [for read operations]",SHALL,Server,true,,,"",""
|
|
1101
|
+
hl7.fhir.us.core_7.0.0,239,https://hl7.org/fhir/us/core/STU7/clinical-notes.html#support-requirements,"[If servers support the [$expand] (http://hl7.org/fhir/R4/valueset-operation-expand.html) operation for discovering note and report types, then servers SHALL support] the #expand operation as follows:
|
|
1102
|
+
GET [base]/ValueSet/$expand?context=http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference#DocumentReference.category&contextDirection=incoming for DocumentReference note category discovery [for write operations]",SHALL,Server,true,,,"",""
|
|
1103
|
+
hl7.fhir.us.core_7.0.0,240,https://hl7.org/fhir/us/core/STU7/clinical-notes.html#support-requirements,"[If servers support the [$expand] (http://hl7.org/fhir/R4/valueset-operation-expand.html) operation for discovering note and report types, then servers SHALL support] the #expand operation as follows:
|
|
1104
|
+
GET [base]/ValueSet/$expand?context=http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference#DocumentReference.type&contextDirection=outgoing for DocumentReference note type discovery [for read operations]",SHALL,Server,true,,,"",""
|
|
1105
|
+
hl7.fhir.us.core_7.0.0,241,https://hl7.org/fhir/us/core/STU7/clinical-notes.html#support-requirements,"[If servers support the [$expand] (http://hl7.org/fhir/R4/valueset-operation-expand.html) operation for discovering note and report types, then servers SHALL support] the #expand operation as follows:
|
|
1106
|
+
GET [base]/ValueSet/$expand?context=http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference#DocumentReference.type&contextDirection=incoming for DocumentReference note type discovery [for write operations]",SHALL,Server,true,,,"",""
|
|
1107
|
+
hl7.fhir.us.core_7.0.0,242,https://hl7.org/fhir/us/core/STU7/clinical-notes.html#discovering-server-read-and-write-formats,"[If servers support the [$expand] (http://hl7.org/fhir/R4/valueset-operation-expand.html) operation then] the note and report types for a particular server [SHOULD be] discovered by invoking the #expand operation as follows:
|
|
1108
|
+
GET [base]/ValueSet/$expand?context=http://hl7.org/fhir/us/core/StructureDefinition/us-core-diagnosticreport-note#DiagnosticReport.presentedForm.contentType&contextDirection=outgoing for DiagnosticReport report content type discovery [for read operations]",SHOULD,Server,true,,,"",""
|
|
1109
|
+
hl7.fhir.us.core_7.0.0,243,https://hl7.org/fhir/us/core/STU7/clinical-notes.html#discovering-server-read-and-write-formats,"[If servers support the [$expand] (http://hl7.org/fhir/R4/valueset-operation-expand.html) operation then] the note and report types for a particular server [SHOULD be] discovered by invoking the #expand operation as follows:
|
|
1110
|
+
GET [base]/ValueSet/$expand?context=http://hl7.org/fhir/us/core/StructureDefinition/us-core-diagnosticreport-note#DiagnosticReport.presentedForm.contentType&contextDirection=incoming for DiagnosticReport report content type discovery [for write operations]",SHOULD,Server,true,,,"",""
|
|
1111
|
+
hl7.fhir.us.core_7.0.0,244,https://hl7.org/fhir/us/core/STU7/clinical-notes.html#discovering-server-read-and-write-formats,"[If servers support the [$expand] (http://hl7.org/fhir/R4/valueset-operation-expand.html) operation then] the note and report types for a particular server [SHOULD be] discovered by invoking the #expand operation as follows:
|
|
1112
|
+
GET [base]/ValueSet/$expand?context=http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference#DocumentReference.content.attachment.contentType&contextDirection=outgoing for DocumentReference note content type discovery [for read operations]",SHOULD,Server,true,,,"",""
|
|
1113
|
+
hl7.fhir.us.core_7.0.0,245,https://hl7.org/fhir/us/core/STU7/clinical-notes.html#discovering-server-read-and-write-formats,"[If servers support the [$expand] (http://hl7.org/fhir/R4/valueset-operation-expand.html) operation then] the note and report types for a particular server [SHOULD be] discovered by invoking the #expand operation as follows:
|
|
1114
|
+
GET [base]/ValueSet/$expand?context=http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference#DocumentReference.content.attachment.contentType&contextDirection=incoming for DocumentReference note content type discovery [for write operations]",SHOULD,Server,true,,,"",""
|
|
1115
|
+
hl7.fhir.us.core_7.0.0,246,https://hl7.org/fhir/us/core/STU7/medication-list.html#background-on-the-fhir-medications-resources,"[The [MedicationAdministration](http://hl7.org/fhir/R4/medicationadministration.html) and [MedicationStatement](http://hl7.org/fhir/R4/medicationstatement.html)] medication resources are not profiled by US Core, and systems that support US Core are permitted to use them",MAY,Server,false,,,"",""
|
|
1116
|
+
hl7.fhir.us.core_7.0.0,247,https://hl7.org/fhir/us/core/STU7/medication-list.html#options-for-representing-medication,"When using a code [to represent a medication][, the code SHALL follow the [extensible](http://hl7.org/fhir/R4/terminologies.html#extensible) binding rules to [Medication Clinical Drug (RxNorm)](https://vsac.nlm.nih.gov/valueset/2.16.840.1.113762.1.4.1010.4/expansion) - i.e., unless RxNorm does not cover the concept, the RxNorm code SHALL be used.",SHALL,Server,true,,,"",""
|
|
1117
|
+
hl7.fhir.us.core_7.0.0,248,https://hl7.org/fhir/us/core/STU7/medication-list.html#options-for-representing-medication,USCDI recommends the [National Drug Codes (NDC)](https://www.fda.gov/drugs/drug-approvals-and-databases/national-drug-code-directory) as an optional medication terminology. They can be supplied as an additional coding element [when representing a medication],MAY,Server,false,,,"",""
|
|
1118
|
+
hl7.fhir.us.core_7.0.0,249,https://hl7.org/fhir/us/core/STU7/medication-list.html#options-for-representing-medication,"When referencing the Medication resource, the resource may be included in the returned bundle, as an external resource, or as a [contained](http://hl7.org/fhir/R4/references.html#contained) resource if it can’t stand alone. … The server application MAY choose any combination of these methods",MAY,Server,true,,,"",""
|
|
1119
|
+
hl7.fhir.us.core_7.0.0,250,https://hl7.org/fhir/us/core/STU7/medication-list.html#options-for-representing-medication,"if an external reference to Medication is used, the server SHALL support the [_include](http://hl7.org/fhir/R4/search.html#include) parameter for searching this element",SHALL,Server,true,,,"2.3.17.01, 2.3.18.01, 2.3.18.04","crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_dispense-us_core_v700_medication_dispense_patient_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_patient_intent_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_patient_intent_status_search_test"
|
|
1120
|
+
hl7.fhir.us.core_7.0.0,252,https://hl7.org/fhir/us/core/STU7/medication-list.html#fetching-all-medications-active-medications-and-all-medications-for-an-encounter,"Requirements to access “all medications” [all historical, active, and future prescribed medications and medications entered in error and whose status is unknown.] and “all active medications” [all medications with an active status. Active medications do not include past, future, unknown status, and entered-in-error medications.] for a patient:
|
|
1121
|
+
A MedicationRequest resource query:
|
|
1122
|
+
Shall be all that is required
|
|
1123
|
+
-See the General Guidance section for additional rules and expectations for [Servers Requiring Status](https://hl7.org/fhir/us/core/STU7/general-requirements.html#search-for-servers-requiring-status).",SHALL,Server,false,,,"",""
|
|
1124
|
+
hl7.fhir.us.core_7.0.0,253,https://hl7.org/fhir/us/core/STU7/medication-list.html#fetching-all-medications-active-medications-and-all-medications-for-an-encounter,"Requirements to access “all medications” [all historical, active, and future prescribed medications and medications entered in error and whose status is unknown.] and “all active medications” [all medications with an active status. Active medications do not include past, future, unknown status, and entered-in-error medications.] for a patient:
|
|
1125
|
+
A MedicationRequest resource query:
|
|
1126
|
+
SHALL include all MedicationRequest resources with an intent = “order” representing authorized medication orders directly derived from the system’s orders.",SHALL,Server,false,,,"",""
|
|
1127
|
+
hl7.fhir.us.core_7.0.0,254,https://hl7.org/fhir/us/core/STU7/medication-list.html#fetching-all-medications-active-medications-and-all-medications-for-an-encounter,"Requirements to access “all medications” [all historical, active, and future prescribed medications and medications entered in error and whose status is unknown.] and “all active medications” [all medications with an active status. Active medications do not include past, future, unknown status, and entered-in-error medications.] for a patient:
|
|
1128
|
+
A MedicationRequest resource query:
|
|
1129
|
+
SHALL include all prescribed and “self-prescribed” MedicationRequest resources with an intent = “plan” representing reported medications",SHALL,Server,false,,,"",""
|
|
1130
|
+
hl7.fhir.us.core_7.0.0,256,https://hl7.org/fhir/us/core/STU7/medication-list.html#fetching-all-medications-active-medications-and-all-medications-for-an-encounter,"Requirements to access “all medications” [all historical, active, and future prescribed medications and medications entered in error and whose status is unknown.] and “all active medications” [all medications with an active status. Active medications do not include past, future, unknown status, and entered-in-error medications.] for a patient:
|
|
1131
|
+
A MedicationRequest resource query:
|
|
1132
|
+
[when communicating reported medications] ... prescribed and “self-prescribed” MedicationRequest resources with an intent = “plan” ... [servers]
|
|
1133
|
+
SHALL use the reported[x] element to indicate that the MedicationRequest record was captured as a secondary “reported” record rather than an original primary source-of-truth record.",SHALL,Server,false,,,"",""
|
|
1134
|
+
hl7.fhir.us.core_7.0.0,257,https://hl7.org/fhir/us/core/STU7/medication-list.html#fetching-all-medications-active-medications-and-all-medications-for-an-encounter,"Requirements to access “all medications” [all historical, active, and future prescribed medications and medications entered in error and whose status is unknown.] and “all active medications” [all medications with an active status. Active medications do not include past, future, unknown status, and entered-in-error medications.] for a patient:
|
|
1135
|
+
A MedicationRequest resource query:
|
|
1136
|
+
[when communicating reported medications] ... prescribed and “self-prescribed” MedicationRequest resources with an intent = “plan” [servers] ... may also indicate the source of the report.",MAY,Server,false,,,"",""
|
|
1137
|
+
hl7.fhir.us.core_7.0.0,258,https://hl7.org/fhir/us/core/STU7/medication-list.html#fetching-all-medications-active-medications-and-all-medications-for-an-encounter,"Requirements to access “all medications” [all historical, active, and future prescribed medications and medications entered in error and whose status is unknown.] and “all active medications” [all medications with an active status. Active medications do not include past, future, unknown status, and entered-in-error medications.] for a patient:
|
|
1138
|
+
A MedicationRequest resource query:
|
|
1139
|
+
[when communicating reported medications] ... “self-prescribed” MedicationRequest resources with an intent = “plan” [servers] ...
|
|
1140
|
+
SHOULD use the requester element to indicate the Patient or RelatedPerson as the prescriber.",SHOULD,Server,false,,,"",""
|
|
1141
|
+
hl7.fhir.us.core_7.0.0,259,https://hl7.org/fhir/us/core/STU7/medication-list.html#fetching-all-medications-active-medications-and-all-medications-for-an-encounter,"Requirements to access “all medications” [all historical, active, and future prescribed medications and medications entered in error and whose status is unknown.] and “all active medications” [all medications with an active status. Active medications do not include past, future, unknown status, and entered-in-error medications.] for a patient:
|
|
1142
|
+
A MedicationRequest resource query:
|
|
1143
|
+
The encounter element SHOULD be supported [by the server].",SHOULD,Server,false,,,"",""
|
|
1144
|
+
hl7.fhir.us.core_7.0.0,260,https://hl7.org/fhir/us/core/STU7/medication-list.html#fetching-all-medications-active-medications-and-all-medications-for-an-encounter,"Requirements to access “all medications” [all historical, active, and future prescribed medications and medications entered in error and whose status is unknown.] and “all active medications” [all medications with an active status. Active medications do not include past, future, unknown status, and entered-in-error medications.] for a patient:
|
|
1145
|
+
A MedicationRequest resource query:
|
|
1146
|
+
[Servers supporting the encounter element when] Searching by [encounter] context (i.e., for a given inpatient encounter) will return all medications ordered during that encounter, including medications administered in hospital and prescribed or discharge medications intended to be taken at home.",SHOULD,Server,true,,,"",""
|
|
1147
|
+
hl7.fhir.us.core_7.0.0,263,https://hl7.org/fhir/us/core/STU7/medication-list.html#de-duplication-of-data,"To provide a list of a patient’s medications, it may be necessary to “de-duplicate” them. The de-duplication activity MAY be supplied by the server",MAY,Server,false,,,"",""
|
|
1148
|
+
hl7.fhir.us.core_7.0.0,266,https://hl7.org/fhir/us/core/STU7/basic-provenance.html#hie-transformation,The HIE must maintain the original data source.,SHALL,Server,false,,,"",""
|
|
1149
|
+
hl7.fhir.us.core_7.0.0,267,https://hl7.org/fhir/us/core/STU7/basic-provenance.html#hie-transformation,"An agent.type=”assembler”, agent.type=”transmitter”, or other agents from [Provenance Agent Type](https://hl7.org/fhir/us/core/STU7/ValueSet-us-core-provenance-participant-type.html) value set MAY also be included.",MAY,Server,false,,,"",""
|
|
1150
|
+
hl7.fhir.us.core_7.0.0,268,https://hl7.org/fhir/us/core/STU7/screening-and-assessments.html#introduction,"implementers [of US Core's framework of Screening and Assessments] SHOULD consider more constrained, domain-specific profiles derived from the US Core Profiles to meet the needs of their respective use cases.",SHOULD,Server,false,,,"",""
|
|
1151
|
+
hl7.fhir.us.core_7.0.0,269,https://hl7.org/fhir/us/core/STU7/screening-and-assessments.html#clinical-judgments,"Every server that supports the USDCI Data Class “Health Status/Assessments”:
|
|
1152
|
+
|
|
1153
|
+
SHALL support representing clinical judgments using [US Core Condition Problems and Health Concerns Profile](https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-condition-problems-health-concerns.html) or [US Core Simple Observation Profile](https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-simple-observation.html).",SHALL,Server,false,,,"",""
|
|
1154
|
+
hl7.fhir.us.core_7.0.0,270,https://hl7.org/fhir/us/core/STU7/screening-and-assessments.html#clinical-judgments,"Every server that supports the USDCI Data Class “Health Status/Assessments”:
|
|
1155
|
+
...
|
|
1156
|
+
When a Simple Observation or Problem or Health Concern is recorded based on a structured screening and assessment ..., the US Core Simple Observation Profile [[Profile link](https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-simple-observation.html)] SHOULD reference it using the derivedFrom element",SHOULD,Server,false,,,"",""
|
|
1157
|
+
hl7.fhir.us.core_7.0.0,271,https://hl7.org/fhir/us/core/STU7/screening-and-assessments.html#clinical-judgments,"Every server that supports the USDCI Data Class “Health Status/Assessments”:
|
|
1158
|
+
...
|
|
1159
|
+
When a Simple Observation or Problem or Health Concern is recorded based on a structured screening and assessment ..., the US Core Condition Problems and Health Concerns Profile [[Profile link](https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-condition-problems-health-concerns.html) should reference it] using the evidence.detail element",SHOULD,Server,false,,,"",""
|
|
1160
|
+
hl7.fhir.us.core_7.0.0,272,https://hl7.org/fhir/us/core/STU7/screening-and-assessments.html#choosing-between-questionnaireresponse-and-observation,"For API developers using US Core, it’s important to understand when to use the QuestionnaireResponse versus Observation to represent structured assessments and surveys. Here are some guidelines to help choose the appropriate profile:
|
|
1161
|
+
Observations represent specific point-in-time facts that need to be searched, trended, the subject of statistical analysis, and directly referenced in support of other actions ... anything that meets one of the preceding criteria must be surfaced as an Observation.",SHOULD,Server,false,,,"",""
|
|
1162
|
+
hl7.fhir.us.core_7.0.0,273,https://hl7.org/fhir/us/core/STU7/screening-and-assessments.html#choosing-between-questionnaireresponse-and-observation,"For API developers using US Core, it’s important to understand when to use the QuestionnaireResponse versus Observation to represent structured assessments and surveys. Here are some guidelines to help choose the appropriate profile:
|
|
1163
|
+
Observations represent specific point-in-time facts that need to be searched, trended, the subject of statistical analysis, and directly referenced in support of other actions ... anything that meets one of the preceding criteria must be surfaced as an Observation.",SHALL,Server,false,,,"",""
|
|
1164
|
+
hl7.fhir.us.core_7.0.0,274,https://hl7.org/fhir/us/core/STU7/screening-and-assessments.html#choosing-between-questionnaireresponse-and-observation,"For FHIR implementers, it is important to note that QuestionnaireResponse [which represent the source-of-truth of a completed form, shall] references a specific version of a form, whether it was represented as a FHIR Questionnaire or not. This reference provides the context of exactly what options were available, what logic was used to calculate answers, and what questions were asked.",SHALL,Server,false,,,"",""
|
|
1165
|
+
hl7.fhir.us.core_7.0.0,276,https://hl7.org/fhir/us/core/STU7/screening-and-assessments.html#category-codes,"The USCDI Health Assessments Data Elements category codes ... SHOULD be used when generating resources that conform to these profiles:
|
|
1166
|
+
|
|
1167
|
+
US Core Simple Observation Profile",SHOULD,Server,false,,,"",""
|
|
1168
|
+
hl7.fhir.us.core_7.0.0,277,https://hl7.org/fhir/us/core/STU7/screening-and-assessments.html#category-codes,"The USCDI Health Assessments Data Elements category codes ... SHOULD be used when generating resources that conform to these profiles:
|
|
1169
|
+
|
|
1170
|
+
US Core Observation Screening Assessment Profile",SHOULD,Server,false,,,"",""
|
|
1171
|
+
hl7.fhir.us.core_7.0.0,278,https://hl7.org/fhir/us/core/STU7/screening-and-assessments.html#category-codes,"The USCDI Health Assessments Data Elements category codes ... SHOULD be used when generating resources that conform to these profiles:
|
|
1172
|
+
US Core Condition Problems and Health Concerns Profile",SHOULD,Server,false,,,"",""
|
|
1173
|
+
hl7.fhir.us.core_7.0.0,279,https://hl7.org/fhir/us/core/STU7/screening-and-assessments.html#category-codes,"The USCDI Health Assessments Data Elements category codes ... SHOULD be used when generating resources that conform to these profiles:
|
|
1174
|
+
|
|
1175
|
+
US Core ServiceRequest Profile",SHOULD,Server,false,,,"",""
|
|
1176
|
+
hl7.fhir.us.core_7.0.0,280,https://hl7.org/fhir/us/core/STU7/screening-and-assessments.html#uscdi-health-assessments-data-element-value-sets,Implementers SHOULD treat these [USCDI Health Status Assessments Data Element] value sets as having an [extensible](http://hl7.org/fhir/R4/terminologies.html#extensible) binding.,SHOULD,Server,false,,,"",""
|
|
1177
|
+
hl7.fhir.us.core_7.0.0,281,https://hl7.org/fhir/us/core/STU7/screening-and-assessments.html#uscdi-health-assessments-data-element-value-sets,"when recording SDOH data [with] US Core Profiles, servers SHOULD use … [Social Determinants of Health Conditions Value Set](https://vsac.nlm.nih.gov/valueset/2.16.840.1.113762.1.4.1196.788/expansion), [Social Determinants of Health Procedures Value Set](https://vsac.nlm.nih.gov/valueset/2.16.840.1.113762.1.4.1196.789/expansion), [Social Determinants of Health Goals Value Set](https://vsac.nlm.nih.gov/valueset/2.16.840.1.113762.1.4.1247.71/expansion), [and] [Social Determinants of Health Service Requests Value Set](https://vsac.nlm.nih.gov/valueset/2.16.840.1.113762.1.4.1196.790/expansion)",SHOULD,Server,false,,,"",""
|
|
1178
|
+
hl7.fhir.us.core_7.0.0,282,https://hl7.org/fhir/us/core/STU7/changes-between-versions.html#endpoint-discoverability,A server may support Version DSTU2 and Argonaut Data Query,MAY,Server,false,,,"",""
|
|
1179
|
+
hl7.fhir.us.core_7.0.0,283,https://hl7.org/fhir/us/core/STU7/changes-between-versions.html#endpoint-discoverability,A server may support … FHIR R4 and US Core ver 3.1.1+,MAY,Server,false,,,"",""
|
|
1180
|
+
hl7.fhir.us.core_7.0.0,284,https://hl7.org/fhir/us/core/STU7/changes-between-versions.html#endpoint-discoverability,A server may support [both] [(]Version DSTU2 and Argonaut Data Query[) and (] FHIR R4 and US Core ver 3.1.1+[)],MAY,Server,false,,,"",""
|
|
1181
|
+
hl7.fhir.us.core_7.0.0,285,https://hl7.org/fhir/us/core/STU7/changes-between-versions.html#endpoint-discoverability,"A server may make explicit which version of Argo/US Core is on their FHIR endpoint (e.g., “DSTU2” or “R4” path component or separate files based on version).",MAY,Server,false,,,"",""
|
|
1182
|
+
hl7.fhir.us.core_7.0.0,287,https://hl7.org/fhir/us/core/STU7/changes-between-versions.html#no-guarantee-that-resource-ids-are-preserved,Servers SHOULD maintain a stable common identifier for a resource across [FHIR] versions.,SHOULD,Server,false,,,"",""
|
|
1183
|
+
hl7.fhir.us.core_7.0.0,288,https://hl7.org/fhir/us/core/STU7/changes-between-versions.html#expectation-that-fhir-dstu2-data-is-preserved-in-fhir-r4,"In an upgraded R4 endpoint, any data in FHIR DSTU2 SHOULD be in FHIR R4.",SHOULD,Server,false,,,"",""
|
|
1184
|
+
hl7.fhir.us.core_7.0.0,289,https://hl7.org/fhir/us/core/STU7/changes-between-versions.html#expectation-that-fhir-dstu2-data-is-preserved-in-fhir-r5,The FHIR RESTful resource types supported in a DSTU2 implementation SHOULD be supported in a R4 implementation,SHOULD,Server,true,,,"",""
|
|
1185
|
+
hl7.fhir.us.core_7.0.0,290,https://hl7.org/fhir/us/core/STU7/changes-between-versions.html#expectation-that-fhir-dstu2-data-is-preserved-in-fhir-r7,"The FHIR RESTful resource types supported in a DSTU2 implementation SHOULD be supported in a R4 implementation [with the] exception [of]
|
|
1186
|
+
MedicationStatement may be deprecated, and the data SHOULD be mapped to MedicationRequest.",SHOULD,Server,false,,,"",""
|
|
1187
|
+
hl7.fhir.us.core_7.0.0,291,https://hl7.org/fhir/us/core/STU7/changes-between-versions.html#expectation-that-fhir-dstu2-data-is-preserved-in-fhir-r8,"The FHIR RESTful resource types supported in a DSTU2 implementation SHOULD be supported in a R4 implementation [with the] exception [of]
|
|
1188
|
+
Care teams as represented by CarePlan in DSTU2 SHOULD be replaced by and the data mapped to CareTeam in R4",SHOULD,Server,false,,,"",""
|
|
1189
|
+
hl7.fhir.us.core_7.0.0,295,https://hl7.org/fhir/us/core/STU7/changes-between-versions.html#expectation-that-fhir-dstu2-data-is-preserved-in-fhir-r9,Servers SHOULD make available the same information in DSTU2 and R4 where the more recent standard allows.,SHOULD,Server,true,,,"",""
|
|
1190
|
+
hl7.fhir.us.core_7.0.0,296,https://hl7.org/fhir/us/core/STU7/changes-between-versions.html#expectation-that-fhir-dstu2-data-is-preserved-in-fhir-r10,"Servers SHOULD make available the same information in DSTU2 and R4 where the more recent standard allows … [with the] exception [of]
|
|
1191
|
+
MedicationStatement data [should be] mapped to MedicationRequest",SHOULD,Server,false,,,"",""
|
|
1192
|
+
hl7.fhir.us.core_7.0.0,297,https://hl7.org/fhir/us/core/STU7/changes-between-versions.html#expectation-that-fhir-dstu2-data-is-preserved-in-fhir-r11,"Servers SHOULD make available the same information in DSTU2 and R4 where the more recent standard allows … [with the] exception [of]
|
|
1193
|
+
care teams, as represented by CarePlan, SHOULD be mapped to CareTeam in R4",SHOULD,Server,false,,,"",""
|
|
1194
|
+
hl7.fhir.us.core_7.0.0,298,https://hl7.org/fhir/us/core/STU7/changes-between-versions.html#expectation-that-fhir-dstu2-data-is-preserved-in-fhir-r12,"Data SHOULD be maintained between [FHIR] versions (i.e., not be degraded).",SHOULD,Server,false,,,"",""
|
|
1195
|
+
hl7.fhir.us.core_7.0.0,300,https://hl7.org/fhir/us/core/STU7/changes-between-versions.html#authorization-across-versions,Separate authorization is required [between different versions of FHIR],SHALL,Server,false,,,"",""
|
|
1196
|
+
hl7.fhir.us.core_7.0.0,302,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-allergyintolerance.html#mandatory-and-must-support-data-elements,[The clinical status of the allergy] SHALL be present if verification status is not “entered-in-error”,SHALL,Server,false,,,"",""
|
|
1197
|
+
hl7.fhir.us.core_7.0.0,303,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-allergyintolerance.html#mandatory-and-must-support-data-elements,[The clinical status of the allergy] SHALL NOT be present if verification Status is “entered-in-error”,SHALL NOT,Server,false,,,"",""
|
|
1198
|
+
hl7.fhir.us.core_7.0.0,305,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-allergyintolerance.html#mandatory-and-must-support-data-elements,"Profile Specific Implementation Guidance:
|
|
1199
|
+
|
|
1200
|
+
No Known Allergies may be represented using the US Core-AllergyIntolerance profile",MAY,Server,true,,,"",""
|
|
1201
|
+
hl7.fhir.us.core_7.0.0,306,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-allergyintolerance.html#mandatory-and-must-support-data-elements,[When used No Known Allergies is documented the system Shall use an] appropriate negation code in AllergyIntolerence.code,SHALL,Server,true,,,"",""
|
|
1202
|
+
hl7.fhir.us.core_7.0.0,307,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-allergyintolerance.html#mandatory-and-must-support-data-elements,[When used No Known Allergies is documented the system Shall use an] verification status in AllergyIntolerance.verificationStatus,SHALL,Server,true,,,"",""
|
|
1203
|
+
hl7.fhir.us.core_7.0.0,308,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-allergyintolerance.html#mandatory-and-must-support-data-elements,"If a patient has not been asked about their allergies, this would be represented as:
|
|
1204
|
+
AllergyIntolerance.code = “1631000175102” (Patient not asked (contextual qualifier) (qualifier value))
|
|
1205
|
+
AllergyIntolerance.verificationStatus = “unconfirmed” or empty (in other words, then element omitted)",SHOULD,Server,true,,,"",""
|
|
1206
|
+
hl7.fhir.us.core_7.0.0,309,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-allergyintolerance.html#mandatory-and-must-support-data-elements,"If a patient has been asked, but has indicated they have no known allergies, this would be represented as:
|
|
1207
|
+
AllergyIntolerance.code = “716186003” (No known allergy (situation))
|
|
1208
|
+
AllergyIntolerance.verificationStatus = “confirmed”",SHOULD,Server,true,,,"",""
|
|
1209
|
+
hl7.fhir.us.core_7.0.0,310,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-careplan.html#mandatory-and-must-support-data-elements,Considerations for systems aligning with [HL7 Consolidated (C-CDA)](http://www.hl7.org/implement/standards/product_brief.cfm?product_id=492) Care Plan requirements: US Core Goal SHOULD be present in CarePlan.goal,SHOULD,Server,false,,,"",""
|
|
1210
|
+
hl7.fhir.us.core_7.0.0,311,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-careplan.html#mandatory-and-must-support-data-elements,Considerations for systems aligning with [HL7 Consolidated (C-CDA)] (http://www.hl7.org/implement/standards/product_brief.cfm?product_id=492) Care Plan requirements: ... US Core Condition SHOULD be present in CarePlan.addresses,SHOULD,Server,false,,,"",""
|
|
1211
|
+
hl7.fhir.us.core_7.0.0,312,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-careplan.html#mandatory-and-must-support-data-elements,Considerations for systems aligning with [HL7 Consolidated (C-CDA)] (http://www.hl7.org/implement/standards/product_brief.cfm?product_id=492) Care Plan requirements: Assessment and Plan MAY be included as narrative in CarePlan.text,MAY,Server,false,,,"",""
|
|
1212
|
+
hl7.fhir.us.core_7.0.0,313,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-careteam.html#mandatory-and-must-support-data-elements,"Although both US Core Practitioner Profile and US Core PractitionerRole are Must Support, ... server system[s conforming to the US Core CareTeam profile are] ... not required to support references to both, but SHALL support at least one of them",SHALL,Server,true,,,2.3.6.08,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_team-us_core_v700_care_team_reference_resolution_test
|
|
1213
|
+
hl7.fhir.us.core_7.0.0,317,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-careteam.html#mandatory-and-must-support-data-elements,"[When conforming to the US Core CareTeam profile] Because the US Core PractitionerRole Profile supplies the provider’s location and contact information and a reference to the Practitioner, server systems [conforming to the US Core CareTeam profile] SHOULD reference it instead of the US Core Practitioner Profile [when conforming to the US Core CareTeam profile] .",SHOULD,Server,false,,,"",""
|
|
1214
|
+
hl7.fhir.us.core_7.0.0,318,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-careteam.html#mandatory-and-must-support-data-elements,Servers [conforming to the US Core CareTeam profile] that support only US Core Practitioner Profile and do not support the US Core PractitionerRole Profile SHALL provide implementation-specific guidance on how to access a provider’s location ... information using only the Practitioner resource.,SHALL,Server,false,,,"",""
|
|
1215
|
+
hl7.fhir.us.core_7.0.0,319,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-careteam.html#mandatory-and-must-support-data-elements,Servers [conforming to the US Core CareTeam profile] that support only US Core Practitioner Profile and do not support the US Core PractitionerRole Profile SHALL provide implementation-specific guidance on how to access a provider’s ... contact information using only the Practitioner resource.,SHALL,Server,false,,,"",""
|
|
1216
|
+
hl7.fhir.us.core_7.0.0,320,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-condition-encounter-diagnosis.html#mandatory-and-must-support-data-elements,"For Problems and Health Concerns [records, systems SHOULD] use the [US Core Condition Problems and Health Concerns Profile](https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-condition-problems-health-concerns.html).",SHOULD,Server,true,,,"",""
|
|
1217
|
+
hl7.fhir.us.core_7.0.0,321,"https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-condition-encounter-diagnosis.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-condition-problems-health-concerns.html#mandatory-and-must-support-data-elements",[Newly created Encounter Diagnosis records SHALL have a] Condition.code … [from the] [“current”](https://hl7.org/fhir/R5/terminologies.html#binding) … [value set] binding.,SHALL,Server,true,,,"",""
|
|
1218
|
+
hl7.fhir.us.core_7.0.0,322,"https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-condition-encounter-diagnosis.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-condition-problems-health-concerns.html#mandatory-and-must-support-data-elements",[Historical Encounter Diagnosis records MAY have a] Condition.code … [from the] base “preferred” … [value set] binding.,MAY,Server,true,,,"",""
|
|
1219
|
+
hl7.fhir.us.core_7.0.0,323,"https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-condition-encounter-diagnosis.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-condition-problems-health-concerns.html#mandatory-and-must-support-data-elements",USCDI’s applicable vocabulary standards for Encounter Diagnosis are SNOMED CT and ICD-10-CM. The US Core Condition Codes only supports ICD-9-CM for historical purposes. ICD-10-CM is available and SHOULD be used as the primary code for current encounter diagnoses.,SHOULD,Server,false,,,"",""
|
|
1220
|
+
hl7.fhir.us.core_7.0.0,324,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-condition-encounter-diagnosis.html#mandatory-and-must-support-data-elements,[A US Core Condition Encounter Diagnosis] encounter SHOULD always be referenced in Condition.encounter.,SHOULD,Server,false,,,"",""
|
|
1221
|
+
hl7.fhir.us.core_7.0.0,325,"https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-condition-encounter-diagnosis.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-condition-problems-health-concerns.html#mandatory-and-must-support-data-elements",A [US Core Condition Encounter Diagnosis] server SHALL support Condition.recordedDate,SHALL,Server,false,,,2.3.7.15,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_must_support_test
|
|
1222
|
+
hl7.fhir.us.core_7.0.0,326,"https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-condition-encounter-diagnosis.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-condition-problems-health-concerns.html#mandatory-and-must-support-data-elements",A server SHALL support at least one of [assertedDate Extension](http://hl7.org/fhir/R4/extension-condition-asserteddate.html) and Condition.onsetDateTime.,SHALL,Server,true,,,2.3.7.15,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_must_support_test
|
|
1223
|
+
hl7.fhir.us.core_7.0.0,330,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-condition-problems-health-concerns.html#mandatory-and-must-support-data-elements,"For Encounter Diagnosis [records, systems SHOULD] use the [US Core Condition Encounter Diagnosis Profile](https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-condition-encounter-diagnosis.html).",SHOULD,Server,true,,,"",""
|
|
1224
|
+
hl7.fhir.us.core_7.0.0,331,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-condition-problems-health-concerns.html#mandatory-and-must-support-data-elements,"If Condition.category contains a Problem List item category (problem-list-item), Condition.clinicalStatus SHOULD be present.",SHOULD,Server,true,,,"",""
|
|
1225
|
+
hl7.fhir.us.core_7.0.0,332,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-condition-problems-health-concerns.html#mandatory-and-must-support-data-elements,Updates to Meta.lastUpdated SHOULD reflect: New problems and health concerns [This will change to a SHALL requirement in US Core v8.0.0],SHOULD,Server,false,,,"",""
|
|
1226
|
+
hl7.fhir.us.core_7.0.0,333,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-condition-problems-health-concerns.html#mandatory-and-must-support-data-elements,"Updates to Meta.lastUpdated SHOULD reflect:
|
|
1227
|
+
Changes in the clinical status or verifications status of problems or health concerns [This will change to a SHALL requirement in US Core v8.0.0]",SHOULD,Server,false,,,"",""
|
|
1228
|
+
hl7.fhir.us.core_7.0.0,334,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-coverage.html#mandatory-and-must-support-data-elements,A coverage.type of “81” (Self-pay) MAY be used to imply that the patient has no coverage or that an individual or organization other than an insurer is taking responsibility for payment for a portion of the health care costs.,MAY,Server,false,,,"",""
|
|
1229
|
+
hl7.fhir.us.core_7.0.0,335,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-coverage.html#mandatory-and-must-support-data-elements,Implementers should refer to the [PHDSC Payer Type Committee User’s Guide](https://www.nahdo.org/sites/default/files/2020-12/SourceofPaymentTypologyUsersGuideVersion9.2December2020.pdf) for the Source of Payment Typology when selecting codes.,SHOULD,Server,false,,,"",""
|
|
1230
|
+
hl7.fhir.us.core_7.0.0,336,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-coverage.html#mandatory-and-must-support-data-elements,"To differentiate Medicare Parts A, B, C, and D systems can use the following codes [when sending Coverage.type]: [For] Part A and B [use] 121 (Medicare Fee For Service)",SHOULD,Server,false,,,"",""
|
|
1231
|
+
hl7.fhir.us.core_7.0.0,337,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-coverage.html#mandatory-and-must-support-data-elements,"To differentiate Medicare Parts A, B, C, and D systems can use the following codes: [For] Part C (Medicare Advantage Plan) [use] 111 (Medicare HMO), 112 (Medicare PPO), 113 (Medicare POS)",SHOULD,Server,false,,,"",""
|
|
1232
|
+
hl7.fhir.us.core_7.0.0,338,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-coverage.html#mandatory-and-must-support-data-elements,"To differentiate Medicare Parts A, B, C, and D systems can use the following codes: [For] Part D [use] 122 (Medicare Drug Benefit)",SHOULD,Server,false,,,"",""
|
|
1233
|
+
hl7.fhir.us.core_7.0.0,339,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-coverage.html#mandatory-and-must-support-data-elements,"If Insurers issue unique member IDs for dependents, then the memberId Coverage.identifier should be used [with the unique dependent ID] instead of Coverage.dependent to uniquely refer to the dependent with respect to their insurance.",SHOULD,Server,true,,,"",""
|
|
1234
|
+
hl7.fhir.us.core_7.0.0,340,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-implantable-device.html#mandatory-and-must-support-data-elements,"For non-implantable devices (for example, software or crutches), use the base FHIR Device resource or other use case-specific Device profiles.",SHOULD,Server,false,,,"",""
|
|
1235
|
+
hl7.fhir.us.core_7.0.0,341,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-implantable-device.html#mandatory-and-must-support-data-elements,Implementers are encouraged to use the FDA Global UDI Database (GUDID) and associated APIs to parse and validate the [unique device ID] UDI,SHOULD,Server,false,,,"",""
|
|
1236
|
+
hl7.fhir.us.core_7.0.0,342,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-implantable-device.html#mandatory-and-must-support-data-elements,Implantable medical devices with UDI information SHALL represent the UDI code in Device.udiCarrier.carrierHRF,SHALL,Server,false,,,"",""
|
|
1237
|
+
hl7.fhir.us.core_7.0.0,343,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-implantable-device.html#mandatory-and-must-support-data-elements,UDI-PI elements present [in Device.udiCarrier.carrierHRF] SHALL be represented in the corresponding US Core Implantable Device Profile elements,SHALL,Server,false,,,"",""
|
|
1238
|
+
hl7.fhir.us.core_7.0.0,344,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-implantable-device.html#mandatory-and-must-support-data-elements,"If UDI is not present and the manufacturer … is available, … [it] SHOULD be included to support historical reports of implantable medical devices [where] manufacturer [is sent in] Device.manufacturer",SHOULD,Server,true,,,"",""
|
|
1239
|
+
hl7.fhir.us.core_7.0.0,345,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-implantable-device.html#mandatory-and-must-support-data-elements,"If UDI is not present and the ... model number information is available, … [it] SHOULD be included to support historical reports of implantable medical devices [where] model [is sent in] Device.model",SHOULD,Server,true,,,"",""
|
|
1240
|
+
hl7.fhir.us.core_7.0.0,346,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-implantable-device.html#mandatory-and-must-support-data-elements,Servers SHOULD support query by Device.type to allow clients to request the patient’s devices by a specific type.,SHOULD,Server,false,,,"",""
|
|
1241
|
+
hl7.fhir.us.core_7.0.0,347,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-implantable-device.html#mandatory-and-must-support-data-elements,"Records of implanted devices MAY be queried against UDI data, including: UDI HRF string (udi-carrier)",MAY,Server,false,,,"",""
|
|
1242
|
+
hl7.fhir.us.core_7.0.0,348,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-implantable-device.html#mandatory-and-must-support-data-elements,"Records of implanted devices MAY be queried against UDI data, including:UDI Device Identifier (udi-di)",MAY,Server,false,,,"",""
|
|
1243
|
+
hl7.fhir.us.core_7.0.0,349,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-implantable-device.html#mandatory-and-must-support-data-elements,"Records of implanted devices MAY be queried against UDI data, including: Manufacturer (manufacturer)",MAY,Server,false,,,"",""
|
|
1244
|
+
hl7.fhir.us.core_7.0.0,350,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-implantable-device.html#mandatory-and-must-support-data-elements,"Records of implanted devices MAY be queried against UDI data, including: Model number (model)",MAY,Server,false,,,"",""
|
|
1245
|
+
hl7.fhir.us.core_7.0.0,351,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-implantable-device.html#mandatory-and-must-support-data-elements,Implementers MAY also adopt custom SearchParameters for searching by lot numbers,MAY,Server,false,,,"",""
|
|
1246
|
+
hl7.fhir.us.core_7.0.0,352,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-implantable-device.html#mandatory-and-must-support-data-elements,Implementers MAY also adopt custom SearchParameters for searching by serial number,MAY,Server,false,,,"",""
|
|
1247
|
+
hl7.fhir.us.core_7.0.0,353,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-implantable-device.html#mandatory-and-must-support-data-elements,Implementers MAY also adopt custom SearchParameters for searching by expiration date,MAY,Server,false,,,"",""
|
|
1248
|
+
hl7.fhir.us.core_7.0.0,354,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-implantable-device.html#mandatory-and-must-support-data-elements,Implementers MAY also adopt custom SearchParameters for searching by manufacture date,MAY,Server,false,,,"",""
|
|
1249
|
+
hl7.fhir.us.core_7.0.0,355,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-implantable-device.html#mandatory-and-must-support-data-elements,Implementers MAY also adopt custom SearchParameters for searching by distinct identifier,MAY,Server,false,,,"",""
|
|
1250
|
+
hl7.fhir.us.core_7.0.0,356,"https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-diagnosticreport-lab.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-diagnosticreport-note.html#mandatory-and-must-support-data-elements","The diagnostically relevant time (known as the “effective time” and typically the time of specimen collection) … SHALL be present if status [of the diagnostic report] is ‘partial’, ‘preliminary’, ‘final’, ‘amended’, ‘corrected’, or ‘appended’.",SHALL,Server,true,,,2.3.12.10,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_validation_test
|
|
1251
|
+
hl7.fhir.us.core_7.0.0,357,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-diagnosticreport-lab.html#mandatory-and-must-support-data-elements,"When the report was released … SHALL be present if status [of the diagnostic report] is ‘partial’, ‘preliminary’, ‘final’, ‘amended’, ‘corrected’, or ‘appended’.",SHALL,Server,true,,,2.3.12.10,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_validation_test
|
|
1252
|
+
hl7.fhir.us.core_7.0.0,358,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-diagnosticreport-lab.html#mandatory-and-must-support-data-elements,Updates to Meta.lastUpdated SHOULD reflect New laboratory reports. [Note: US Core authors will] upgrade the Meta.lastUpdated guidance [from] (SHOULD) to ... (SHALL) in the next version of US Core,SHOULD,Server,false,,,"",""
|
|
1253
|
+
hl7.fhir.us.core_7.0.0,359,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-diagnosticreport-lab.html#mandatory-and-must-support-data-elements,"Updates to Meta.lastUpdated SHOULD reflect changes in the status of laboratory reports, including events that trigger the same status (e.g., amended → amended). [Note: US Core authors will] upgrade the Meta.lastUpdated guidance [from] (SHOULD) to ... (SHALL) in the next version of US Core",SHOULD,Server,false,,,"",""
|
|
1254
|
+
hl7.fhir.us.core_7.0.0,360,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-diagnosticreport-note.html#mandatory-and-must-support-data-elements,"The DiagnosticReport.category binding Must Support, at a minimum, the US Core DiagnosticReport Category Codes of Cardiology, Radiology, and Pathology",SHALL,Server,false,,,2.3.11.11,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_must_support_test
|
|
1255
|
+
hl7.fhir.us.core_7.0.0,361,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-diagnosticreport-note.html#mandatory-and-must-support-data-elements,Other [diagnostic report] categories may be supported [when using US Core DiagnosticReport Profile for Report and Note Exchange],MAY,Server,false,,,"",""
|
|
1256
|
+
hl7.fhir.us.core_7.0.0,362,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-diagnosticreport-note.html#mandatory-and-must-support-data-elements,[L]inkages between specific LOINC codes and the LP-type codes may be used as guidance [for a server's categorization of diagnostic reports],MAY,Server,false,,,"",""
|
|
1257
|
+
hl7.fhir.us.core_7.0.0,364,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-diagnosticreport-note.html#mandatory-and-must-support-data-elements,"For Diagnostic Imaging Reports systems SHOULD support using the subset of LOINC codes defined in CONF-DIR-19 in HL7 Implementation Guide for CDA Release 2: Imaging Integration, Levels 1, 2, and 3, Basic Imaging Reports in CDA and DICOM Diagnostic Imaging Reports (DIR) - Universal Realm, Release 1.0.",SHOULD,Server,true,,,"",""
|
|
1258
|
+
hl7.fhir.us.core_7.0.0,365,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-documentreference.html#mandatory-and-must-support-data-elements,"The DocumentReference.type binding Must Support, at a minimum, the 5 [Common Clinical Notes](https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-documentreference.html#mandatory-and-must-support-data-elements)",SHALL,Server,false,,,"",""
|
|
1259
|
+
hl7.fhir.us.core_7.0.0,366,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-documentreference.html#mandatory-and-must-support-data-elements,The DocumentReference.type binding may extend to the whole [US Core DocumentReference Type Value Set](https://hl7.org/fhir/us/core/STU7/ValueSet-us-core-documentreference-type.html),MAY,Server,false,,,"",""
|
|
1260
|
+
hl7.fhir.us.core_7.0.0,367,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-documentreference.html#mandatory-and-must-support-data-elements,[DocumentReference.type may also use] other category schemes such as the LOINC-based [Document Class Value Set](http://hl7.org/fhir/R4/valueset-document-classcodes.html) and [IHE XDSclassCode](https://wiki.ihe.net/index.php/XDS_classCode_Metadata_Coding_System),MAY,Server,false,,,"",""
|
|
1261
|
+
hl7.fhir.us.core_7.0.0,368,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-documentreference.html#mandatory-and-must-support-data-elements,"Although both [DocumentReference.attachment.url and DocumentReference.attachment.data] are marked as Must Support, the server system is not required to support an address and inline base64 encoded data, but SHALL support at least one of these elements.",SHALL,Server,true,,,2.3.13.11,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_must_support_test
|
|
1262
|
+
hl7.fhir.us.core_7.0.0,371,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-documentreference.html#mandatory-and-must-support-data-elements,"If the [content.url] endpoint is outside the FHIR base URL, it SHOULD NOT require additional authorization to access.",SHOULD NOT,Server,false,,,"",""
|
|
1263
|
+
hl7.fhir.us.core_7.0.0,372,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-documentreference.html#mandatory-and-must-support-data-elements,"If there are multiple DocumentReference.content element repetitions, these SHALL all represent the same document in different formats or attachment metadata",SHALL,Server,false,,,"",""
|
|
1264
|
+
hl7.fhir.us.core_7.0.0,373,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-documentreference.html#mandatory-and-must-support-data-elements,The [documentReference.content] element SHALL NOT contain different versions of the same content.,SHALL NOT,Server,false,,,"",""
|
|
1265
|
+
hl7.fhir.us.core_7.0.0,374,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-documentreference.html#mandatory-and-must-support-data-elements,The organization responsible for the DocumentReference SHALL be present either in DocumentReference.custodian or accessible in the Provenance resource targeting the DocumentReference using Provenance.agent.who or Provenance.agent.onBehalfOf,SHALL,Server,false,,,"",""
|
|
1266
|
+
hl7.fhir.us.core_7.0.0,375,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-encounter.html#mandatory-and-must-support-data-elements,"Although ... marked as Must Support, servers are not required to support both [an Encounter.reasonCode or a reference with Encounter.reasonReference], but they SHALL support at least one of these elements.",SHALL,Server,true,,,2.3.14.14,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_must_support_test
|
|
1267
|
+
hl7.fhir.us.core_7.0.0,378,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-encounter.html#mandatory-and-must-support-data-elements,"If Encounter.reasonReference references an Observation, it SHOULD conform to a US Core Observation [profile applicable to the observation being made]",SHOULD,Server,true,,,"",""
|
|
1268
|
+
hl7.fhir.us.core_7.0.0,379,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-encounter.html#mandatory-and-must-support-data-elements,"Although … marked as Must Support, servers are not required to support both Encounter.location.location and Encounter.serviceProvider, but they SHALL support at least one of these elements.",SHALL,Server,true,,,2.3.14.14,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_must_support_test
|
|
1269
|
+
hl7.fhir.us.core_7.0.0,382,"https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-encounter.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-location.html#mandatory-and-must-support-data-elements","If the event facility/location differs from the Encounter.location, systems SHOULD reference it directly",SHALL,Server,true,,,"",""
|
|
1270
|
+
hl7.fhir.us.core_7.0.0,383,"https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-encounter.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-location.html#mandatory-and-must-support-data-elements","If the event facility/location differs from the Encounter.location, … systems SHALL use the location element for all resources where the element is available.",SHALL,Server,true,,,"",""
|
|
1271
|
+
hl7.fhir.us.core_7.0.0,384,"https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-encounter.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-location.html#mandatory-and-must-support-data-elements",If the event facility/location differs from the Encounter.location … systems MAY use the standard [Event Location Extension](http://hl7.org/fhir/StructureDefinition/event-location) for US Core DiagnosticReport Profile for Laboratory Results Reporting and US Core Observation Clinical Result Profile.,MAY,Server,true,,,"",""
|
|
1272
|
+
hl7.fhir.us.core_7.0.0,385,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-encounter.html#mandatory-and-must-support-data-elements,Updates to Meta.lastUpdated SHOULD reflect New encounters/visits [Meta.lastUpdated guidance will change from a (SHOULD) to requirements (SHALL) in the next version of US Core],SHOULD,Server,false,,,"",""
|
|
1273
|
+
hl7.fhir.us.core_7.0.0,386,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-encounter.html#mandatory-and-must-support-data-elements,"Updates to Meta.lastUpdated SHOULD reflect changes in the status of encounters, including events that trigger the same status (e.g., in-progress → in-progress). [Meta.lastUpdated guidance will change from a (SHOULD) to requirements (SHALL) in the next version of US Core]",SHOULD,Server,false,,,"",""
|
|
1274
|
+
hl7.fhir.us.core_7.0.0,387,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-goal.html#mandatory-and-must-support-data-elements,"Although both Goal.startDate and Goal.target.dueDate are marked as Must Support, the server system is not required to support both, but SHALL support at least one of these elements.",SHALL,Server,true,,,2.3.15.08,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_goal-us_core_v700_goal_must_support_test
|
|
1275
|
+
hl7.fhir.us.core_7.0.0,390,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-immunization.html#mandatory-and-must-support-data-elements,[Servers shall] use the status code: not-done to represent that an immunization was not given.,SHALL,Server,false,,,"",""
|
|
1276
|
+
hl7.fhir.us.core_7.0.0,391,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-immunization.html#mandatory-and-must-support-data-elements,[For organization participating in the ONC Health IT Certification program] [CVX vaccine codes](https://www2a.cdc.gov/vaccines/iis/iisstandards/ndc_crosswalk.asp) are required,SHALL,Server,true,,,2.3.16.06,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_immunization-us_core_v700_immunization_validation_test
|
|
1277
|
+
hl7.fhir.us.core_7.0.0,392,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-immunization.html#mandatory-and-must-support-data-elements,[NDC vaccine codes](http://www2a.cdc.gov/vaccines/iis/iisstandards/ndc_crosswalk.asp) SHOULD be supported as a translation [of [CVX Vaccine Codes](https://www2a.cdc.gov/vaccines/iis/iisstandards/ndc_crosswalk.asp)],SHOULD,Server,false,,,"",""
|
|
1278
|
+
hl7.fhir.us.core_7.0.0,393,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-immunization.html#mandatory-and-must-support-data-elements,The preferred code system identifier … is [http://hl7.org/fhir/sid/cvx](http://hl7.org/fhir/sid/cvx) for CVX [vaccine codes],SHOULD,Server,false,,,"",""
|
|
1279
|
+
hl7.fhir.us.core_7.0.0,394,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-immunization.html#mandatory-and-must-support-data-elements,The preferred code system identifier … is [http://hl7.org/fhir/sid/ndc](http://hl7.org/fhir/sid/ndc) for NDC vaccine codes],SHOULD,Server,false,,,"",""
|
|
1280
|
+
hl7.fhir.us.core_7.0.0,395,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-location.html#mandatory-and-must-support-data-elements,Systems SHOULD follow the [Project US@ Technical Specification for Patient Addresses Final Version 1.0](https://asapnet.org/wp-content/uploads/2022/03/Project_US_FINAL_Technical_Specification_Version_1.0.pdf) as the standard style guide for Location.address.line,SHOULD,Server,false,,,"",""
|
|
1281
|
+
hl7.fhir.us.core_7.0.0,396,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-location.html#mandatory-and-must-support-data-elements,Systems SHOULD follow the [Project US@ Technical Specification for Patient Addresses Final Version 1.0](https://asapnet.org/wp-content/uploads/2022/03/Project_US_FINAL_Technical_Specification_Version_1.0.pdf) as the standard style guide for Location.address.city,SHOULD,Server,false,,,"",""
|
|
1282
|
+
hl7.fhir.us.core_7.0.0,397,"https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-medicationdispense.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-medicationrequest.html#mandatory-and-must-support-data-elements","When using a code [to represent a medication for a medication dispense], RXNorm concepts are used.",SHALL,Server,true,,,"",""
|
|
1283
|
+
hl7.fhir.us.core_7.0.0,398,"https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-medicationdispense.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-medicationrequest.html#mandatory-and-must-support-data-elements","When using a code [to represent a medication for a medication dispense], [National Drug Codes (NDC)](https://www.fda.gov/drugs/drug-approvals-and-databases/national-drug-code-directory) can be supplied as an additional coding element.",MAY,Server,true,,,"",""
|
|
1284
|
+
hl7.fhir.us.core_7.0.0,399,"https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-medicationdispense.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-medicationrequest.html#mandatory-and-must-support-data-elements","When referencing a Medication resource in .medicationReference, the resource may be [contained](http://hl7.org/fhir/R4/references.html#contained)",MAY,Server,false,,,"",""
|
|
1285
|
+
hl7.fhir.us.core_7.0.0,400,"https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-medicationdispense.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-medicationrequest.html#mandatory-and-must-support-data-elements","When referencing a Medication resource in .medicationReference, the resource may be an external resource",MAY,Server,false,,,"",""
|
|
1286
|
+
hl7.fhir.us.core_7.0.0,401,"https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-medicationdispense.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-medicationrequest.html#mandatory-and-must-support-data-elements","The server systems are not required to support both a [medication] code and a reference [when sending medicationDispense], but SHALL support at least one of these methods",SHALL,Server,true,,,"",""
|
|
1287
|
+
hl7.fhir.us.core_7.0.0,402,"https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-medicationdispense.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-medicationrequest.html#mandatory-and-must-support-data-elements","If an external reference to a Medication resource is used, the server SHALL support the [_include](http://hl7.org/fhir/R4/search.html#include) parameter for searching this element.",SHALL,Server,true,,,"",""
|
|
1288
|
+
hl7.fhir.us.core_7.0.0,405,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-medicationrequest.html#mandatory-and-must-support-data-elements,"[For organization participating in the ONC Health IT Certification program servers SHALL support the [additional USCDI requirement](https://hl7.org/fhir/us/core/STU7/must-support.html#additional-uscdi-requirements):], The reason or indication for the prescription",SHALL,Server,true,,,2.3.18.09,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_must_support_test
|
|
1289
|
+
hl7.fhir.us.core_7.0.0,406,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-medicationrequest.html#mandatory-and-must-support-data-elements,[For organization participating in the ONC Health IT Certification program servers SHALL support the [additional USCDI requirement](https://hl7.org/fhir/us/core/STU7/must-support.html#additional-uscdi-requirements):] reported adherence to prescribed medication instructions,SHALL,Server,true,,,2.3.18.09,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_must_support_test
|
|
1290
|
+
hl7.fhir.us.core_7.0.0,407,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-medicationrequest.html#mandatory-and-must-support-data-elements,"When recording “self-prescribed” medication, requester SHOULD be used to indicate the Patient or RelatedPerson as the prescriber",SHOULD,Server,false,,,"",""
|
|
1291
|
+
hl7.fhir.us.core_7.0.0,408,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-medicationrequest.html#mandatory-and-must-support-data-elements,"Although [medicationRequest.reportedBoolean and MedicationRequest.reportedReference] are both marked as Must Support, the server system is not required to support both, but SHALL support at least one of these elements",SHALL,Server,true,,,2.3.18.09,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_must_support_test
|
|
1292
|
+
hl7.fhir.us.core_7.0.0,411,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-medicationrequest.html#mandatory-and-must-support-data-elements,"Although both MedicationRequest.reasonCode and MedicationRequest.reasonReference are marked as Additional USCDI Requirements [which are required for organizations participating in the ONC Health IT Certification program]. The certifying server system is not required to support both, but SHALL support at least one of these elements",SHALL,Server,true,,,2.3.18.09,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_must_support_test
|
|
1293
|
+
hl7.fhir.us.core_7.0.0,414,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-medicationrequest.html#mandatory-and-must-support-data-elements,"[For organizations participating in the ONC Health IT Certification program and supporting MedicationRequest.reasonReference,] servers SHALL support at least one target resource in MedicationRequest.reasonReference",SHALL,Server,true,,,2.3.18.07,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_validation_test
|
|
1294
|
+
hl7.fhir.us.core_7.0.0,416,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-medicationrequest.html#mandatory-and-must-support-data-elements,"[For organizations participating in the ONC Health IT Certification program,] the referenced resources SHOULD be a US Core Profile as documented in [Referencing US Core Profiles](https://hl7.org/fhir/us/core/STU7/general-guidance.html#referencing-us-core-profiles).",SHOULD,Server,true,,,"",""
|
|
1295
|
+
hl7.fhir.us.core_7.0.0,417,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-medicationrequest.html#mandatory-and-must-support-data-elements,Source EHR identifiers SHOULD be included to support deduplication across MedicationRequest resources.,SHOULD,Server,false,,,"",""
|
|
1296
|
+
hl7.fhir.us.core_7.0.0,418,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-medicationrequest.html#mandatory-and-must-support-data-elements,Servers SHALL follow the guidance on the Medication List page and return all active medications as MedicationRequest.,SHALL,Server,false,,,"",""
|
|
1297
|
+
hl7.fhir.us.core_7.0.0,419,"https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-average-blood-pressure.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-vital-signs.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-treatment-intervention-preference.html#mandatory-and-must-support-data-elements",The observations MAY have additional codes that translate or map to the Observation code or category codes [such as] … local system-specific codes [and] …more specific codes,MAY,Server,false,,,"",""
|
|
1298
|
+
hl7.fhir.us.core_7.0.0,420,"https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-average-blood-pressure.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-vital-signs.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-treatment-intervention-preference.html#mandatory-and-must-support-data-elements",[For an Observation a] code system value SHOULD be supplied for each additional code,SHOULD,Server,false,,,"",""
|
|
1299
|
+
hl7.fhir.us.core_7.0.0,421,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-average-blood-pressure.html#mandatory-and-must-support-data-elements,"Because the blood pressure values are communicated in the mandatory systolic and diastolic components [when using the US Core Average Blood Pressure Profile,] the Observation.value[x] element SHALL be omitted",SHALL,Server,true,,,2.3.37.09,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_average_blood_pressure-us_core_v700_average_blood_pressure_validation_test
|
|
1300
|
+
hl7.fhir.us.core_7.0.0,422,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-care-experience-preference.html#mandatory-and-must-support-data-elements,The context or precondition of a patient’s [care experience] preference SHOULD be supplied in the Observation.valueString or in an extension,SHOULD,Server,true,,,"",""
|
|
1301
|
+
hl7.fhir.us.core_7.0.0,423,https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-clinical-result.html#mandatory-and-must-support-data-elements,Servers SHOULD use the base FHIR [Observation Category Codes] (http://hl7.org/fhir/R4/valueset-observation-category.html) [in Observation.category],SHOULD,Server,true,,,"",""
|
|
1302
|
+
hl7.fhir.us.core_7.0.0,424,"https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-clinical-result.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-lab.html#mandatory-and-must-support-data-elements",Systems SHOULD support Observation.effectivePeriod to accurately represent measurements over time,SHOULD,Server,true,,,"",""
|
|
1303
|
+
hl7.fhir.us.core_7.0.0,425,"https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-clinical-result.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-lab.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-screening-assessment.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-lab.html#mandatory-and-must-support-data-elements","An Observation.component without a value, SHALL include a reason why the data is absent",SHALL,Server,true,,,"",""
|
|
1304
|
+
hl7.fhir.us.core_7.0.0,426,"https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-clinical-result.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-lab.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-screening-assessment.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-vital-signs.html#mandatory-and-must-support-data-elements",Systems that never provide a component observation without a component value … [MAY choose not] to support Observation.component.dataAbsentReason,MAY,Server,true,,,"",""
|
|
1305
|
+
hl7.fhir.us.core_7.0.0,427,"https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-clinical-result.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-lab.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-screening-assessment.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-vital-signs.html#mandatory-and-must-support-data-elements","An Observation without a value, SHALL include a reason why the data is absent",SHALL,Server,true,,,2.3.39.09,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_clinical_result-us_core_v700_observation_clinical_result_validation_test
|
|
1306
|
+
hl7.fhir.us.core_7.0.0,428,"https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-clinical-result.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-lab.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-screening-assessment.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-vital-signs.html#mandatory-and-must-support-data-elements",[For] an Observation without a value … [Systems MAY choose not to] include a reason why the data is absent … [if] there are component observations or … reporting panel observations using Observation.hasMember,MAY,Server,true,,,"",""
|
|
1307
|
+
hl7.fhir.us.core_7.0.0,429,"https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-clinical-result.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-lab.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-screening-assessment.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-vital-signs.html#mandatory-and-must-support-data-elements",Systems that never provide an observation without a value ... [MAY choose not] to support Observation.dataAbsentReason,MAY,Server,true,,,"",""
|
|
1308
|
+
hl7.fhir.us.core_7.0.0,430,https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-lab.html#mandatory-and-must-support-data-elements,[When sending US Core Laboratory Results Observation Profile] updates to Meta.lastUpdated SHOULD reflect new laboratory observations,SHOULD,Server,true,,,"",""
|
|
1309
|
+
hl7.fhir.us.core_7.0.0,431,https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-lab.html#mandatory-and-must-support-data-elements,"[When sending US Core Laboratory Results Observation Profile] updates to Meta.lastUpdated SHOULD reflect changes in the status of laboratory observations, including events that trigger the same status (e.g., amended → amended)",SHOULD,Server,true,,,"",""
|
|
1310
|
+
hl7.fhir.us.core_7.0.0,432,https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-occupation.html#mandatory-and-must-support-data-elements,"[When sending US Core Observation Occupation Profile] for … [a] current job, [servers SHALL] omit observation.effectivePeriod.end to indicate it is ongoing.",SHALL,Server,true,,,"",""
|
|
1311
|
+
hl7.fhir.us.core_7.0.0,433,https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-occupation.html#mandatory-and-must-support-data-elements,"When the industry is known, but the occupation is not, [servers SHALL] use the value “unknown” from the [DataAbsentReason Code System](http://hl7.org/fhir/R4/codesystem-data-absent-reason.html)",SHALL,Server,false,,,"",""
|
|
1312
|
+
hl7.fhir.us.core_7.0.0,434,https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-occupation.html#mandatory-and-must-support-data-elements,"when the occupation is known but the industry is not, [servers SHALL] omit the industry Observation.component",SHALL,Server,false,,,"",""
|
|
1313
|
+
hl7.fhir.us.core_7.0.0,435,https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-pregnancyintent.html#mandatory-and-must-support-data-elements,"To represent the patient’s pregnancy status, [servers SHALL] use the [US Core Observation Pregnancy Status Profile](https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-pregnancystatus.html).",SHALL,Server,false,,,"",""
|
|
1314
|
+
hl7.fhir.us.core_7.0.0,436,https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-pregnancystatus.html#mandatory-and-must-support-data-elements,"To represent the patient’s intent to become pregnant, [servers SHALL] use the [US Core Observation Pregnancy Intent Profile](https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-pregnancyintent.html).",SHALL,Server,false,,,"",""
|
|
1315
|
+
hl7.fhir.us.core_7.0.0,437,https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-screening-assessment.html#mandatory-and-must-support-data-elements,"[For] multi-question surveys or assessments Observation.code is an overarching assessment or screening code, and the Observation.value element SHOULD be empty",SHOULD,Server,true,,,"",""
|
|
1316
|
+
hl7.fhir.us.core_7.0.0,438,https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-screening-assessment.html#mandatory-and-must-support-data-elements,"A practitioner’s clinical observation or assertion about a patient’s health status, which is not a response to a screening or assessment question,SHOULD use the [US Core Simple Observation Profile](https://hl7.org/fhir/us/core/StructureDefinition-us-core-simple-observation.html) instead [of the US Core Observation Screening Assessment Profile]",SHOULD,Server,true,,,"",""
|
|
1317
|
+
hl7.fhir.us.core_7.0.0,439,https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-screening-assessment.html#mandatory-and-must-support-data-elements,the server system ... SHALL support [either] Reference(US Core Observation Profile) or Reference(US Core QuestionnaireResponse Profile) for Observation.derivedFrom,SHALL,Server,true,,,2.3.36.11,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_reference_resolution_test
|
|
1318
|
+
hl7.fhir.us.core_7.0.0,440,https://hl7.org/fhir/us/core/StructureDefinition-us-core-observation-sexual-orientation.html#mandatory-and-must-support-data-elements,"Additional codes that translate or map to the Observation code (e.g., local codes) are allowed [when using US Core Observation Sexual Orientation Profile]",MAY,Server,true,,,"",""
|
|
1319
|
+
hl7.fhir.us.core_7.0.0,441,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-simple-observation.html#mandatory-and-must-support-data-elements,Observations formally part of an assessment tool or survey SHOULD use the [US Core Observation Screening Assessment Profile](https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-observation-screening-assessment.html).,SHOULD,Server,false,,,"",""
|
|
1320
|
+
hl7.fhir.us.core_7.0.0,442,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-simple-observation.html#mandatory-and-must-support-data-elements,An assertion or determination derived from screening and assessment tools SHOULD reference them using Observation.derivedFrom,SHOULD,Server,false,,,"",""
|
|
1321
|
+
hl7.fhir.us.core_7.0.0,443,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-simple-observation.html#mandatory-and-must-support-data-elements,"When using `Observation.derivedFrom’ to reference an Observation, the referenced Observation SHOULD be a US Core Observation",SHOULD,Server,false,,,"",""
|
|
1322
|
+
hl7.fhir.us.core_7.0.0,444,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-simple-observation.html#mandatory-and-must-support-data-elements,"Although none of the Observation.derivedFrom [references are flagged as Must Support](https://hl7.org/fhir/us/core/STU7/must-support.html#must-support---resource-references), the server SHALL support at least one of them",SHALL,Server,true,,,"",""
|
|
1323
|
+
hl7.fhir.us.core_7.0.0,445,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-treatment-intervention-preference.html#mandatory-and-must-support-data-elements,[US Core] treatment intervention preferences expressed by a patient may be documented in narrative (text) form or the result of selecting from a list of options provided by the content creator/implementer.,MAY,Server,true,,,"",""
|
|
1324
|
+
hl7.fhir.us.core_7.0.0,446,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-treatment-intervention-preference.html#mandatory-and-must-support-data-elements,[When using US Core Treatment Intervention Preference Profile] the context or precondition of a patient’s preference SHOULD be supplied in the Observation.valueString ... or an extension,SHOULD,Server,true,,,"",""
|
|
1325
|
+
hl7.fhir.us.core_7.0.0,447,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-vital-signs.html#mandatory-and-must-support-data-elements,[US Core Vital Signs] observations MAY have [component](http://hl7.org/fhir/R4/observation.html#gr-comp) observations … [see] FHIR core specification [vital signs table](http://hl7.org/fhir/R4/observation-vitalsigns.html#vitals-table) for examples,MAY,Server,false,,,"",""
|
|
1326
|
+
hl7.fhir.us.core_7.0.0,448,"https://hl7.org/fhir/us/core/STU7/StructureDefinition-pediatric-bmi-for-age.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU7/StructureDefinition-pediatric-weight-for-height.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU7/StructureDefinition-head-occipital-frontal-circumference-percentile.html#mandatory-and-must-support-data-elements",Information about the growth chart tables used to determine percentiles SHOULD be supplied in Observation.note.text,SHOULD,Server,false,,,"",""
|
|
1327
|
+
hl7.fhir.us.core_7.0.0,449,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-blood-pressure.html#mandatory-and-must-support-data-elements,"[In the US Core Blood Pressure Profile] because the blood pressure values are communicated in the mandatory systolic and diastolic components[,] the Observation.value[x] element SHOULD be omitted",SHOULD,Server,true,,,"",""
|
|
1328
|
+
hl7.fhir.us.core_7.0.0,450,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-blood-pressure.html#mandatory-and-must-support-data-elements,"[In the US Core Blood Pressure Profile] because the blood pressure values are communicated in the mandatory systolic and diastolic components[,] an Observation without a systolic or diastolic result value, SHALL include a reason why the data is absent in Observation.component.dataAbsentReason",SHALL,Server,true,,,"",""
|
|
1329
|
+
hl7.fhir.us.core_7.0.0,451,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-blood-pressure.html#mandatory-and-must-support-data-elements,"[In the US Core Blood Pressure Profile] because the blood pressure values are communicated in the mandatory systolic and diastolic components[,] All server systems - including those that never provide a component observation without a value - SHALL support Observation.component.dataAbsentReason for the components.",SHALL,Server,true,,,"",""
|
|
1330
|
+
hl7.fhir.us.core_7.0.0,452,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-pulse-oximetry.html#mandatory-and-must-support-data-elements,Inspired oxygen therapy may be represented with [component](http://hl7.org/fhir/R4/observation.html#gr-comp) observations when measured at the same time as the pulse oximetry measurements [in the US Core Pulse Oximetry profile],MAY,Server,true,,,"",""
|
|
1331
|
+
hl7.fhir.us.core_7.0.0,453,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-pulse-oximetry.html#mandatory-and-must-support-data-elements,"Many pulse oximetry readings are taken while the patient is breathing room air. The concept of “room air” (unmodified, ambient air) SHOULD be represented as an inhaled oxygen flow rate of 0 liters/min",SHOULD,Server,true,,,"",""
|
|
1332
|
+
hl7.fhir.us.core_7.0.0,454,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-pulse-oximetry.html#mandatory-and-must-support-data-elements,"A pulse oximetry reading without inspired oxygen component observations may imply that the measurement was performed while the patient was breathing room air or that the inspired oxygen reading was omitted. To remove this uncertainty, the inspired oxygen [component](http://hl7.org/fhir/R4/observation.html#gr-comp) observations SHOULD be used [when using the US Core Pulse Oximetry profile.]",SHOULD,Server,true,,,"",""
|
|
1333
|
+
hl7.fhir.us.core_7.0.0,455,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-organization.html#mandatory-and-must-support-data-elements,Systems SHALL support National Provider Identifier (NPI) for organizations,SHALL,Server,false,,,2.3.47.05,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_organization-us_core_v700_organization_must_support_test
|
|
1334
|
+
hl7.fhir.us.core_7.0.0,456,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-organization.html#mandatory-and-must-support-data-elements,Systems … SHOULD the National Association of Insurance Commissioners NAIC Company code (sometimes called “NAIC Number” or “cocode”) for payers.,SHOULD,Server,false,,,"",""
|
|
1335
|
+
hl7.fhir.us.core_7.0.0,457,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-organization.html#mandatory-and-must-support-data-elements,Systems … SHOULD support Clinical Laboratory Improvement Amendments (CLIA) for laboratories,SHOULD,Server,false,,,"",""
|
|
1336
|
+
hl7.fhir.us.core_7.0.0,458,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-organization.html#mandatory-and-must-support-data-elements,Systems SHOULD follow the [Project US@ Technical Specification for Patient Addresses Final Version 1.0](https://asapnet.org/wp-content/uploads/2022/03/Project_US_FINAL_Technical_Specification_Version_1.0.pdf) as the standard style guide for Organization.address.line and Organization.address.city,SHOULD,Server,false,,,"",""
|
|
1337
|
+
hl7.fhir.us.core_7.0.0,459,"https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-patient.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-race.html#profile-specific-implementation-guidance",The Complex [Extension] for Race ... allow[s] for one or more codes of which must support at least one category code from OMB Race [category for the [US Core Race Extension] (https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-race.html)],SHALL,Server,true,,,"",""
|
|
1338
|
+
hl7.fhir.us.core_7.0.0,460,"https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-patient.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-ethnicity.html#profile-specific-implementation-guidance",The Complex [Extension] for ... Ethnicity allow[s] for one or more codes of which must support at least one category code from OMB … Ethnicity [category for the [US Core Ethnicity Extension] (https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-ethnicity.html)],SHALL,Server,true,,,"",""
|
|
1339
|
+
hl7.fhir.us.core_7.0.0,461,"https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-patient.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-race.html#profile-specific-implementation-guidance",The Complex [Extension] for Race ... allow[s] for one or more codes of which MAY include additional detailed codes from CDC Race … codes [when using the [US Core Race Extension] (https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-race.html)],MAY,Server,true,,,"",""
|
|
1340
|
+
hl7.fhir.us.core_7.0.0,462,"https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-patient.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-ethnicity.html#profile-specific-implementation-guidance",The Complex [Extension] for Race ... allow[s] for one or more codes of which SHALL include a text description [of category codes when using the [US Core Race Extension] (https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-race.html)],MAY,Server,true,,,"",""
|
|
1341
|
+
hl7.fhir.us.core_7.0.0,463,"https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-patient.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-race.html#profile-specific-implementation-guidance",The Complex [Extension] for ... Ethnicity allow[s] for one or more codes of which MAY include additional detailed codes from CDC Race … codes [when using the [US Core Race Extension] (https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-race.html)],SHALL,Server,true,,,"",""
|
|
1342
|
+
hl7.fhir.us.core_7.0.0,464,"https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-patient.html#mandatory-and-must-support-data-elements, https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-ethnicity.html#profile-specific-implementation-guidance",The Complex [Extension] for ... Ethnicity allow[s] for one or more codes of which SHALL include a text description [of category codes when using the [US Core Ethnicity Extension] (https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-ethnicity.html)],SHALL,Server,true,,,"",""
|
|
1343
|
+
hl7.fhir.us.core_7.0.0,465,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-patient.html#mandatory-and-must-support-data-elements,"Although Patient.deceased[x] is marked as additional USCDI, certifying systems are not required to support both [boolean and dateTime data types], but SHALL support [at] least Patient.deceasedDateTime",SHALL,Server,,,,"",""
|
|
1344
|
+
hl7.fhir.us.core_7.0.0,466,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-patient.html#mandatory-and-must-support-data-elements,Previous name is represented by setting Patient.name.use to “old” or providing an end date in Patient.name.period or doing both,SHOULD,Server,true,,,"",""
|
|
1345
|
+
hl7.fhir.us.core_7.0.0,467,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-patient.html#mandatory-and-must-support-data-elements,Previous address is represented by setting Patient.address.use to “old” or providing an end date in Patient.address.period or doing both.,SHOULD,Server,true,,,"",""
|
|
1346
|
+
hl7.fhir.us.core_7.0.0,468,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-patient.html#mandatory-and-must-support-data-elements,Communication.preferred MAY designate a preferred language when multiple languages are represented,MAY,Server,false,,,"",""
|
|
1347
|
+
hl7.fhir.us.core_7.0.0,469,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-patient.html#mandatory-and-must-support-data-elements,"[Certifying systems](https://www.healthit.gov/topic/certification-ehrs/about-onc-health-it-certification-program) [, those that are participating in the ONC Health IT certification program,] SHALL ... follow the [Project US@ Technical Specification for Patient Addresses Final Version 1.0](https://asapnet.org/wp-content/uploads/2022/03/Project_US_FINAL_Technical_Specification_Version_1.0.pdf) as the standard style guide for Patient.address.line and Patient.address.city for new and updated records.",SHALL,Server,false,,,"",""
|
|
1348
|
+
hl7.fhir.us.core_7.0.0,470,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-patient.html#mandatory-and-must-support-data-elements,"Non-certifying systems[, systems that are not participating in the ONC Health IT certification program,] SHOULD follow the [Project US@ Technical Specification for Patient Addresses Final Version 1.0](https://asapnet.org/wp-content/uploads/2022/03/Project_US_FINAL_Technical_Specification_Version_1.0.pdf) as the standard style guide for Patient.address.line and Patient.address.city for new and updated records.",SHOULD,Server,false,,,"",""
|
|
1349
|
+
hl7.fhir.us.core_7.0.0,471,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-patient.html#mandatory-and-must-support-data-elements,"[For systems participating in the ONC Health IT certification program,] this requirement [to follow the [Project US@ Technical Specification for Patient Addresses Final Version 1.0](https://asapnet.org/wp-content/uploads/2022/03/Project_US_FINAL_Technical_Specification_Version_1.0.pdf) for Patient.address.line and Patient.address.city] does not apply to historical records or documents that are exposed through FHIR-based APIs. [Organizations MAY choose not to use use Project US@ Technical Specification for Patient Addresses Final Version 1.0 when sending historical records]",MAY,Server,true,,,"",""
|
|
1350
|
+
hl7.fhir.us.core_7.0.0,472,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-patient.html#mandatory-and-must-support-data-elements,The Patient’s Social Security Numbers SHOULD NOT be used as a patient identifier in Patient.identifier.value,SHOULD NOT,Server,false,,,"",""
|
|
1351
|
+
hl7.fhir.us.core_7.0.0,473,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-practitioner.html#mandatory-and-must-support-data-elements,Servers that support only the US Core Practitioner Profile and do not support the [US Core PractitionerRole Profile](https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-practitionerrole.html) SHALL provide implementation-specific guidance on how to access a provider’s location and contact information using only the Practitioner resource.,SHALL,Server,true,,,"",""
|
|
1352
|
+
hl7.fhir.us.core_7.0.0,474,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-practitioner.html#mandatory-and-must-support-data-elements,"Although Practitioner.address is marked as Must Support, the server system … [MAY choose not to] support it if they support the US Core PractitionerRole Profile",MAY,Server,true,,,"",""
|
|
1353
|
+
hl7.fhir.us.core_7.0.0,475,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-practitioner.html#mandatory-and-must-support-data-elements,[When using the US Core Practioner Profile] Practitioner.address … SHALL [be supported] if … [the server does] not support the US Core PractitionerRole Profile,SHALL,Server,true,,,"",""
|
|
1354
|
+
hl7.fhir.us.core_7.0.0,477,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-practitioner.html#mandatory-and-must-support-data-elements,Only professional/work contact information about the practitioner SHOULD be available to the patient,SHOULD,Server,false,,,"",""
|
|
1355
|
+
hl7.fhir.us.core_7.0.0,478,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-practitioner.html#mandatory-and-must-support-data-elements,Systems SHOULD follow the [Project US@ Technical Specification for Patient Addresses Final Version 1.0](https://asapnet.org/wp-content/uploads/2022/03/Project_US_FINAL_Technical_Specification_Version_1.0.pdf) as the standard style guide for Practitioner.address.line and Practitioner.address.city.,SHOULD,Server,false,,,"",""
|
|
1356
|
+
hl7.fhir.us.core_7.0.0,479,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-procedure.html#mandatory-and-must-support-data-elements,"Procedure codes … [MAY] be taken from SNOMED-CT, CPT, HCPCS II, ICD-10-PCS, CDT, or LOINC [for procedure.code]",MAY,Server,false,,,"",""
|
|
1357
|
+
hl7.fhir.us.core_7.0.0,480,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-procedure.html#mandatory-and-must-support-data-elements,[If using LOINC codes in procedure.code] only LOINC concepts that reflect actual procedures SHOULD be used,SHOULD,Server,true,,,"",""
|
|
1358
|
+
hl7.fhir.us.core_7.0.0,481,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-procedure.html#mandatory-and-must-support-data-elements,A procedure including an implantable device SHOULD use Procedure.focalDevice referencing the [US Core Implantable Device Profile](https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-implantable-device.html).,SHOULD,Server,false,,,"",""
|
|
1359
|
+
hl7.fhir.us.core_7.0.0,482,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-procedure.html#mandatory-and-must-support-data-elements,[For organizations participating in the ONC Health IT Certification program] Servers … SHALL support ... US Core Procedure Profile for communicating the reason or justification for a referral as Additional USCDI Requirements,SHALL,Server,true,,,2.3.43.08,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_must_support_test
|
|
1360
|
+
hl7.fhir.us.core_7.0.0,484,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-procedure.html#mandatory-and-must-support-data-elements,"[For organizations participating in the ONC Health IT Certification program,] although both Procedure.reasonCode and Procedure.reasonReference are marked as Additional USCDI Requirements, the certifying server system is not required to support both, but SHALL support at least one of these elements.",SHALL,Server,true,,,2.3.43.08,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_must_support_test
|
|
1361
|
+
hl7.fhir.us.core_7.0.0,486,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-procedure.html#mandatory-and-must-support-data-elements,"[For organizations participating in the ONC Health IT Certification program,] when using Procedure.reasonReference Servers SHALL support at least one target resource in Procedure.reasonReference",SHALL,Server,true,,,2.3.43.07,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_validation_test
|
|
1362
|
+
hl7.fhir.us.core_7.0.0,488,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-procedure.html#mandatory-and-must-support-data-elements,"[For organizations participating in the ONC Health IT Certification program,] when using Procedure.reasonReference …The referenced resources SHOULD be a US Core Profile as documented in [Referencing US Core Profiles](https://hl7.org/fhir/us/core/STU7/general-guidance.html#referencing-us-core-profiles)",SHOULD,Server,true,,,"",""
|
|
1363
|
+
hl7.fhir.us.core_7.0.0,489,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-provenance.html#mandatory-and-must-support-data-elements,The US Core Provenance resource SHALL be supported for … [this] US Core resource type AllergyIntolerance,SHALL,Server,false,,,2.3.4.04,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_allergy_intolerance-us_core_v700_allergy_intolerance_provenance_revinclude_search_test
|
|
1364
|
+
hl7.fhir.us.core_7.0.0,490,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-provenance.html#mandatory-and-must-support-data-elements,The US Core Provenance resource SHALL be supported for … [this] US Core resource type CarePlan,SHALL,Server,false,,,2.3.5.06,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_plan-us_core_v700_care_plan_provenance_revinclude_search_test
|
|
1365
|
+
hl7.fhir.us.core_7.0.0,491,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-provenance.html#mandatory-and-must-support-data-elements,The US Core Provenance resource SHALL be supported for … [this] US Core resource type CareTeam,SHALL,Server,false,,,2.3.6.05,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_care_team-us_core_v700_care_team_provenance_revinclude_search_test
|
|
1366
|
+
hl7.fhir.us.core_7.0.0,492,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-provenance.html#mandatory-and-must-support-data-elements,The US Core Provenance resource SHALL be supported for … [this] US Core resource type Condition,SHALL,Server,false,,,"2.3.7.13, 2.3.8.13","crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_encounter_diagnosis-us_core_v700_condition_encounter_diagnosis_provenance_revinclude_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_condition_problems_health_concerns-us_core_v700_condition_problems_health_concerns_provenance_revinclude_search_test"
|
|
1367
|
+
hl7.fhir.us.core_7.0.0,493,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-provenance.html#mandatory-and-must-support-data-elements,The US Core Provenance resource SHALL be supported for … [this] US Core resource type Coverage,SHALL,Server,false,,,2.3.9.03,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_coverage-us_core_v700_coverage_provenance_revinclude_search_test
|
|
1368
|
+
hl7.fhir.us.core_7.0.0,494,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-provenance.html#mandatory-and-must-support-data-elements,The US Core Provenance resource SHALL be supported for … [this] US Core resource type Device,SHALL,Server,false,,,2.3.10.05,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_device-us_core_v700_device_provenance_revinclude_search_test
|
|
1369
|
+
hl7.fhir.us.core_7.0.0,495,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-provenance.html#mandatory-and-must-support-data-elements,The US Core Provenance resource SHALL be supported for … [this] US Core resource type DiagnosticReport,SHALL,Server,false,,,"2.3.11.09, 2.3.12.09","crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_note-us_core_v700_diagnostic_report_note_provenance_revinclude_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_diagnostic_report_lab-us_core_v700_diagnostic_report_lab_provenance_revinclude_search_test"
|
|
1370
|
+
hl7.fhir.us.core_7.0.0,496,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-provenance.html#mandatory-and-must-support-data-elements,The US Core Provenance resource SHALL be supported for … [this] US Core resource type Document Reference,SHALL,Server,false,,,2.3.13.09,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_document_reference-us_core_v700_document_reference_provenance_revinclude_search_test
|
|
1371
|
+
hl7.fhir.us.core_7.0.0,497,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-provenance.html#mandatory-and-must-support-data-elements,The US Core Provenance resource SHALL be supported for … [this] US Core resource type Encounter,SHALL,Server,false,,,2.3.14.12,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_encounter-us_core_v700_encounter_provenance_revinclude_search_test
|
|
1372
|
+
hl7.fhir.us.core_7.0.0,498,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-provenance.html#mandatory-and-must-support-data-elements,The US Core Provenance resource SHALL be supported for … [this] US Core resource type Goal,SHALL,Server,false,,,2.3.15.06,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_goal-us_core_v700_goal_provenance_revinclude_search_test
|
|
1373
|
+
hl7.fhir.us.core_7.0.0,499,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-provenance.html#mandatory-and-must-support-data-elements,The US Core Provenance resource SHALL be supported for … [this] US Core resource type Immunization,SHALL,Server,false,,,2.3.16.05,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_immunization-us_core_v700_immunization_provenance_revinclude_search_test
|
|
1374
|
+
hl7.fhir.us.core_7.0.0,500,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-provenance.html#mandatory-and-must-support-data-elements,The US Core Provenance resource SHALL be supported for … [this] US Core resource type MedicationDispense,SHALL,Server,false,,,2.3.17.05,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_dispense-us_core_v700_medication_dispense_provenance_revinclude_search_test
|
|
1375
|
+
hl7.fhir.us.core_7.0.0,501,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-provenance.html#mandatory-and-must-support-data-elements,The US Core Provenance resource SHALL be supported for … [this] US Core resource type MedicationRequest,SHALL,Server,false,,,2.3.18.06,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_medication_request-us_core_v700_medication_request_provenance_revinclude_search_test
|
|
1376
|
+
hl7.fhir.us.core_7.0.0,502,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-provenance.html#mandatory-and-must-support-data-elements,The US Core Provenance resource SHALL be supported for … [this] US Core resource type Observation,SHALL,Server,false,,,"2.3.19.08, 2.3.20.08, 2.3.21.08, 2.3.22.08, 2.3.32.08, 2.3.36.08","crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_lab-us_core_v700_observation_lab_provenance_revinclude_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancystatus-us_core_v700_observation_pregnancystatus_provenance_revinclude_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_pregnancyintent-us_core_v700_observation_pregnancyintent_provenance_revinclude_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_occupation-us_core_v700_observation_occupation_provenance_revinclude_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_sexual_orientation-us_core_v700_observation_sexual_orientation_provenance_revinclude_search_test, crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_observation_screening_assessment-us_core_v700_observation_screening_assessment_provenance_revinclude_search_test"
|
|
1377
|
+
hl7.fhir.us.core_7.0.0,503,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-provenance.html#mandatory-and-must-support-data-elements,The US Core Provenance resource SHALL be supported for … [this] US Core resource type Patient,SHALL,Server,false,,,2.3.3.10,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_patient-us_core_v700_patient_provenance_revinclude_search_test
|
|
1378
|
+
hl7.fhir.us.core_7.0.0,504,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-provenance.html#mandatory-and-must-support-data-elements,The US Core Provenance resource SHALL be supported for … [this] US Core resource type Procedure,SHALL,Server,false,,,2.3.43.06,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_procedure-us_core_v700_procedure_provenance_revinclude_search_test
|
|
1379
|
+
hl7.fhir.us.core_7.0.0,505,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-provenance.html#mandatory-and-must-support-data-elements,The US Core Provenance resource SHALL be supported for … [this] US Core resource type QuestionnaireResponse,SHALL,Server,false,,,2.3.44.07,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_questionnaire_response-us_core_v700_questionnaire_response_provenance_revinclude_search_test
|
|
1380
|
+
hl7.fhir.us.core_7.0.0,506,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-provenance.html#mandatory-and-must-support-data-elements,The US Core Provenance resource SHALL be supported for … [this] US Core resource type RelatedPerson,SHALL,Server,false,,,2.3.51.06,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_related_person-us_core_v700_related_person_provenance_revinclude_search_test
|
|
1381
|
+
hl7.fhir.us.core_7.0.0,507,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-provenance.html#mandatory-and-must-support-data-elements,The US Core Provenance resource SHALL be supported for … [this] US Core resource type ServiceRequest,SHALL,Server,false,,,2.3.45.09,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_provenance_revinclude_search_test
|
|
1382
|
+
hl7.fhir.us.core_7.0.0,508,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-provenance.html#mandatory-and-must-support-data-elements,"If a system receives a provider in Provenance.agent.who as free text, they must capture [the organization] who sent them the information [and upon] request ... SHALL provide this organization as the source",SHALL,Server,true,,,"",""
|
|
1383
|
+
hl7.fhir.us.core_7.0.0,509,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-provenance.html#mandatory-and-must-support-data-elements,"If a system receives a provider in Provenance.agent.who as free text, … [upon request they] MAY include the free text provider.",MAY,Server,true,,,"",""
|
|
1384
|
+
hl7.fhir.us.core_7.0.0,510,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-provenance.html#mandatory-and-must-support-data-elements,Systems that need to know the activity has occurred SHOULD populate the activity [Provenance.activity],SHOULD,Server,false,,,"",""
|
|
1385
|
+
hl7.fhir.us.core_7.0.0,511,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-questionnaireresponse.html#mandatory-and-must-support-data-elements,If the QuestionnaireResponse is based on a non-FHIR form [then a] ... FHIR Questionnaire [needs to] represent at least the relevant metadata,SHALL,Server,true,,,2.3.44,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_questionnaire_response
|
|
1386
|
+
hl7.fhir.us.core_7.0.0,512,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-questionnaireresponse.html#mandatory-and-must-support-data-elements,If the QuestionnaireResponse is based on a non-FHIR form [then a] … FHIR Questionnaire's questions may be omitted,MAY,Server,true,,,"",""
|
|
1387
|
+
hl7.fhir.us.core_7.0.0,513,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-relatedperson.html#mandatory-and-must-support-data-elements,Systems SHOULD follow the [Project US@ Technical Specification for Patient Addresses Final Version 1.0](https://asapnet.org/wp-content/uploads/2022/03/Project_US_FINAL_Technical_Specification_Version_1.0.pdf) as the standard style guide for RelatedPerson.address.line and RelatedPerson.address.city,SHOULD,Server,false,,,"",""
|
|
1388
|
+
hl7.fhir.us.core_7.0.0,514,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-servicerequest.html#mandatory-and-must-support-data-elements,"The ServiceRequest.category value set … [MAY] be treated as [extensible](http://hl7.org/fhir/R4/terminologies.html#extensible), and other category codes can be used instead [of the US Core ServiceRequest Category Codes]",MAY,Server,false,,,"",""
|
|
1389
|
+
hl7.fhir.us.core_7.0.0,515,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-servicerequest.html#mandatory-and-must-support-data-elements,The ServiceRequest.code value ... SHOULD be constrained to a subset for a particular use case or domain,SHOULD,Server,false,,,"",""
|
|
1390
|
+
hl7.fhir.us.core_7.0.0,516,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-servicerequest.html#mandatory-and-must-support-data-elements,[For organizations participating in the ONC Health IT Certification program] Servers … SHALL support ... US Core Service Request Profile for communicating the reason or justification for a referral as Additional USCDI Requirements,SHALL,Server,true,,,2.3.45.11,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_must_support_test
|
|
1391
|
+
hl7.fhir.us.core_7.0.0,518,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-servicerequest.html#mandatory-and-must-support-data-elements,"[For organizations participating in the ONC Health IT Certification program,] although both ServiceRequest.reasonCode and ServiceRequest.reasonReference are marked as Additional USCDI Requirements, the certifying server system is not required to support both, but SHALL support at least one of these elements.",SHALL,Server,true,,,2.3.45.11,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_must_support_test
|
|
1392
|
+
hl7.fhir.us.core_7.0.0,520,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-servicerequest.html#mandatory-and-must-support-data-elements,"[For organizations participating in the ONC Health IT Certification program,] when using ServiceRequest.reasonReference Servers SHALL support at least one target resource in ServiceRequest.reasonReference",SHALL,Server,true,,,2.3.45.10,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_service_request-us_core_v700_service_request_validation_test
|
|
1393
|
+
hl7.fhir.us.core_7.0.0,522,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-servicerequest.html#mandatory-and-must-support-data-elements,"[For organizations participating in the ONC Health IT Certification program,] when using ServiceRequest.reasonReference …The referenced resources SHOULD be a US Core Profile as documented in [Referencing US Core Profiles](https://hl7.org/fhir/us/core/STU7/general-guidance.html#referencing-us-core-profiles)",SHOULD,Server,true,,,"",""
|
|
1394
|
+
hl7.fhir.us.core_7.0.0,523,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-specimen.html#mandatory-and-must-support-data-elements,"Since the binding [for Specimen.type and additional USCDI elements] is [extensible](http://hl7.org/fhir/R4/terminologies.html#extensible) when a code is unavailable, just text is allowed [and conformant].",MAY,Server,false,,,"",""
|
|
1395
|
+
hl7.fhir.us.core_7.0.0,524,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-specimen.html#mandatory-and-must-support-data-elements,"Although both Specimen.identifier and Specimen.accessionIdentifier are marked as Must Support, the server system is not required to support both, but SHALL support at least one of these elements.",SHALL,Server,true,,,"",""
|
|
1396
|
+
hl7.fhir.us.core_7.0.0,532,https://hl7.org/fhir/us/core/STU7/CapabilityStatement-us-core-server.html#should_igs,"[Servers] SHOULD Support the ...
|
|
1397
|
+
[SMART Application Launch Framework Implementation Guide](http://hl7.org/fhir/smart-app-launch/history.html)",SHOULD,Server,false,,,"",""
|
|
1398
|
+
hl7.fhir.us.core_7.0.0,533,https://hl7.org/fhir/us/core/STU7/CapabilityStatement-us-core-server.html#behavior,US Core Server SHALL support the US Core Patient resource profile,SHALL,Server,false,,,2.3.1.05,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_capability_statement-us_core_profile_support
|
|
1399
|
+
hl7.fhir.us.core_7.0.0,534,https://hl7.org/fhir/us/core/STU7/CapabilityStatement-us-core-server.html#behavior,US Core Server SHALL support … at least one additional resource profile [in addition to the US Core Patient resource profile] from the list of US Core Profiles,SHALL,Server,false,,,2.3.1.05,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_capability_statement-us_core_profile_support
|
|
1400
|
+
hl7.fhir.us.core_7.0.0,535,https://hl7.org/fhir/us/core/STU7/CapabilityStatement-us-core-server.html#behavior,US Core Server SHALL … Implement the RESTful behavior according to the FHIR specification.,SHALL,Server,false,,,"",""
|
|
1401
|
+
hl7.fhir.us.core_7.0.0,536,https://hl7.org/fhir/us/core/STU7/CapabilityStatement-us-core-server.html#behavior,US Core Server SHALL … return the following response class (Status 400) [for] invalid parameters,SHALL,Server,false,,,"",""
|
|
1402
|
+
hl7.fhir.us.core_7.0.0,537,https://hl7.org/fhir/us/core/STU7/CapabilityStatement-us-core-server.html#behavior,US Core Server SHALL … return the following response class (Status 401/4xx) [for] unauthorized request,SHALL,Server,false,,,"",""
|
|
1403
|
+
hl7.fhir.us.core_7.0.0,538,https://hl7.org/fhir/us/core/STU7/CapabilityStatement-us-core-server.html#behavior,US Core Server SHALL … return the following response class (Status 403) [for] insufficient scopes,SHALL,Server,false,,,"",""
|
|
1404
|
+
hl7.fhir.us.core_7.0.0,539,https://hl7.org/fhir/us/core/STU7/CapabilityStatement-us-core-server.html#behavior,US Core Server SHALL … return the following response class (Status 404) [for] unknown resource,SHALL,Server,false,,,"",""
|
|
1405
|
+
hl7.fhir.us.core_7.0.0,540,https://hl7.org/fhir/us/core/STU7/CapabilityStatement-us-core-server.html#behavior,US Core Server SHALL … support JSON source formats for all US Core interactions.,SHALL,Server,false,,,2.3.1.04,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_capability_statement-us_core_json_support
|
|
1406
|
+
hl7.fhir.us.core_7.0.0,541,https://hl7.org/fhir/us/core/STU7/CapabilityStatement-us-core-server.html#behavior,US Core Server SHOULD … support XML source formats for all US Core interactions.,SHOULD,Server,false,,,"",""
|
|
1407
|
+
hl7.fhir.us.core_7.0.0,542,https://hl7.org/fhir/us/core/STU7/CapabilityStatement-us-core-server.html#behavior,US Core Server SHOULD … identify the US Core profiles supported as part of the FHIR meta.profile attribute for each instance.,SHOULD,Server,false,,,"",""
|
|
1408
|
+
hl7.fhir.us.core_7.0.0,543,https://hl7.org/fhir/us/core/STU7/CapabilityStatement-us-core-server.html#behavior,"A server SHALL reject any unauthorized requests by returning an HTTP 401 ""Unauthorized"", HTTP 403 ""Forbidden"", or HTTP 404 ""Not Found""",SHALL,Server,true,,,"",""
|
|
1409
|
+
hl7.fhir.us.core_7.0.0,548,https://hl7.org/fhir/us/core/STU7/CapabilityStatement-us-core-server.html#valueset,[US Core Servers] SHOULD support [$expand](http://hl7.org/fhir/OperationDefinition/ValueSet-expand) operation,SHOULD,Server,false,,,"",""
|
|
1410
|
+
hl7.fhir.us.core_7.0.0,549,https://hl7.org/fhir/us/core/STU7/CapabilityStatement-us-core-server.html#valueset,"If a server supports DocumentReference for creating, using, and sharing clinical notes, it SHOULD also support the context and contextdirection parameters of the $expand operation",SHOULD,Server,true,,,"",""
|
|
1411
|
+
hl7.fhir.us.core_7.0.0,550,https://hl7.org/fhir/us/core/STU7/security.html#patient-privacy-and-security,Systems SHALL establish a risk analysis and management regime that conforms with HIPAA security regulatory requirements,SHALL,Server,false,,,"",""
|
|
1412
|
+
hl7.fhir.us.core_7.0.0,552,https://hl7.org/fhir/us/core/STU7/security.html#patient-privacy-and-security,US Federal systems SHOULD conform with the risk management and mitigation requirements defined in NIST 800 series documents.,SHOULD,Server,false,,,"",""
|
|
1413
|
+
hl7.fhir.us.core_7.0.0,554,https://hl7.org/fhir/us/core/STU7/security.html#patient-privacy-and-security,US Federal systems … SHOULD include security category assignment following NIST 800-60 vol. 2 Appendix D.14.,SHOULD,Server,false,,,"",""
|
|
1414
|
+
hl7.fhir.us.core_7.0.0,556,https://hl7.org/fhir/us/core/STU7/security.html#patient-privacy-and-security,The coordination of risk management and the related security and privacy controls … SHOULD be defined in the Business Associate Agreement when available.,SHOULD,Server,false,,,"",""
|
|
1415
|
+
hl7.fhir.us.core_7.0.0,558,https://hl7.org/fhir/us/core/STU7/security.html#patient-privacy-and-security,Systems SHALL reference a single time source to establish a common time base for security auditing and clinical data records among computing systems.,SHALL,Server,false,,,"",""
|
|
1416
|
+
hl7.fhir.us.core_7.0.0,560,https://hl7.org/fhir/us/core/STU7/security.html#patient-privacy-and-security,The selected time service SHOULD be documented in the Business Associate Agreement when available.,SHOULD,Server,false,,,"",""
|
|
1417
|
+
hl7.fhir.us.core_7.0.0,562,https://hl7.org/fhir/us/core/STU7/security.html#patient-privacy-and-security,Systems SHALL keep audit logs of the various transactions.,SHALL,Server,false,,,"",""
|
|
1418
|
+
hl7.fhir.us.core_7.0.0,564,https://hl7.org/fhir/us/core/STU7/security.html#patient-privacy-and-security,Systems SHALL use TLS version 1.2 or higher for all transmissions not taking place over a secure network connection.,SHALL,Server,false,,,"",""
|
|
1419
|
+
hl7.fhir.us.core_7.0.0,566,https://hl7.org/fhir/us/core/STU7/security.html#patient-privacy-and-security,US Federal systems SHOULD conform with FIPS PUB 140-2.,SHOULD,Server,false,,,"",""
|
|
1420
|
+
hl7.fhir.us.core_7.0.0,568,https://hl7.org/fhir/us/core/STU7/security.html#patient-privacy-and-security,Systems SHALL conform to [FHIR Communications Security](http://hl7.org/fhir/R4/security.html#http) requirements.,SHALL,Server,false,,,"",""
|
|
1421
|
+
hl7.fhir.us.core_7.0.0,570,https://hl7.org/fhir/us/core/STU7/security.html#patient-privacy-and-security,"For Authentication and Authorization, Systems SHALL support any [SMART App Launch version](http://hl7.org/fhir/smart-app-launch/history.html) for client <-> server interactions.",SHALL,Server,false,,,"",""
|
|
1422
|
+
hl7.fhir.us.core_7.0.0,572,https://hl7.org/fhir/us/core/STU7/security.html#patient-privacy-and-security,"Systems SHALL implement consent requirements per their state, local, and institutional policies.",SHALL,Server,false,,,"",""
|
|
1423
|
+
hl7.fhir.us.core_7.0.0,574,https://hl7.org/fhir/us/core/STU7/security.html#patient-privacy-and-security,The Business Associate Agreements SHOULD document systems’ mutual consent requirements.,SHOULD,Server,false,,,"",""
|
|
1424
|
+
hl7.fhir.us.core_7.0.0,576,https://hl7.org/fhir/us/core/STU7/security.html#patient-privacy-and-security,Systems SHOULD provide Provenance statements using the [US Core Provenance Profile](https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-provenance.html) resource and associated requirements.,SHOULD,Server,false,,,"",""
|
|
1425
|
+
hl7.fhir.us.core_7.0.0,578,https://hl7.org/fhir/us/core/STU7/security.html#patient-privacy-and-security,Systems MAY implement the [FHIR Digital Signatures](http://hl7.org/fhir/R4/security.html#digital%20signatures),MAY,Server,false,,,"",""
|
|
1426
|
+
hl7.fhir.us.core_7.0.0,580,https://hl7.org/fhir/us/core/STU7/security.html#patient-privacy-and-security,Systems MAY protect the confidentiality of data at rest via encryption and associated access controls.,MAY,Server,false,,,"",""
|
|
1427
|
+
hl7.fhir.us.core_7.0.0,583,https://www.hl7.org/fhir/us/core/STU7/general-requirements.html#current-binding-for-coded-elements,"The [additional] current binding [[FHIR R5 link](https://hl7.org/fhir/R5/terminologies.html#binding)] requires newly recorded, non-legacy data to be drawn from the [bound] value set.",SHALL,Server,true,,,"",""
|
|
1428
|
+
hl7.fhir.us.core_7.0.0,584,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-questionnaireresponse.html#mandatory-and-must-support-data-elements,If the QuestionnaireResponse is based on a non-FHIR form [then a] ... FHIR Questionnaire [will communicate] the identifier of the non-FHIR form instead of the canonical URI using the US Core Extension Questionnaire URI extension.,SHALL,Server,true,,,"",""
|
|
1429
|
+
hl7.fhir.us.core_7.0.0,587,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-allergyintolerance.html#mandatory-and-must-support-data-elements,Each AllergyIntolerance Must Support: a verification status,SHALL,Server,false,,,2.3.4.06,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_allergy_intolerance-us_core_v700_allergy_intolerance_must_support_test
|
|
1430
|
+
hl7.fhir.us.core_7.0.0,588,https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-allergyintolerance.html#mandatory-and-must-support-data-elements,Each AllergyIntolerance Must Support: a reaction manifestation,SHALL,Server,false,,,2.3.4.06,crd_client_v221-crd_v221_client_fhir_api-us_core_v700_fhir_api-us_core_v700_allergy_intolerance-us_core_v700_allergy_intolerance_must_support_test
|