cancer_registry_reporting_test_kit 0.9.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 +7 -0
- data/LICENSE +201 -0
- data/config/presets/hdea_report_preset.json +14 -0
- data/config/presets/inferno_reference_server_preset.json.erb +84 -0
- data/lib/cancer_registry_reporting_test_kit/bundle_parse.rb +161 -0
- data/lib/cancer_registry_reporting_test_kit/docs/ehr_suite_description.md +134 -0
- data/lib/cancer_registry_reporting_test_kit/docs/hdea_suite_description.md +108 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/ehr_capability_statement/mcode_capability_statement_profile_support.rb +40 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/ehr_data_access_group.rb +131 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/medication_administration/medication_administration_must_support_test.rb +43 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/medication_administration/medication_administration_search_test.rb +51 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/medication_administration/medication_administration_validation_test.rb +41 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/medication_administration/metadata.yml +72 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/medication_administration_group.rb +72 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/medication_request/medication_request_must_support_test.rb +55 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/medication_request/medication_request_search_test.rb +55 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/medication_request/medication_request_validation_test.rb +38 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/medication_request/metadata.yml +94 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/medication_request_group.rb +73 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/primary_cancer_condition_group.rb +73 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/primary_condition/metadata.yml +100 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/primary_condition/primary_cancer_condition_must_support_test.rb +50 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/primary_condition/primary_cancer_condition_search_test.rb +70 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/primary_condition/primary_cancer_condition_validation_test.rb +39 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/radiotherapy_procedure/metadata.yml +99 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/radiotherapy_procedure/radiotherapy_procedure_must_support_test.rb +46 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/radiotherapy_procedure/radiotherapy_procedure_search_test.rb +51 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/radiotherapy_procedure/radiotherapy_procedure_validation_test.rb +37 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/radiotherapy_procedure_group.rb +83 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/secondary_cancer_condition_group.rb +68 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/secondary_condition/metadata.yml +102 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/secondary_condition/secondary_cancer_condition_must_support_test.rb +50 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/secondary_condition/secondary_cancer_condition_search_test.rb +70 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/secondary_condition/secondary_cancer_condition_validation_test.rb +39 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/tnm_distant_metastases_category/metadata.yml +65 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/tnm_distant_metastases_category/tnm_distant_metastases_category_must_support_test.rb +44 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/tnm_distant_metastases_category/tnm_distant_metastases_category_search_test.rb +69 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/tnm_distant_metastases_category/tnm_distant_metastases_category_validation_test.rb +39 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/tnm_distant_metastases_category_group.rb +74 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/tnm_primary_tumor_category/metadata.yml +64 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/tnm_primary_tumor_category/tnm_primary_tumor_category_must_support_test.rb +44 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/tnm_primary_tumor_category/tnm_primary_tumor_category_search_test.rb +69 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/tnm_primary_tumor_category/tnm_primary_tumor_category_validation_test.rb +39 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/tnm_primary_tumor_category_group.rb +73 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/tnm_regional_nodes_category/metadata.yml +64 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/tnm_regional_nodes_category/tnm_regional_nodes_category_must_support_test.rb +44 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/tnm_regional_nodes_category/tnm_regional_nodes_category_search_test.rb +69 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/tnm_regional_nodes_category/tnm_regional_nodes_category_validation_test.rb +39 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/tnm_regional_nodes_category_group.rb +73 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/tnm_stage_group/metadata.yml +68 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/tnm_stage_group/tnm_stage_group_must_support_test.rb +45 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/tnm_stage_group/tnm_stage_group_search_test.rb +69 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/tnm_stage_group/tnm_stage_group_validation_test.rb +39 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/tnm_stage_group_group.rb +72 -0
- data/lib/cancer_registry_reporting_test_kit/ehr_suite.rb +69 -0
- data/lib/cancer_registry_reporting_test_kit/fhir_resource_navigation.rb +174 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_generator/group_generator.rb +47 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_generator/group_metadata.rb +86 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_generator/group_metadata_extractor.rb +205 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_generator/ig_loader.rb +78 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_generator/ig_metadata.rb +26 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_generator/ig_metadata_extractor.rb +78 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_generator/ig_resources.rb +56 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_generator/must_support_metadata_extractor.rb +399 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_generator/must_support_test_generator.rb +134 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_generator/naming.rb +168 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_generator/special_cases.rb +43 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_generator/templates/must_support.rb.erb +41 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_generator/templates/validation.rb.erb +35 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_generator/terminology_binding_metadata_extractor.rb +118 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_generator/validation_test_generator.rb +125 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_generator/value_extractor.rb +134 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_generator.rb +66 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/author/author_validation_test.rb +61 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/author/organization_metadata.yml +47 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/author/organization_must_support_test.rb +73 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/author/practitioner_metadata.yml +51 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/author/practitioner_must_support_test.rb +73 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/author/practitioner_role_metadata.yml +48 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/author/practitioner_role_must_support_test.rb +66 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/bundle_resources_group.rb +213 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/ccrr_content_bundle_parse_and_validation_test.rb +67 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/allergy_intolerance/allergy_intolerance_must_support_test.rb +46 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/allergy_intolerance/allergy_intolerance_validation_test.rb +35 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/allergy_intolerance/metadata.yml +36 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/care_plan/care_plan_must_support_test.rb +48 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/care_plan/care_plan_validation_test.rb +35 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/care_plan/metadata.yml +50 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/ccrr_content_bundle/ccrr_content_bundle_must_support_test.rb +43 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/ccrr_content_bundle/metadata.yml +36 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/central_cancer_registry_primary_cancer_condition/central_cancer_registry_primary_cancer_condition_must_support_test.rb +59 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/central_cancer_registry_primary_cancer_condition/central_cancer_registry_primary_cancer_condition_validation_test.rb +35 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/central_cancer_registry_primary_cancer_condition/metadata.yml +86 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/composition/composition_must_support_test.rb +109 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/composition/composition_validation_test.rb +35 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/composition/metadata.yml +272 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/condition/condition_must_support_test.rb +45 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/condition/condition_validation_test.rb +35 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/condition/metadata.yml +33 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/diagnostic_report_lab/diagnostic_report_lab_must_support_test.rb +49 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/diagnostic_report_lab/diagnostic_report_lab_validation_test.rb +35 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/diagnostic_report_lab/metadata.yml +57 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/diagnostic_report_note/diagnostic_report_note_must_support_test.rb +53 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/diagnostic_report_note/diagnostic_report_note_validation_test.rb +35 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/diagnostic_report_note/metadata.yml +75 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/document_reference/document_reference_must_support_test.rb +57 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/document_reference/document_reference_validation_test.rb +35 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/document_reference/metadata.yml +68 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/encounter/encounter_must_support_test.rb +59 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/encounter/encounter_validation_test.rb +35 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/encounter/metadata.yml +73 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/mcode_radiotherapy_course_summary/mcode_radiotherapy_course_summary_must_support_test.rb +52 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/mcode_radiotherapy_course_summary/mcode_radiotherapy_course_summary_validation_test.rb +35 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/mcode_radiotherapy_course_summary/metadata.yml +59 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/mcode_secondary_cancer_condition/mcode_secondary_cancer_condition_must_support_test.rb +56 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/mcode_secondary_cancer_condition/mcode_secondary_cancer_condition_validation_test.rb +35 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/mcode_secondary_cancer_condition/metadata.yml +77 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/mcode_tnm_stage_group/mcode_tnm_stage_group_must_support_test.rb +48 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/mcode_tnm_stage_group/mcode_tnm_stage_group_validation_test.rb +35 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/mcode_tnm_stage_group/metadata.yml +46 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/medication/medication_must_support_test.rb +41 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/medication/medication_validation_test.rb +35 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/medication/metadata.yml +26 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/medication_administration/medication_administration_must_support_test.rb +48 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/medication_administration/medication_administration_validation_test.rb +35 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/medication_administration/metadata.yml +48 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/medication_request/medication_request_must_support_test.rb +57 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/medication_request/medication_request_validation_test.rb +35 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/medication_request/metadata.yml +86 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/medication_statement/medication_statement_must_support_test.rb +41 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/medication_statement/medication_statement_validation_test.rb +35 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/medication_statement/metadata.yml +26 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/observation/metadata.yml +26 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/observation/observation_must_support_test.rb +41 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/observation/observation_validation_test.rb +35 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/observation_lab/metadata.yml +53 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/observation_lab/observation_lab_must_support_test.rb +50 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/observation_lab/observation_lab_validation_test.rb +35 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/odh_usual_work/metadata.yml +81 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/odh_usual_work/odh_usual_work_must_support_test.rb +49 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/odh_usual_work/odh_usual_work_validation_test.rb +35 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/organization/metadata.yml +46 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/organization/organization_must_support_test.rb +55 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/organization/organization_validation_test.rb +35 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/patient/metadata.yml +51 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/patient/patient_must_support_test.rb +58 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/patient/patient_validation_test.rb +35 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/practitioner/metadata.yml +50 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/practitioner/practitioner_must_support_test.rb +55 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/practitioner/practitioner_validation_test.rb +35 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/practitioner_role/metadata.yml +47 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/practitioner_role/practitioner_role_must_support_test.rb +49 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/practitioner_role/practitioner_role_validation_test.rb +35 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/procedure/metadata.yml +37 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/procedure/procedure_must_support_test.rb +44 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/procedure/procedure_validation_test.rb +35 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/service_request/metadata.yml +26 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/service_request/service_request_must_support_test.rb +41 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/service_request/service_request_validation_test.rb +35 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/smokingstatus/metadata.yml +58 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/smokingstatus/smokingstatus_must_support_test.rb +47 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/smokingstatus/smokingstatus_validation_test.rb +35 -0
- data/lib/cancer_registry_reporting_test_kit/hdea_suite.rb +80 -0
- data/lib/cancer_registry_reporting_test_kit/igs/README.md +21 -0
- data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-mcode-cancer-related-medication-administration.json +1905 -0
- data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-mcode-cancer-related-medication-request.json +3611 -0
- data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-mcode-primary-cancer-condition.json +2246 -0
- data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-mcode-radiotherapy-course-summary.json +2700 -0
- data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-mcode-secondary-cancer-condition.json +2419 -0
- data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-mcode-tnm-distant-metastases-category.json +2320 -0
- data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-mcode-tnm-primary-tumor-category.json +2320 -0
- data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-mcode-tnm-regional-nodes-category.json +2320 -0
- data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-mcode-tnm-stage-group.json +2414 -0
- data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-medicationstatement.profile.json +1578 -0
- data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-observation.profile.json +3510 -0
- data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-odh-UsualWork.json +7248 -0
- data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-servicerequest.profile.json +3048 -0
- data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-us-core-allergyintolerance.json +1842 -0
- data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-us-core-careplan.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-us-core-condition.json +2154 -0
- data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-us-core-diagnosticreport-lab.json +2002 -0
- data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-us-core-diagnosticreport-note.json +2049 -0
- data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-us-core-documentreference.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-us-core-encounter.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-us-core-medication.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-us-core-observation-lab.json +3153 -0
- data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-us-core-organization.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-us-core-patient.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-us-core-practitioner.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-us-core-practitionerrole.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-us-core-procedure.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-us-core-smokingstatus.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100.tgz +0 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/.index.db +0 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/.index.json +4 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/CapabilityStatement-central-cancer-registry-reporting-ehr.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/ImplementationGuide-hl7.fhir.us.central-cancer-registry-reporting.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/StructureDefinition-cancer-encounter.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/StructureDefinition-cancer-patient.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/StructureDefinition-ccrr-composition.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/StructureDefinition-ccrr-content-bundle.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/StructureDefinition-ccrr-plandefinition.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/StructureDefinition-ccrr-reporting-bundle.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/StructureDefinition-central-cancer-registry-primary-cancer-condition.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/StructureDefinition-central-cancer-registry-reporting-messageheader.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/StructureDefinition-us-ph-patient.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/StructureDefinition-us-ph-tribal-affiliation-extension.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/ValueSet-cancer-core-reportability-codes.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/example/AllergyIntolerance-example.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/example/BodyStructure-jenny-m-chest-wall-lymph-nodes-treatment-volume.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/example/BodyStructure-jenny-m-chest-wall-treatment-volume.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/example/Bundle-ccrr-content-bundle-example.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/example/Bundle-central-cancer-registry-reporting-specification-bundle-example.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/example/Bundle-reporting-bundle-example.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/example/Composition-ccrr-composition-example.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/example/Condition-primary-cancer-condition-breast.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/example/Encounter-encounter-cancer-example.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/example/Endpoint-example-healthcare-endpoint.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/example/Endpoint-example-ph-endpoint.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/example/MedicationAdministration-cancer-related-medication-administration-example.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/example/MessageHeader-messageheader-example-reportheader.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/example/Observation-cancer-stage-group-example.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/example/Observation-tnm-clinical-distant-metastases-category-cM0.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/example/Observation-tnm-clinical-primary-tumor-category-cT3.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/example/Observation-tnm-clinical-regional-nodes-category-cN3.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/example/Organization-example-healthcare-org.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/example/Organization-example-pha-org.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/example/Patient-example.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/example/PlanDefinition-plandefinition-central-cancer-registry-reporting-example.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/example/Practitioner-1.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/example/Procedure-radiotherapy-example.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/openapi/central-cancer-registry-reporting-ehr.openapi.json +364 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/other/ig-r4.jsonX +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/other/spec.internals +293 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/other/validation-oo.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/other/validation-summary.json +1 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/package.json +30 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/xml/StructureDefinition-cancer-encounter.sch +19 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/xml/StructureDefinition-cancer-patient.sch +175 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/xml/StructureDefinition-ccrr-composition.sch +61 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/xml/StructureDefinition-ccrr-content-bundle.sch +12 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/xml/StructureDefinition-ccrr-plandefinition.sch +331 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/xml/StructureDefinition-ccrr-reporting-bundle.sch +12 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/xml/StructureDefinition-central-cancer-registry-primary-cancer-condition.sch +31 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/xml/StructureDefinition-central-cancer-registry-reporting-messageheader.sch +27 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/xml/StructureDefinition-us-ph-patient.sch +217 -0
- data/lib/cancer_registry_reporting_test_kit/igs/package/xml/StructureDefinition-us-ph-tribal-affiliation-extension.sch +36 -0
- data/lib/cancer_registry_reporting_test_kit/metadata.rb +71 -0
- data/lib/cancer_registry_reporting_test_kit/must_support_test.rb +263 -0
- data/lib/cancer_registry_reporting_test_kit/primitive_type.rb +7 -0
- data/lib/cancer_registry_reporting_test_kit/requirements/cancer-registry-reporting-test-kit_out_of_scope_requirements.csv +77 -0
- data/lib/cancer_registry_reporting_test_kit/requirements/cancer-registry-reporting-test-kit_requirements.csv +162 -0
- data/lib/cancer_registry_reporting_test_kit/requirements/generated/cancer-registry-reporting-test-kit_requirements_coverage.csv +161 -0
- data/lib/cancer_registry_reporting_test_kit/search_test.rb +897 -0
- data/lib/cancer_registry_reporting_test_kit/search_test_properties.rb +58 -0
- data/lib/cancer_registry_reporting_test_kit/validation_test.rb +68 -0
- data/lib/cancer_registry_reporting_test_kit/version.rb +6 -0
- data/lib/cancer_registry_reporting_test_kit.rb +6 -0
- data/lib/inferno_requirements_tools/ext/inferno_core/runnable.rb +22 -0
- data/lib/inferno_requirements_tools/tasks/requirements_coverage.rb +284 -0
- data/lib/requirements_config.yaml +22 -0
- metadata +341 -0
@@ -0,0 +1,293 @@
|
|
1
|
+
{
|
2
|
+
"npm-name" : "hl7.fhir.us.central-cancer-registry-reporting.r4",
|
3
|
+
"ig-version" : "4.0.0",
|
4
|
+
"tool-version" : "5.0.0",
|
5
|
+
"tool-build" : "3",
|
6
|
+
"webUrl" : "http://hl7.org/fhir/us/central-cancer-registry-reporting",
|
7
|
+
"date" : "2024-05-31",
|
8
|
+
"date-time" : "20240531125802+0000",
|
9
|
+
"paths" : {
|
10
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/ImplementationGuide/hl7.fhir.us.central-cancer-registry-reporting|1.0.0" : "index.html",
|
11
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/ImplementationGuide/hl7.fhir.us.central-cancer-registry-reporting" : "index.html",
|
12
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/AllergyIntolerance/example" : "AllergyIntolerance-example.html",
|
13
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/BodyStructure/jenny-m-chest-wall-lymph-nodes-treatment-volume" : "BodyStructure-jenny-m-chest-wall-lymph-nodes-treatment-volume.html",
|
14
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/BodyStructure/jenny-m-chest-wall-treatment-volume" : "BodyStructure-jenny-m-chest-wall-treatment-volume.html",
|
15
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/Bundle/central-cancer-registry-reporting-specification-bundle-example" : "Bundle-central-cancer-registry-reporting-specification-bundle-example.html",
|
16
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/Patient/example" : "Patient-example.html",
|
17
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/MedicationAdministration/cancer-related-medication-administration-example" : "MedicationAdministration-cancer-related-medication-administration-example.html",
|
18
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/Observation/cancer-stage-group-example" : "Observation-cancer-stage-group-example.html",
|
19
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/Composition/ccrr-composition-example" : "Composition-ccrr-composition-example.html",
|
20
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/Bundle/ccrr-content-bundle-example" : "Bundle-ccrr-content-bundle-example.html",
|
21
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/Bundle/reporting-bundle-example" : "Bundle-reporting-bundle-example.html",
|
22
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/Encounter/encounter-cancer-example" : "Encounter-encounter-cancer-example.html",
|
23
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/Endpoint/example-healthcare-endpoint" : "Endpoint-example-healthcare-endpoint.html",
|
24
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/Endpoint/example-ph-endpoint" : "Endpoint-example-ph-endpoint.html",
|
25
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/MessageHeader/messageheader-example-reportheader" : "MessageHeader-messageheader-example-reportheader.html",
|
26
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/Organization/example-pha-org" : "Organization-example-pha-org.html",
|
27
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/Organization/example-healthcare-org" : "Organization-example-healthcare-org.html",
|
28
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/StructureDefinition/plandefinition-central-cancer-registry-reporting-example" : "PlanDefinition-plandefinition-central-cancer-registry-reporting-example.html",
|
29
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/StructureDefinition/plandefinition-central-cancer-registry-reporting-example|1.0.0" : "PlanDefinition-plandefinition-central-cancer-registry-reporting-example.html",
|
30
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/PlanDefinition/plandefinition-central-cancer-registry-reporting-example" : "PlanDefinition-plandefinition-central-cancer-registry-reporting-example.html",
|
31
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/Practitioner/1" : "Practitioner-1.html",
|
32
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/Condition/primary-cancer-condition-breast" : "Condition-primary-cancer-condition-breast.html",
|
33
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/Procedure/radiotherapy-example" : "Procedure-radiotherapy-example.html",
|
34
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/Observation/tnm-clinical-distant-metastases-category-cM0" : "Observation-tnm-clinical-distant-metastases-category-cM0.html",
|
35
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/Observation/tnm-clinical-primary-tumor-category-cT3" : "Observation-tnm-clinical-primary-tumor-category-cT3.html",
|
36
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/Observation/tnm-clinical-regional-nodes-category-cN3" : "Observation-tnm-clinical-regional-nodes-category-cN3.html",
|
37
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/StructureDefinition/ccrr-content-bundle|1.0.0" : "StructureDefinition-ccrr-content-bundle.html",
|
38
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/StructureDefinition/ccrr-content-bundle" : "StructureDefinition-ccrr-content-bundle.html",
|
39
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/StructureDefinition/ccrr-reporting-bundle|1.0.0" : "StructureDefinition-ccrr-reporting-bundle.html",
|
40
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/StructureDefinition/ccrr-reporting-bundle" : "StructureDefinition-ccrr-reporting-bundle.html",
|
41
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/CapabilityStatement/central-cancer-registry-reporting-ehr|1.0.0" : "CapabilityStatement-central-cancer-registry-reporting-ehr.html",
|
42
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/CapabilityStatement/central-cancer-registry-reporting-ehr" : "CapabilityStatement-central-cancer-registry-reporting-ehr.html",
|
43
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/StructureDefinition/ccrr-composition|1.0.0" : "StructureDefinition-ccrr-composition.html",
|
44
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/StructureDefinition/ccrr-composition" : "StructureDefinition-ccrr-composition.html",
|
45
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/StructureDefinition/central-cancer-registry-reporting-messageheader|1.0.0" : "StructureDefinition-central-cancer-registry-reporting-messageheader.html",
|
46
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/StructureDefinition/central-cancer-registry-reporting-messageheader" : "StructureDefinition-central-cancer-registry-reporting-messageheader.html",
|
47
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/StructureDefinition/central-cancer-registry-primary-cancer-condition|1.0.0" : "StructureDefinition-central-cancer-registry-primary-cancer-condition.html",
|
48
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/StructureDefinition/central-cancer-registry-primary-cancer-condition" : "StructureDefinition-central-cancer-registry-primary-cancer-condition.html",
|
49
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/StructureDefinition/cancer-encounter|1.0.0" : "StructureDefinition-cancer-encounter.html",
|
50
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/StructureDefinition/cancer-encounter" : "StructureDefinition-cancer-encounter.html",
|
51
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/StructureDefinition/us-ph-patient|1.0.0" : "StructureDefinition-us-ph-patient.html",
|
52
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/StructureDefinition/us-ph-patient" : "StructureDefinition-us-ph-patient.html",
|
53
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/StructureDefinition/ccrr-plandefinition|1.0.0" : "StructureDefinition-ccrr-plandefinition.html",
|
54
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/StructureDefinition/ccrr-plandefinition" : "StructureDefinition-ccrr-plandefinition.html",
|
55
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/StructureDefinition/us-ph-tribal-affiliation-extension|1.0.0" : "StructureDefinition-us-ph-tribal-affiliation-extension.html",
|
56
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/StructureDefinition/us-ph-tribal-affiliation-extension" : "StructureDefinition-us-ph-tribal-affiliation-extension.html",
|
57
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/ValueSet/cancer-core-reportability-codes|1.0.0" : "ValueSet-cancer-core-reportability-codes.html",
|
58
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/ValueSet/cancer-core-reportability-codes" : "ValueSet-cancer-core-reportability-codes.html",
|
59
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/StructureDefinition/cancer-patient|1.0.0" : "StructureDefinition-cancer-patient.html",
|
60
|
+
"http://hl7.org/fhir/us/central-cancer-registry-reporting/StructureDefinition/cancer-patient" : "StructureDefinition-cancer-patient.html"
|
61
|
+
},
|
62
|
+
"pages" : {
|
63
|
+
},
|
64
|
+
"targets" : [
|
65
|
+
"AllergyIntolerance-example.change.history.html",
|
66
|
+
"AllergyIntolerance-example.html",
|
67
|
+
"AllergyIntolerance-example.json.html",
|
68
|
+
"AllergyIntolerance-example.ttl.html",
|
69
|
+
"AllergyIntolerance-example.xml.html",
|
70
|
+
"artifacts.html",
|
71
|
+
"BodyStructure-jenny-m-chest-wall-lymph-nodes-treatment-volume.change.history.html",
|
72
|
+
"BodyStructure-jenny-m-chest-wall-lymph-nodes-treatment-volume.html",
|
73
|
+
"BodyStructure-jenny-m-chest-wall-lymph-nodes-treatment-volume.json.html",
|
74
|
+
"BodyStructure-jenny-m-chest-wall-lymph-nodes-treatment-volume.ttl.html",
|
75
|
+
"BodyStructure-jenny-m-chest-wall-lymph-nodes-treatment-volume.xml.html",
|
76
|
+
"BodyStructure-jenny-m-chest-wall-treatment-volume.change.history.html",
|
77
|
+
"BodyStructure-jenny-m-chest-wall-treatment-volume.html",
|
78
|
+
"BodyStructure-jenny-m-chest-wall-treatment-volume.json.html",
|
79
|
+
"BodyStructure-jenny-m-chest-wall-treatment-volume.ttl.html",
|
80
|
+
"BodyStructure-jenny-m-chest-wall-treatment-volume.xml.html",
|
81
|
+
"Bundle-ccrr-content-bundle-example.change.history.html",
|
82
|
+
"Bundle-ccrr-content-bundle-example.html",
|
83
|
+
"Bundle-ccrr-content-bundle-example.json.html",
|
84
|
+
"Bundle-ccrr-content-bundle-example.ttl.html",
|
85
|
+
"Bundle-ccrr-content-bundle-example.xml.html",
|
86
|
+
"Bundle-central-cancer-registry-reporting-specification-bundle-example.change.history.html",
|
87
|
+
"Bundle-central-cancer-registry-reporting-specification-bundle-example.html",
|
88
|
+
"Bundle-central-cancer-registry-reporting-specification-bundle-example.json.html",
|
89
|
+
"Bundle-central-cancer-registry-reporting-specification-bundle-example.ttl.html",
|
90
|
+
"Bundle-central-cancer-registry-reporting-specification-bundle-example.xml.html",
|
91
|
+
"Bundle-reporting-bundle-example.change.history.html",
|
92
|
+
"Bundle-reporting-bundle-example.html",
|
93
|
+
"Bundle-reporting-bundle-example.json.html",
|
94
|
+
"Bundle-reporting-bundle-example.ttl.html",
|
95
|
+
"Bundle-reporting-bundle-example.xml.html",
|
96
|
+
"CapabilityStatement-central-cancer-registry-reporting-ehr-testing.html",
|
97
|
+
"CapabilityStatement-central-cancer-registry-reporting-ehr.change.history.html",
|
98
|
+
"CapabilityStatement-central-cancer-registry-reporting-ehr.html",
|
99
|
+
"CapabilityStatement-central-cancer-registry-reporting-ehr.json.html",
|
100
|
+
"CapabilityStatement-central-cancer-registry-reporting-ehr.ttl.html",
|
101
|
+
"CapabilityStatement-central-cancer-registry-reporting-ehr.xml.html",
|
102
|
+
"changes.html",
|
103
|
+
"Composition-ccrr-composition-example.change.history.html",
|
104
|
+
"Composition-ccrr-composition-example.html",
|
105
|
+
"Composition-ccrr-composition-example.json.html",
|
106
|
+
"Composition-ccrr-composition-example.ttl.html",
|
107
|
+
"Composition-ccrr-composition-example.xml.html",
|
108
|
+
"Condition-primary-cancer-condition-breast.change.history.html",
|
109
|
+
"Condition-primary-cancer-condition-breast.html",
|
110
|
+
"Condition-primary-cancer-condition-breast.json.html",
|
111
|
+
"Condition-primary-cancer-condition-breast.ttl.html",
|
112
|
+
"Condition-primary-cancer-condition-breast.xml.html",
|
113
|
+
"credits.html",
|
114
|
+
"downloads.html",
|
115
|
+
"Encounter-encounter-cancer-example.change.history.html",
|
116
|
+
"Encounter-encounter-cancer-example.html",
|
117
|
+
"Encounter-encounter-cancer-example.json.html",
|
118
|
+
"Encounter-encounter-cancer-example.ttl.html",
|
119
|
+
"Encounter-encounter-cancer-example.xml.html",
|
120
|
+
"Endpoint-example-healthcare-endpoint.change.history.html",
|
121
|
+
"Endpoint-example-healthcare-endpoint.html",
|
122
|
+
"Endpoint-example-healthcare-endpoint.json.html",
|
123
|
+
"Endpoint-example-healthcare-endpoint.ttl.html",
|
124
|
+
"Endpoint-example-healthcare-endpoint.xml.html",
|
125
|
+
"Endpoint-example-ph-endpoint.change.history.html",
|
126
|
+
"Endpoint-example-ph-endpoint.html",
|
127
|
+
"Endpoint-example-ph-endpoint.json.html",
|
128
|
+
"Endpoint-example-ph-endpoint.ttl.html",
|
129
|
+
"Endpoint-example-ph-endpoint.xml.html",
|
130
|
+
"index.html",
|
131
|
+
"MedicationAdministration-cancer-related-medication-administration-example.change.history.html",
|
132
|
+
"MedicationAdministration-cancer-related-medication-administration-example.html",
|
133
|
+
"MedicationAdministration-cancer-related-medication-administration-example.json.html",
|
134
|
+
"MedicationAdministration-cancer-related-medication-administration-example.ttl.html",
|
135
|
+
"MedicationAdministration-cancer-related-medication-administration-example.xml.html",
|
136
|
+
"MessageHeader-messageheader-example-reportheader.change.history.html",
|
137
|
+
"MessageHeader-messageheader-example-reportheader.html",
|
138
|
+
"MessageHeader-messageheader-example-reportheader.json.html",
|
139
|
+
"MessageHeader-messageheader-example-reportheader.ttl.html",
|
140
|
+
"MessageHeader-messageheader-example-reportheader.xml.html",
|
141
|
+
"Observation-cancer-stage-group-example.change.history.html",
|
142
|
+
"Observation-cancer-stage-group-example.html",
|
143
|
+
"Observation-cancer-stage-group-example.json.html",
|
144
|
+
"Observation-cancer-stage-group-example.ttl.html",
|
145
|
+
"Observation-cancer-stage-group-example.xml.html",
|
146
|
+
"Observation-tnm-clinical-distant-metastases-category-cM0.change.history.html",
|
147
|
+
"Observation-tnm-clinical-distant-metastases-category-cM0.html",
|
148
|
+
"Observation-tnm-clinical-distant-metastases-category-cM0.json.html",
|
149
|
+
"Observation-tnm-clinical-distant-metastases-category-cM0.ttl.html",
|
150
|
+
"Observation-tnm-clinical-distant-metastases-category-cM0.xml.html",
|
151
|
+
"Observation-tnm-clinical-primary-tumor-category-cT3.change.history.html",
|
152
|
+
"Observation-tnm-clinical-primary-tumor-category-cT3.html",
|
153
|
+
"Observation-tnm-clinical-primary-tumor-category-cT3.json.html",
|
154
|
+
"Observation-tnm-clinical-primary-tumor-category-cT3.ttl.html",
|
155
|
+
"Observation-tnm-clinical-primary-tumor-category-cT3.xml.html",
|
156
|
+
"Observation-tnm-clinical-regional-nodes-category-cN3.change.history.html",
|
157
|
+
"Observation-tnm-clinical-regional-nodes-category-cN3.html",
|
158
|
+
"Observation-tnm-clinical-regional-nodes-category-cN3.json.html",
|
159
|
+
"Observation-tnm-clinical-regional-nodes-category-cN3.ttl.html",
|
160
|
+
"Observation-tnm-clinical-regional-nodes-category-cN3.xml.html",
|
161
|
+
"Organization-example-healthcare-org.change.history.html",
|
162
|
+
"Organization-example-healthcare-org.html",
|
163
|
+
"Organization-example-healthcare-org.json.html",
|
164
|
+
"Organization-example-healthcare-org.ttl.html",
|
165
|
+
"Organization-example-healthcare-org.xml.html",
|
166
|
+
"Organization-example-pha-org.change.history.html",
|
167
|
+
"Organization-example-pha-org.html",
|
168
|
+
"Organization-example-pha-org.json.html",
|
169
|
+
"Organization-example-pha-org.ttl.html",
|
170
|
+
"Organization-example-pha-org.xml.html",
|
171
|
+
"Patient-example.change.history.html",
|
172
|
+
"Patient-example.html",
|
173
|
+
"Patient-example.json.html",
|
174
|
+
"Patient-example.ttl.html",
|
175
|
+
"Patient-example.xml.html",
|
176
|
+
"PlanDefinition-plandefinition-central-cancer-registry-reporting-example-testing.html",
|
177
|
+
"PlanDefinition-plandefinition-central-cancer-registry-reporting-example.change.history.html",
|
178
|
+
"PlanDefinition-plandefinition-central-cancer-registry-reporting-example.html",
|
179
|
+
"PlanDefinition-plandefinition-central-cancer-registry-reporting-example.json.html",
|
180
|
+
"PlanDefinition-plandefinition-central-cancer-registry-reporting-example.ttl.html",
|
181
|
+
"PlanDefinition-plandefinition-central-cancer-registry-reporting-example.xml.html",
|
182
|
+
"Practitioner-1.change.history.html",
|
183
|
+
"Practitioner-1.html",
|
184
|
+
"Practitioner-1.json.html",
|
185
|
+
"Practitioner-1.ttl.html",
|
186
|
+
"Practitioner-1.xml.html",
|
187
|
+
"Procedure-radiotherapy-example.change.history.html",
|
188
|
+
"Procedure-radiotherapy-example.html",
|
189
|
+
"Procedure-radiotherapy-example.json.html",
|
190
|
+
"Procedure-radiotherapy-example.ttl.html",
|
191
|
+
"Procedure-radiotherapy-example.xml.html",
|
192
|
+
"searchform.html",
|
193
|
+
"spec.html",
|
194
|
+
"StructureDefinition-cancer-encounter-definitions.html",
|
195
|
+
"StructureDefinition-cancer-encounter-examples.html",
|
196
|
+
"StructureDefinition-cancer-encounter-mappings.html",
|
197
|
+
"StructureDefinition-cancer-encounter-testing.html",
|
198
|
+
"StructureDefinition-cancer-encounter.html",
|
199
|
+
"StructureDefinition-cancer-encounter.profile.history.html",
|
200
|
+
"StructureDefinition-cancer-encounter.profile.json.html",
|
201
|
+
"StructureDefinition-cancer-encounter.profile.ttl.html",
|
202
|
+
"StructureDefinition-cancer-encounter.profile.xml.html",
|
203
|
+
"StructureDefinition-cancer-patient-definitions.html",
|
204
|
+
"StructureDefinition-cancer-patient-examples.html",
|
205
|
+
"StructureDefinition-cancer-patient-mappings.html",
|
206
|
+
"StructureDefinition-cancer-patient-testing.html",
|
207
|
+
"StructureDefinition-cancer-patient.html",
|
208
|
+
"StructureDefinition-cancer-patient.profile.history.html",
|
209
|
+
"StructureDefinition-cancer-patient.profile.json.html",
|
210
|
+
"StructureDefinition-cancer-patient.profile.ttl.html",
|
211
|
+
"StructureDefinition-cancer-patient.profile.xml.html",
|
212
|
+
"StructureDefinition-ccrr-composition-definitions.html",
|
213
|
+
"StructureDefinition-ccrr-composition-examples.html",
|
214
|
+
"StructureDefinition-ccrr-composition-mappings.html",
|
215
|
+
"StructureDefinition-ccrr-composition-testing.html",
|
216
|
+
"StructureDefinition-ccrr-composition.html",
|
217
|
+
"StructureDefinition-ccrr-composition.profile.history.html",
|
218
|
+
"StructureDefinition-ccrr-composition.profile.json.html",
|
219
|
+
"StructureDefinition-ccrr-composition.profile.ttl.html",
|
220
|
+
"StructureDefinition-ccrr-composition.profile.xml.html",
|
221
|
+
"StructureDefinition-ccrr-content-bundle-definitions.html",
|
222
|
+
"StructureDefinition-ccrr-content-bundle-examples.html",
|
223
|
+
"StructureDefinition-ccrr-content-bundle-mappings.html",
|
224
|
+
"StructureDefinition-ccrr-content-bundle-testing.html",
|
225
|
+
"StructureDefinition-ccrr-content-bundle.html",
|
226
|
+
"StructureDefinition-ccrr-content-bundle.profile.history.html",
|
227
|
+
"StructureDefinition-ccrr-content-bundle.profile.json.html",
|
228
|
+
"StructureDefinition-ccrr-content-bundle.profile.ttl.html",
|
229
|
+
"StructureDefinition-ccrr-content-bundle.profile.xml.html",
|
230
|
+
"StructureDefinition-ccrr-plandefinition-definitions.html",
|
231
|
+
"StructureDefinition-ccrr-plandefinition-examples.html",
|
232
|
+
"StructureDefinition-ccrr-plandefinition-mappings.html",
|
233
|
+
"StructureDefinition-ccrr-plandefinition-testing.html",
|
234
|
+
"StructureDefinition-ccrr-plandefinition.html",
|
235
|
+
"StructureDefinition-ccrr-plandefinition.profile.history.html",
|
236
|
+
"StructureDefinition-ccrr-plandefinition.profile.json.html",
|
237
|
+
"StructureDefinition-ccrr-plandefinition.profile.ttl.html",
|
238
|
+
"StructureDefinition-ccrr-plandefinition.profile.xml.html",
|
239
|
+
"StructureDefinition-ccrr-reporting-bundle-definitions.html",
|
240
|
+
"StructureDefinition-ccrr-reporting-bundle-examples.html",
|
241
|
+
"StructureDefinition-ccrr-reporting-bundle-mappings.html",
|
242
|
+
"StructureDefinition-ccrr-reporting-bundle-testing.html",
|
243
|
+
"StructureDefinition-ccrr-reporting-bundle.html",
|
244
|
+
"StructureDefinition-ccrr-reporting-bundle.profile.history.html",
|
245
|
+
"StructureDefinition-ccrr-reporting-bundle.profile.json.html",
|
246
|
+
"StructureDefinition-ccrr-reporting-bundle.profile.ttl.html",
|
247
|
+
"StructureDefinition-ccrr-reporting-bundle.profile.xml.html",
|
248
|
+
"StructureDefinition-central-cancer-registry-primary-cancer-condition-definitions.html",
|
249
|
+
"StructureDefinition-central-cancer-registry-primary-cancer-condition-examples.html",
|
250
|
+
"StructureDefinition-central-cancer-registry-primary-cancer-condition-mappings.html",
|
251
|
+
"StructureDefinition-central-cancer-registry-primary-cancer-condition-testing.html",
|
252
|
+
"StructureDefinition-central-cancer-registry-primary-cancer-condition.html",
|
253
|
+
"StructureDefinition-central-cancer-registry-primary-cancer-condition.profile.history.html",
|
254
|
+
"StructureDefinition-central-cancer-registry-primary-cancer-condition.profile.json.html",
|
255
|
+
"StructureDefinition-central-cancer-registry-primary-cancer-condition.profile.ttl.html",
|
256
|
+
"StructureDefinition-central-cancer-registry-primary-cancer-condition.profile.xml.html",
|
257
|
+
"StructureDefinition-central-cancer-registry-reporting-messageheader-definitions.html",
|
258
|
+
"StructureDefinition-central-cancer-registry-reporting-messageheader-examples.html",
|
259
|
+
"StructureDefinition-central-cancer-registry-reporting-messageheader-mappings.html",
|
260
|
+
"StructureDefinition-central-cancer-registry-reporting-messageheader-testing.html",
|
261
|
+
"StructureDefinition-central-cancer-registry-reporting-messageheader.html",
|
262
|
+
"StructureDefinition-central-cancer-registry-reporting-messageheader.profile.history.html",
|
263
|
+
"StructureDefinition-central-cancer-registry-reporting-messageheader.profile.json.html",
|
264
|
+
"StructureDefinition-central-cancer-registry-reporting-messageheader.profile.ttl.html",
|
265
|
+
"StructureDefinition-central-cancer-registry-reporting-messageheader.profile.xml.html",
|
266
|
+
"StructureDefinition-us-ph-patient-definitions.html",
|
267
|
+
"StructureDefinition-us-ph-patient-examples.html",
|
268
|
+
"StructureDefinition-us-ph-patient-mappings.html",
|
269
|
+
"StructureDefinition-us-ph-patient-testing.html",
|
270
|
+
"StructureDefinition-us-ph-patient.html",
|
271
|
+
"StructureDefinition-us-ph-patient.profile.history.html",
|
272
|
+
"StructureDefinition-us-ph-patient.profile.json.html",
|
273
|
+
"StructureDefinition-us-ph-patient.profile.ttl.html",
|
274
|
+
"StructureDefinition-us-ph-patient.profile.xml.html",
|
275
|
+
"StructureDefinition-us-ph-tribal-affiliation-extension-definitions.html",
|
276
|
+
"StructureDefinition-us-ph-tribal-affiliation-extension-mappings.html",
|
277
|
+
"StructureDefinition-us-ph-tribal-affiliation-extension-testing.html",
|
278
|
+
"StructureDefinition-us-ph-tribal-affiliation-extension.html",
|
279
|
+
"StructureDefinition-us-ph-tribal-affiliation-extension.profile.history.html",
|
280
|
+
"StructureDefinition-us-ph-tribal-affiliation-extension.profile.json.html",
|
281
|
+
"StructureDefinition-us-ph-tribal-affiliation-extension.profile.ttl.html",
|
282
|
+
"StructureDefinition-us-ph-tribal-affiliation-extension.profile.xml.html",
|
283
|
+
"toc.html",
|
284
|
+
"usecases.html",
|
285
|
+
"ValueSet-cancer-core-reportability-codes-testing.html",
|
286
|
+
"ValueSet-cancer-core-reportability-codes.change.history.html",
|
287
|
+
"ValueSet-cancer-core-reportability-codes.html",
|
288
|
+
"ValueSet-cancer-core-reportability-codes.json.html",
|
289
|
+
"ValueSet-cancer-core-reportability-codes.ttl.html",
|
290
|
+
"ValueSet-cancer-core-reportability-codes.xml.html"
|
291
|
+
],
|
292
|
+
"images" : []
|
293
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"resourceType":"Bundle","type":"collection","timestamp":"2024-05-31T13:06:49.947+00:00","entry":[{"fullUrl":"http://hl7.org/fhir/us/central-cancer-registry-reporting/OperationOutcome/ImplementationGuide-hl7.fhir.us.central-cancer-registry-reporting","resource":{"resourceType":"OperationOutcome","id":"ImplementationGuide-hl7.fhir.us.central-cancer-registry-reporting"}},{"fullUrl":"http://hl7.org/fhir/us/central-cancer-registry-reporting/OperationOutcome/AllergyIntolerance-example","resource":{"resourceType":"OperationOutcome","id":"AllergyIntolerance-example"}},{"fullUrl":"http://hl7.org/fhir/us/central-cancer-registry-reporting/OperationOutcome/BodyStructure-jenny-m-chest-wall-lymph-nodes-treatment-volume","resource":{"resourceType":"OperationOutcome","id":"BodyStructure-jenny-m-chest-wall-lymph-nodes-treatment-volume"}},{"fullUrl":"http://hl7.org/fhir/us/central-cancer-registry-reporting/OperationOutcome/BodyStructure-jenny-m-chest-wall-treatment-volume","resource":{"resourceType":"OperationOutcome","id":"BodyStructure-jenny-m-chest-wall-treatment-volume"}},{"fullUrl":"http://hl7.org/fhir/us/central-cancer-registry-reporting/OperationOutcome/Bundle-central-cancer-registry-reporting-specification-bundle-example","resource":{"resourceType":"OperationOutcome","id":"Bundle-central-cancer-registry-reporting-specification-bundle-example"}},{"fullUrl":"http://hl7.org/fhir/us/central-cancer-registry-reporting/OperationOutcome/Patient-example","resource":{"resourceType":"OperationOutcome","id":"Patient-example"}},{"fullUrl":"http://hl7.org/fhir/us/central-cancer-registry-reporting/OperationOutcome/MedicationAdministration-cancer-related-medication-administration-example","resource":{"resourceType":"OperationOutcome","id":"MedicationAdministration-cancer-related-medication-administration-example"}},{"fullUrl":"http://hl7.org/fhir/us/central-cancer-registry-reporting/OperationOutcome/Observation-cancer-stage-group-example","resource":{"resourceType":"OperationOutcome","id":"Observation-cancer-stage-group-example"}},{"fullUrl":"http://hl7.org/fhir/us/central-cancer-registry-reporting/OperationOutcome/Composition-ccrr-composition-example","resource":{"resourceType":"OperationOutcome","id":"Composition-ccrr-composition-example"}},{"fullUrl":"http://hl7.org/fhir/us/central-cancer-registry-reporting/OperationOutcome/Bundle-ccrr-content-bundle-example","resource":{"resourceType":"OperationOutcome","id":"Bundle-ccrr-content-bundle-example"}},{"fullUrl":"http://hl7.org/fhir/us/central-cancer-registry-reporting/OperationOutcome/Bundle-reporting-bundle-example","resource":{"resourceType":"OperationOutcome","id":"Bundle-reporting-bundle-example"}},{"fullUrl":"http://hl7.org/fhir/us/central-cancer-registry-reporting/OperationOutcome/Encounter-encounter-cancer-example","resource":{"resourceType":"OperationOutcome","id":"Encounter-encounter-cancer-example"}},{"fullUrl":"http://hl7.org/fhir/us/central-cancer-registry-reporting/OperationOutcome/Endpoint-example-healthcare-endpoint","resource":{"resourceType":"OperationOutcome","id":"Endpoint-example-healthcare-endpoint"}},{"fullUrl":"http://hl7.org/fhir/us/central-cancer-registry-reporting/OperationOutcome/Endpoint-example-ph-endpoint","resource":{"resourceType":"OperationOutcome","id":"Endpoint-example-ph-endpoint"}},{"fullUrl":"http://hl7.org/fhir/us/central-cancer-registry-reporting/OperationOutcome/MessageHeader-messageheader-example-reportheader","resource":{"resourceType":"OperationOutcome","id":"MessageHeader-messageheader-example-reportheader"}},{"fullUrl":"http://hl7.org/fhir/us/central-cancer-registry-reporting/OperationOutcome/Organization-example-pha-org","resource":{"resourceType":"OperationOutcome","id":"Organization-example-pha-org"}},{"fullUrl":"http://hl7.org/fhir/us/central-cancer-registry-reporting/OperationOutcome/Organization-example-healthcare-org","resource":{"resourceType":"OperationOutcome","id":"Organization-example-healthcare-org"}},{"fullUrl":"http://hl7.org/fhir/us/central-cancer-registry-reporting/OperationOutcome/PlanDefinition-plandefinition-central-cancer-registry-reporting-example","resource":{"resourceType":"OperationOutcome","id":"PlanDefinition-plandefinition-central-cancer-registry-reporting-example"}},{"fullUrl":"http://hl7.org/fhir/us/central-cancer-registry-reporting/OperationOutcome/Practitioner-1","resource":{"resourceType":"OperationOutcome","id":"Practitioner-1"}},{"fullUrl":"http://hl7.org/fhir/us/central-cancer-registry-reporting/OperationOutcome/Condition-primary-cancer-condition-breast","resource":{"resourceType":"OperationOutcome","id":"Condition-primary-cancer-condition-breast"}},{"fullUrl":"http://hl7.org/fhir/us/central-cancer-registry-reporting/OperationOutcome/Procedure-radiotherapy-example","resource":{"resourceType":"OperationOutcome","id":"Procedure-radiotherapy-example"}},{"fullUrl":"http://hl7.org/fhir/us/central-cancer-registry-reporting/OperationOutcome/Observation-tnm-clinical-distant-metastases-category-cM0","resource":{"resourceType":"OperationOutcome","id":"Observation-tnm-clinical-distant-metastases-category-cM0"}},{"fullUrl":"http://hl7.org/fhir/us/central-cancer-registry-reporting/OperationOutcome/Observation-tnm-clinical-primary-tumor-category-cT3","resource":{"resourceType":"OperationOutcome","id":"Observation-tnm-clinical-primary-tumor-category-cT3"}},{"fullUrl":"http://hl7.org/fhir/us/central-cancer-registry-reporting/OperationOutcome/Observation-tnm-clinical-regional-nodes-category-cN3","resource":{"resourceType":"OperationOutcome","id":"Observation-tnm-clinical-regional-nodes-category-cN3"}},{"fullUrl":"http://hl7.org/fhir/us/central-cancer-registry-reporting/OperationOutcome/StructureDefinition-ccrr-content-bundle","resource":{"resourceType":"OperationOutcome","id":"StructureDefinition-ccrr-content-bundle"}},{"fullUrl":"http://hl7.org/fhir/us/central-cancer-registry-reporting/OperationOutcome/StructureDefinition-ccrr-reporting-bundle","resource":{"resourceType":"OperationOutcome","id":"StructureDefinition-ccrr-reporting-bundle"}},{"fullUrl":"http://hl7.org/fhir/us/central-cancer-registry-reporting/OperationOutcome/CapabilityStatement-central-cancer-registry-reporting-ehr","resource":{"resourceType":"OperationOutcome","id":"CapabilityStatement-central-cancer-registry-reporting-ehr"}},{"fullUrl":"http://hl7.org/fhir/us/central-cancer-registry-reporting/OperationOutcome/StructureDefinition-ccrr-composition","resource":{"resourceType":"OperationOutcome","id":"StructureDefinition-ccrr-composition"}},{"fullUrl":"http://hl7.org/fhir/us/central-cancer-registry-reporting/OperationOutcome/StructureDefinition-central-cancer-registry-reporting-messageheader","resource":{"resourceType":"OperationOutcome","id":"StructureDefinition-central-cancer-registry-reporting-messageheader"}},{"fullUrl":"http://hl7.org/fhir/us/central-cancer-registry-reporting/OperationOutcome/StructureDefinition-central-cancer-registry-primary-cancer-condition","resource":{"resourceType":"OperationOutcome","id":"StructureDefinition-central-cancer-registry-primary-cancer-condition"}},{"fullUrl":"http://hl7.org/fhir/us/central-cancer-registry-reporting/OperationOutcome/StructureDefinition-cancer-encounter","resource":{"resourceType":"OperationOutcome","id":"StructureDefinition-cancer-encounter"}},{"fullUrl":"http://hl7.org/fhir/us/central-cancer-registry-reporting/OperationOutcome/StructureDefinition-us-ph-patient","resource":{"resourceType":"OperationOutcome","id":"StructureDefinition-us-ph-patient"}},{"fullUrl":"http://hl7.org/fhir/us/central-cancer-registry-reporting/OperationOutcome/StructureDefinition-ccrr-plandefinition","resource":{"resourceType":"OperationOutcome","id":"StructureDefinition-ccrr-plandefinition"}},{"fullUrl":"http://hl7.org/fhir/us/central-cancer-registry-reporting/OperationOutcome/StructureDefinition-us-ph-tribal-affiliation-extension","resource":{"resourceType":"OperationOutcome","id":"StructureDefinition-us-ph-tribal-affiliation-extension"}},{"fullUrl":"http://hl7.org/fhir/us/central-cancer-registry-reporting/OperationOutcome/ValueSet-cancer-core-reportability-codes","resource":{"resourceType":"OperationOutcome","id":"ValueSet-cancer-core-reportability-codes"}},{"fullUrl":"http://hl7.org/fhir/us/central-cancer-registry-reporting/OperationOutcome/StructureDefinition-cancer-patient","resource":{"resourceType":"OperationOutcome","id":"StructureDefinition-cancer-patient"}}]}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"ImplementationGuide/hl7.fhir.us.central-cancer-registry-reporting":{"errors":0,"warnings":0},"AllergyIntolerance/example":{"errors":0,"warnings":0},"BodyStructure/jenny-m-chest-wall-lymph-nodes-treatment-volume":{"errors":0,"warnings":0},"BodyStructure/jenny-m-chest-wall-treatment-volume":{"errors":0,"warnings":0},"Bundle/central-cancer-registry-reporting-specification-bundle-example":{"errors":0,"warnings":0},"Patient/example":{"errors":0,"warnings":0},"MedicationAdministration/cancer-related-medication-administration-example":{"errors":0,"warnings":0},"Observation/cancer-stage-group-example":{"errors":0,"warnings":0},"Composition/ccrr-composition-example":{"errors":0,"warnings":0},"Bundle/ccrr-content-bundle-example":{"errors":0,"warnings":0},"Bundle/reporting-bundle-example":{"errors":0,"warnings":0},"Encounter/encounter-cancer-example":{"errors":0,"warnings":0},"Endpoint/example-healthcare-endpoint":{"errors":0,"warnings":0},"Endpoint/example-ph-endpoint":{"errors":0,"warnings":0},"MessageHeader/messageheader-example-reportheader":{"errors":0,"warnings":0},"Organization/example-pha-org":{"errors":0,"warnings":0},"Organization/example-healthcare-org":{"errors":0,"warnings":0},"PlanDefinition/plandefinition-central-cancer-registry-reporting-example":{"errors":0,"warnings":0},"Practitioner/1":{"errors":0,"warnings":0},"Condition/primary-cancer-condition-breast":{"errors":0,"warnings":0},"Procedure/radiotherapy-example":{"errors":0,"warnings":0},"Observation/tnm-clinical-distant-metastases-category-cM0":{"errors":0,"warnings":0},"Observation/tnm-clinical-primary-tumor-category-cT3":{"errors":0,"warnings":0},"Observation/tnm-clinical-regional-nodes-category-cN3":{"errors":0,"warnings":0},"StructureDefinition/ccrr-content-bundle":{"errors":0,"warnings":0},"StructureDefinition/ccrr-reporting-bundle":{"errors":0,"warnings":0},"CapabilityStatement/central-cancer-registry-reporting-ehr":{"errors":0,"warnings":0},"StructureDefinition/ccrr-composition":{"errors":0,"warnings":0},"StructureDefinition/central-cancer-registry-reporting-messageheader":{"errors":0,"warnings":0},"StructureDefinition/central-cancer-registry-primary-cancer-condition":{"errors":0,"warnings":0},"StructureDefinition/cancer-encounter":{"errors":0,"warnings":0},"StructureDefinition/us-ph-patient":{"errors":0,"warnings":0},"StructureDefinition/ccrr-plandefinition":{"errors":0,"warnings":0},"StructureDefinition/us-ph-tribal-affiliation-extension":{"errors":0,"warnings":0},"ValueSet/cancer-core-reportability-codes":{"errors":0,"warnings":0},"StructureDefinition/cancer-patient":{"errors":0,"warnings":0}}
|
@@ -0,0 +1,30 @@
|
|
1
|
+
{
|
2
|
+
"version" : "1.0.0",
|
3
|
+
"tools-version" : 3,
|
4
|
+
"type" : "IG",
|
5
|
+
"date" : "20240531125550",
|
6
|
+
"license" : "CC0-1.0",
|
7
|
+
"canonical" : "http://hl7.org/fhir/us/central-cancer-registry-reporting",
|
8
|
+
"url" : "http://hl7.org/fhir/us/central-cancer-registry-reporting/STU1",
|
9
|
+
"title" : "Central Cancer Registry Reporting Content IG",
|
10
|
+
"description" : "The Central Cancer Registry Reporting Content IG provides healthcare organizations the necessary data exchange mechanisms to report cancer data to public health agencies. (built Fri, May 31, 2024 12:55+0000+00:00)",
|
11
|
+
"fhirVersions" : ["4.0.1"],
|
12
|
+
"dependencies" : {
|
13
|
+
"hl7.fhir.r4.core" : "4.0.1",
|
14
|
+
"hl7.terminology.r4" : "5.5.0",
|
15
|
+
"hl7.fhir.uv.extensions.r4" : "5.1.0",
|
16
|
+
"hl7.fhir.us.core" : "5.0.1",
|
17
|
+
"hl7.fhir.us.medmorph" : "1.0.0",
|
18
|
+
"hl7.fhir.uv.subscriptions-backport.r4" : "1.1.0",
|
19
|
+
"hl7.fhir.us.mcode" : "3.0.0",
|
20
|
+
"hl7.fhir.us.odh" : "1.1.0",
|
21
|
+
"hl7.fhir.uv.smart-app-launch" : "2.0.0"
|
22
|
+
},
|
23
|
+
"author" : "HL7 International / Public Health",
|
24
|
+
"directories" : {
|
25
|
+
"lib" : "package",
|
26
|
+
"example" : "example"
|
27
|
+
},
|
28
|
+
"jurisdiction" : "urn:iso:std:iso:3166#US",
|
29
|
+
"name" : "hl7.fhir.us.central-cancer-registry-reporting.r4"
|
30
|
+
}
|
data/lib/cancer_registry_reporting_test_kit/igs/package/xml/StructureDefinition-cancer-encounter.sch
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<sch:schema xmlns:sch="http://purl.oclc.org/dsdl/schematron" queryBinding="xslt2">
|
3
|
+
<sch:ns prefix="f" uri="http://hl7.org/fhir"/>
|
4
|
+
<sch:ns prefix="h" uri="http://www.w3.org/1999/xhtml"/>
|
5
|
+
<!--
|
6
|
+
This file contains just the constraints for the profile USCoreEncounterProfile
|
7
|
+
It includes the base constraints for the resource as well.
|
8
|
+
Because of the way that schematrons and containment work,
|
9
|
+
you may need to use this schematron fragment to build a,
|
10
|
+
single schematron that validates contained resources (if you have any)
|
11
|
+
-->
|
12
|
+
<sch:pattern>
|
13
|
+
<sch:title>f:Encounter/f:participant</sch:title>
|
14
|
+
<sch:rule context="f:Encounter/f:participant">
|
15
|
+
<sch:assert test="count(f:type) >= 1">type: minimum cardinality of 'type' is 1</sch:assert>
|
16
|
+
<sch:assert test="count(f:type) <= 1">type: maximum cardinality of 'type' is 1</sch:assert>
|
17
|
+
</sch:rule>
|
18
|
+
</sch:pattern>
|
19
|
+
</sch:schema>
|
data/lib/cancer_registry_reporting_test_kit/igs/package/xml/StructureDefinition-cancer-patient.sch
ADDED
@@ -0,0 +1,175 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<sch:schema xmlns:sch="http://purl.oclc.org/dsdl/schematron" queryBinding="xslt2">
|
3
|
+
<sch:ns prefix="f" uri="http://hl7.org/fhir"/>
|
4
|
+
<sch:ns prefix="h" uri="http://www.w3.org/1999/xhtml"/>
|
5
|
+
<!--
|
6
|
+
This file contains just the constraints for the profile USPublicHealthPatient
|
7
|
+
It includes the base constraints for the resource as well.
|
8
|
+
Because of the way that schematrons and containment work,
|
9
|
+
you may need to use this schematron fragment to build a,
|
10
|
+
single schematron that validates contained resources (if you have any)
|
11
|
+
-->
|
12
|
+
<sch:pattern>
|
13
|
+
<sch:title>f:Patient</sch:title>
|
14
|
+
<sch:rule context="f:Patient">
|
15
|
+
<sch:assert test="count(f:extension[@url = 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-race']) <= 1">extension with URL = 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-race': maximum cardinality of 'extension' is 1</sch:assert>
|
16
|
+
<sch:assert test="count(f:extension[@url = 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity']) <= 1">extension with URL = 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity': maximum cardinality of 'extension' is 1</sch:assert>
|
17
|
+
<sch:assert test="count(f:extension[@url = 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex']) <= 1">extension with URL = 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex': maximum cardinality of 'extension' is 1</sch:assert>
|
18
|
+
<sch:assert test="count(f:extension[@url = 'http://hl7.org/fhir/StructureDefinition/patient-birthPlace']) <= 1">extension with URL = 'http://hl7.org/fhir/StructureDefinition/patient-birthPlace': maximum cardinality of 'extension' is 1</sch:assert>
|
19
|
+
<sch:assert test="count(f:generalPractitioner) <= 1">generalPractitioner: maximum cardinality of 'generalPractitioner' is 1</sch:assert>
|
20
|
+
</sch:rule>
|
21
|
+
</sch:pattern>
|
22
|
+
<sch:pattern>
|
23
|
+
<sch:title>f:Patient/f:identifier</sch:title>
|
24
|
+
<sch:rule context="f:Patient/f:identifier">
|
25
|
+
<sch:assert test="count(f:extension[@url = 'http://hl7.org/fhir/StructureDefinition/data-absent-reason']) <= 1">extension with URL = 'http://hl7.org/fhir/StructureDefinition/data-absent-reason': maximum cardinality of 'extension' is 1</sch:assert>
|
26
|
+
<sch:assert test="count(f:extension[@url = 'http://hl7.org/fhir/StructureDefinition/data-absent-reason']) <= 1">extension with URL = 'http://hl7.org/fhir/StructureDefinition/data-absent-reason': maximum cardinality of 'extension' is 1</sch:assert>
|
27
|
+
<sch:assert test="count(f:type) >= 1">type: minimum cardinality of 'type' is 1</sch:assert>
|
28
|
+
<sch:assert test="count(f:extension[@url = 'http://hl7.org/fhir/StructureDefinition/data-absent-reason']) <= 1">extension with URL = 'http://hl7.org/fhir/StructureDefinition/data-absent-reason': maximum cardinality of 'extension' is 1</sch:assert>
|
29
|
+
<sch:assert test="count(f:type) >= 1">type: minimum cardinality of 'type' is 1</sch:assert>
|
30
|
+
<sch:assert test="count(f:extension[@url = 'http://hl7.org/fhir/StructureDefinition/data-absent-reason']) <= 1">extension with URL = 'http://hl7.org/fhir/StructureDefinition/data-absent-reason': maximum cardinality of 'extension' is 1</sch:assert>
|
31
|
+
<sch:assert test="count(f:type) >= 1">type: minimum cardinality of 'type' is 1</sch:assert>
|
32
|
+
<sch:assert test="count(f:extension[@url = 'http://hl7.org/fhir/StructureDefinition/data-absent-reason']) <= 1">extension with URL = 'http://hl7.org/fhir/StructureDefinition/data-absent-reason': maximum cardinality of 'extension' is 1</sch:assert>
|
33
|
+
<sch:assert test="count(f:type) >= 1">type: minimum cardinality of 'type' is 1</sch:assert>
|
34
|
+
</sch:rule>
|
35
|
+
</sch:pattern>
|
36
|
+
<sch:pattern>
|
37
|
+
<sch:title>f:Patient/f:identifier/f:type</sch:title>
|
38
|
+
<sch:rule context="f:Patient/f:identifier/f:type">
|
39
|
+
<sch:assert test="count(f:id) <= 1">id: maximum cardinality of 'id' is 1</sch:assert>
|
40
|
+
<sch:assert test="count(f:coding) >= 1">coding: minimum cardinality of 'coding' is 1</sch:assert>
|
41
|
+
<sch:assert test="count(f:coding) <= 1">coding: maximum cardinality of 'coding' is 1</sch:assert>
|
42
|
+
<sch:assert test="count(f:text) <= 1">text: maximum cardinality of 'text' is 1</sch:assert>
|
43
|
+
<sch:assert test="count(f:id) <= 1">id: maximum cardinality of 'id' is 1</sch:assert>
|
44
|
+
<sch:assert test="count(f:coding) >= 1">coding: minimum cardinality of 'coding' is 1</sch:assert>
|
45
|
+
<sch:assert test="count(f:coding) <= 1">coding: maximum cardinality of 'coding' is 1</sch:assert>
|
46
|
+
<sch:assert test="count(f:text) <= 1">text: maximum cardinality of 'text' is 1</sch:assert>
|
47
|
+
<sch:assert test="count(f:id) <= 1">id: maximum cardinality of 'id' is 1</sch:assert>
|
48
|
+
<sch:assert test="count(f:coding) >= 1">coding: minimum cardinality of 'coding' is 1</sch:assert>
|
49
|
+
<sch:assert test="count(f:coding) <= 1">coding: maximum cardinality of 'coding' is 1</sch:assert>
|
50
|
+
<sch:assert test="count(f:text) <= 1">text: maximum cardinality of 'text' is 1</sch:assert>
|
51
|
+
<sch:assert test="count(f:id) <= 1">id: maximum cardinality of 'id' is 1</sch:assert>
|
52
|
+
<sch:assert test="count(f:coding) >= 1">coding: minimum cardinality of 'coding' is 1</sch:assert>
|
53
|
+
<sch:assert test="count(f:coding) <= 1">coding: maximum cardinality of 'coding' is 1</sch:assert>
|
54
|
+
<sch:assert test="count(f:text) <= 1">text: maximum cardinality of 'text' is 1</sch:assert>
|
55
|
+
</sch:rule>
|
56
|
+
</sch:pattern>
|
57
|
+
<sch:pattern>
|
58
|
+
<sch:title>f:Patient/f:identifier/f:type/f:coding</sch:title>
|
59
|
+
<sch:rule context="f:Patient/f:identifier/f:type/f:coding">
|
60
|
+
<sch:assert test="count(f:id) <= 1">id: maximum cardinality of 'id' is 1</sch:assert>
|
61
|
+
<sch:assert test="count(f:system) >= 1">system: minimum cardinality of 'system' is 1</sch:assert>
|
62
|
+
<sch:assert test="count(f:system) <= 1">system: maximum cardinality of 'system' is 1</sch:assert>
|
63
|
+
<sch:assert test="count(f:version) <= 1">version: maximum cardinality of 'version' is 1</sch:assert>
|
64
|
+
<sch:assert test="count(f:code) >= 1">code: minimum cardinality of 'code' is 1</sch:assert>
|
65
|
+
<sch:assert test="count(f:code) <= 1">code: maximum cardinality of 'code' is 1</sch:assert>
|
66
|
+
<sch:assert test="count(f:display) <= 1">display: maximum cardinality of 'display' is 1</sch:assert>
|
67
|
+
<sch:assert test="count(f:userSelected) <= 1">userSelected: maximum cardinality of 'userSelected' is 1</sch:assert>
|
68
|
+
<sch:assert test="count(f:id) <= 1">id: maximum cardinality of 'id' is 1</sch:assert>
|
69
|
+
<sch:assert test="count(f:system) >= 1">system: minimum cardinality of 'system' is 1</sch:assert>
|
70
|
+
<sch:assert test="count(f:system) <= 1">system: maximum cardinality of 'system' is 1</sch:assert>
|
71
|
+
<sch:assert test="count(f:version) <= 1">version: maximum cardinality of 'version' is 1</sch:assert>
|
72
|
+
<sch:assert test="count(f:code) >= 1">code: minimum cardinality of 'code' is 1</sch:assert>
|
73
|
+
<sch:assert test="count(f:code) <= 1">code: maximum cardinality of 'code' is 1</sch:assert>
|
74
|
+
<sch:assert test="count(f:display) <= 1">display: maximum cardinality of 'display' is 1</sch:assert>
|
75
|
+
<sch:assert test="count(f:userSelected) <= 1">userSelected: maximum cardinality of 'userSelected' is 1</sch:assert>
|
76
|
+
<sch:assert test="count(f:id) <= 1">id: maximum cardinality of 'id' is 1</sch:assert>
|
77
|
+
<sch:assert test="count(f:system) >= 1">system: minimum cardinality of 'system' is 1</sch:assert>
|
78
|
+
<sch:assert test="count(f:system) <= 1">system: maximum cardinality of 'system' is 1</sch:assert>
|
79
|
+
<sch:assert test="count(f:version) <= 1">version: maximum cardinality of 'version' is 1</sch:assert>
|
80
|
+
<sch:assert test="count(f:code) >= 1">code: minimum cardinality of 'code' is 1</sch:assert>
|
81
|
+
<sch:assert test="count(f:code) <= 1">code: maximum cardinality of 'code' is 1</sch:assert>
|
82
|
+
<sch:assert test="count(f:display) <= 1">display: maximum cardinality of 'display' is 1</sch:assert>
|
83
|
+
<sch:assert test="count(f:userSelected) <= 1">userSelected: maximum cardinality of 'userSelected' is 1</sch:assert>
|
84
|
+
<sch:assert test="count(f:id) <= 1">id: maximum cardinality of 'id' is 1</sch:assert>
|
85
|
+
<sch:assert test="count(f:system) >= 1">system: minimum cardinality of 'system' is 1</sch:assert>
|
86
|
+
<sch:assert test="count(f:system) <= 1">system: maximum cardinality of 'system' is 1</sch:assert>
|
87
|
+
<sch:assert test="count(f:version) <= 1">version: maximum cardinality of 'version' is 1</sch:assert>
|
88
|
+
<sch:assert test="count(f:code) >= 1">code: minimum cardinality of 'code' is 1</sch:assert>
|
89
|
+
<sch:assert test="count(f:code) <= 1">code: maximum cardinality of 'code' is 1</sch:assert>
|
90
|
+
<sch:assert test="count(f:display) <= 1">display: maximum cardinality of 'display' is 1</sch:assert>
|
91
|
+
<sch:assert test="count(f:userSelected) <= 1">userSelected: maximum cardinality of 'userSelected' is 1</sch:assert>
|
92
|
+
</sch:rule>
|
93
|
+
</sch:pattern>
|
94
|
+
<sch:pattern>
|
95
|
+
<sch:title>f:Patient/f:name</sch:title>
|
96
|
+
<sch:rule context="f:Patient/f:name">
|
97
|
+
<sch:assert test="count(f:extension[@url = 'http://hl7.org/fhir/StructureDefinition/data-absent-reason']) <= 1">extension with URL = 'http://hl7.org/fhir/StructureDefinition/data-absent-reason': maximum cardinality of 'extension' is 1</sch:assert>
|
98
|
+
<sch:assert test="count(f:family) >= 1">family: minimum cardinality of 'family' is 1</sch:assert>
|
99
|
+
<sch:assert test="count(f:given) >= 1">given: minimum cardinality of 'given' is 1</sch:assert>
|
100
|
+
</sch:rule>
|
101
|
+
</sch:pattern>
|
102
|
+
<sch:pattern>
|
103
|
+
<sch:title>f:Patient/f:name/f:family</sch:title>
|
104
|
+
<sch:rule context="f:Patient/f:name/f:family">
|
105
|
+
<sch:assert test="count(f:id) <= 1">id: maximum cardinality of 'id' is 1</sch:assert>
|
106
|
+
<sch:assert test="count(f:extension[@url = 'http://hl7.org/fhir/StructureDefinition/data-absent-reason']) <= 1">extension with URL = 'http://hl7.org/fhir/StructureDefinition/data-absent-reason': maximum cardinality of 'extension' is 1</sch:assert>
|
107
|
+
<sch:assert test="count(f:value) <= 1">value: maximum cardinality of 'value' is 1</sch:assert>
|
108
|
+
</sch:rule>
|
109
|
+
</sch:pattern>
|
110
|
+
<sch:pattern>
|
111
|
+
<sch:title>f:Patient/f:name/f:given</sch:title>
|
112
|
+
<sch:rule context="f:Patient/f:name/f:given">
|
113
|
+
<sch:assert test="count(f:id) <= 1">id: maximum cardinality of 'id' is 1</sch:assert>
|
114
|
+
<sch:assert test="count(f:extension[@url = 'http://hl7.org/fhir/StructureDefinition/data-absent-reason']) <= 1">extension with URL = 'http://hl7.org/fhir/StructureDefinition/data-absent-reason': maximum cardinality of 'extension' is 1</sch:assert>
|
115
|
+
<sch:assert test="count(f:value) <= 1">value: maximum cardinality of 'value' is 1</sch:assert>
|
116
|
+
</sch:rule>
|
117
|
+
</sch:pattern>
|
118
|
+
<sch:pattern>
|
119
|
+
<sch:title>f:Patient/f:telecom</sch:title>
|
120
|
+
<sch:rule context="f:Patient/f:telecom">
|
121
|
+
<sch:assert test="count(f:extension[@url = 'http://hl7.org/fhir/StructureDefinition/data-absent-reason']) <= 1">extension with URL = 'http://hl7.org/fhir/StructureDefinition/data-absent-reason': maximum cardinality of 'extension' is 1</sch:assert>
|
122
|
+
</sch:rule>
|
123
|
+
</sch:pattern>
|
124
|
+
<sch:pattern>
|
125
|
+
<sch:title>f:Patient/f:gender</sch:title>
|
126
|
+
<sch:rule context="f:Patient/f:gender">
|
127
|
+
<sch:assert test="count(f:extension[@url = 'http://hl7.org/fhir/StructureDefinition/data-absent-reason']) <= 1">extension with URL = 'http://hl7.org/fhir/StructureDefinition/data-absent-reason': maximum cardinality of 'extension' is 1</sch:assert>
|
128
|
+
</sch:rule>
|
129
|
+
</sch:pattern>
|
130
|
+
<sch:pattern>
|
131
|
+
<sch:title>f:Patient/f:birthDate</sch:title>
|
132
|
+
<sch:rule context="f:Patient/f:birthDate">
|
133
|
+
<sch:assert test="count(f:extension[@url = 'http://hl7.org/fhir/StructureDefinition/data-absent-reason']) <= 1">extension with URL = 'http://hl7.org/fhir/StructureDefinition/data-absent-reason': maximum cardinality of 'extension' is 1</sch:assert>
|
134
|
+
</sch:rule>
|
135
|
+
</sch:pattern>
|
136
|
+
<sch:pattern>
|
137
|
+
<sch:title>f:Patient/f:address</sch:title>
|
138
|
+
<sch:rule context="f:Patient/f:address">
|
139
|
+
<sch:assert test="count(f:extension[@url = 'http://hl7.org/fhir/StructureDefinition/data-absent-reason']) <= 1">extension with URL = 'http://hl7.org/fhir/StructureDefinition/data-absent-reason': maximum cardinality of 'extension' is 1</sch:assert>
|
140
|
+
<sch:assert test="count(f:state) >= 1">state: minimum cardinality of 'state' is 1</sch:assert>
|
141
|
+
</sch:rule>
|
142
|
+
</sch:pattern>
|
143
|
+
<sch:pattern>
|
144
|
+
<sch:title>f:Patient/f:address/f:state</sch:title>
|
145
|
+
<sch:rule context="f:Patient/f:address/f:state">
|
146
|
+
<sch:assert test="count(f:id) <= 1">id: maximum cardinality of 'id' is 1</sch:assert>
|
147
|
+
<sch:assert test="count(f:extension[@url = 'http://hl7.org/fhir/StructureDefinition/data-absent-reason']) <= 1">extension with URL = 'http://hl7.org/fhir/StructureDefinition/data-absent-reason': maximum cardinality of 'extension' is 1</sch:assert>
|
148
|
+
<sch:assert test="count(f:value) <= 1">value: maximum cardinality of 'value' is 1</sch:assert>
|
149
|
+
</sch:rule>
|
150
|
+
</sch:pattern>
|
151
|
+
<sch:pattern>
|
152
|
+
<sch:title>f:Patient/f:contact/f:name</sch:title>
|
153
|
+
<sch:rule context="f:Patient/f:contact/f:name">
|
154
|
+
<sch:assert test="count(f:extension[@url = 'http://hl7.org/fhir/StructureDefinition/data-absent-reason']) <= 1">extension with URL = 'http://hl7.org/fhir/StructureDefinition/data-absent-reason': maximum cardinality of 'extension' is 1</sch:assert>
|
155
|
+
</sch:rule>
|
156
|
+
</sch:pattern>
|
157
|
+
<sch:pattern>
|
158
|
+
<sch:title>f:Patient/f:contact/f:telecom</sch:title>
|
159
|
+
<sch:rule context="f:Patient/f:contact/f:telecom">
|
160
|
+
<sch:assert test="count(f:extension[@url = 'http://hl7.org/fhir/StructureDefinition/data-absent-reason']) <= 1">extension with URL = 'http://hl7.org/fhir/StructureDefinition/data-absent-reason': maximum cardinality of 'extension' is 1</sch:assert>
|
161
|
+
</sch:rule>
|
162
|
+
</sch:pattern>
|
163
|
+
<sch:pattern>
|
164
|
+
<sch:title>f:Patient/f:contact/f:address</sch:title>
|
165
|
+
<sch:rule context="f:Patient/f:contact/f:address">
|
166
|
+
<sch:assert test="count(f:extension[@url = 'http://hl7.org/fhir/StructureDefinition/data-absent-reason']) <= 1">extension with URL = 'http://hl7.org/fhir/StructureDefinition/data-absent-reason': maximum cardinality of 'extension' is 1</sch:assert>
|
167
|
+
</sch:rule>
|
168
|
+
</sch:pattern>
|
169
|
+
<sch:pattern>
|
170
|
+
<sch:title>f:Patient/f:communication/f:language</sch:title>
|
171
|
+
<sch:rule context="f:Patient/f:communication/f:language">
|
172
|
+
<sch:assert test="count(f:extension[@url = 'http://hl7.org/fhir/StructureDefinition/data-absent-reason']) <= 1">extension with URL = 'http://hl7.org/fhir/StructureDefinition/data-absent-reason': maximum cardinality of 'extension' is 1</sch:assert>
|
173
|
+
</sch:rule>
|
174
|
+
</sch:pattern>
|
175
|
+
</sch:schema>
|