openehr 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +5 -0
- data/.rspec +2 -0
- data/.travis.yml +3 -0
- data/Gemfile +23 -0
- data/Guardfile +12 -0
- data/History.txt +36 -0
- data/PostInstall.txt +9 -0
- data/README.rdoc +82 -0
- data/Rakefile +44 -0
- data/VERSION +1 -0
- data/doc/openehr_terminology.xml +2700 -0
- data/lib/openehr.rb +11 -0
- data/lib/openehr/am.rb +8 -0
- data/lib/openehr/am/archetype.rb +133 -0
- data/lib/openehr/am/archetype/assertion.rb +190 -0
- data/lib/openehr/am/archetype/constraint_model.rb +328 -0
- data/lib/openehr/am/archetype/constraint_model/primitive.rb +327 -0
- data/lib/openehr/am/archetype/ontology.rb +126 -0
- data/lib/openehr/am/openehr_profile.rb +9 -0
- data/lib/openehr/am/openehr_profile/data_types.rb +13 -0
- data/lib/openehr/am/openehr_profile/data_types/basic.rb +114 -0
- data/lib/openehr/am/openehr_profile/data_types/quantity.rb +67 -0
- data/lib/openehr/am/openehr_profile/data_types/text.rb +22 -0
- data/lib/openehr/assumed_library_types.rb +691 -0
- data/lib/openehr/parser.rb +23 -0
- data/lib/openehr/parser/adl.rb +57 -0
- data/lib/openehr/parser/adl_grammar.tt +245 -0
- data/lib/openehr/parser/adl_parser.rb +52 -0
- data/lib/openehr/parser/cadl_grammar.tt +1527 -0
- data/lib/openehr/parser/cadl_node.rb +44 -0
- data/lib/openehr/parser/dadl.rb +13 -0
- data/lib/openehr/parser/dadl_grammar.tt +358 -0
- data/lib/openehr/parser/exception.rb +68 -0
- data/lib/openehr/parser/shared_token_grammar.tt +1229 -0
- data/lib/openehr/parser/validator.rb +19 -0
- data/lib/openehr/parser/xml_perser.rb +13 -0
- data/lib/openehr/rm.rb +15 -0
- data/lib/openehr/rm/common.rb +14 -0
- data/lib/openehr/rm/common/archetyped.rb +182 -0
- data/lib/openehr/rm/common/change_control.rb +332 -0
- data/lib/openehr/rm/common/directory.rb +29 -0
- data/lib/openehr/rm/common/generic.rb +216 -0
- data/lib/openehr/rm/common/resource.rb +154 -0
- data/lib/openehr/rm/composition.rb +103 -0
- data/lib/openehr/rm/composition/content.rb +22 -0
- data/lib/openehr/rm/composition/content/entry.rb +253 -0
- data/lib/openehr/rm/composition/content/navigation.rb +31 -0
- data/lib/openehr/rm/data_structures.rb +25 -0
- data/lib/openehr/rm/data_structures/history.rb +117 -0
- data/lib/openehr/rm/data_structures/item_structure.rb +218 -0
- data/lib/openehr/rm/data_structures/item_structure/representation.rb +63 -0
- data/lib/openehr/rm/data_types.rb +14 -0
- data/lib/openehr/rm/data_types/basic.rb +108 -0
- data/lib/openehr/rm/data_types/charset.lst +818 -0
- data/lib/openehr/rm/data_types/charset_extract.rb +24 -0
- data/lib/openehr/rm/data_types/encapsulated.rb +98 -0
- data/lib/openehr/rm/data_types/quantity.rb +402 -0
- data/lib/openehr/rm/data_types/quantity/date_time.rb +256 -0
- data/lib/openehr/rm/data_types/text.rb +169 -0
- data/lib/openehr/rm/data_types/time_specification.rb +75 -0
- data/lib/openehr/rm/data_types/uri.rb +83 -0
- data/lib/openehr/rm/demographic.rb +269 -0
- data/lib/openehr/rm/ehr.rb +162 -0
- data/lib/openehr/rm/integration.rb +27 -0
- data/lib/openehr/rm/security.rb +12 -0
- data/lib/openehr/rm/support.rb +14 -0
- data/lib/openehr/rm/support/definition.rb +15 -0
- data/lib/openehr/rm/support/identification.rb +412 -0
- data/lib/openehr/rm/support/measurement.rb +17 -0
- data/lib/openehr/rm/support/terminology.rb +135 -0
- data/lib/openehr/serializer.rb +272 -0
- data/lib/openehr/terminology.rb +7 -0
- data/lib/openehr/terminology/open_ehr_terminology.rb +41 -0
- data/lib/openehr/writer.rb +12 -0
- data/openehr.gemspec +472 -0
- data/spec/lib/openehr/am/archetype/archetype_spec.rb +103 -0
- data/spec/lib/openehr/am/archetype/assertion/assertion_spec.rb +60 -0
- data/spec/lib/openehr/am/archetype/assertion/assertion_variable_spec.rb +30 -0
- data/spec/lib/openehr/am/archetype/assertion/expr_binary_operator.rb +40 -0
- data/spec/lib/openehr/am/archetype/assertion/expr_item_spec.rb +28 -0
- data/spec/lib/openehr/am/archetype/assertion/expr_leaf_spec.rb +34 -0
- data/spec/lib/openehr/am/archetype/assertion/expr_operator_spec.rb +25 -0
- data/spec/lib/openehr/am/archetype/assertion/expr_unary_operator_spec.rb +26 -0
- data/spec/lib/openehr/am/archetype/assertion/operator_kind_spec.rb +114 -0
- data/spec/lib/openehr/am/archetype/constraint_model/archetype_constraint_spec.rb +56 -0
- data/spec/lib/openehr/am/archetype/constraint_model/archetype_internal_ref_spec.rb +36 -0
- data/spec/lib/openehr/am/archetype/constraint_model/archetype_slot_spec.rb +61 -0
- data/spec/lib/openehr/am/archetype/constraint_model/c_attribute_spec.rb +59 -0
- data/spec/lib/openehr/am/archetype/constraint_model/c_complex_object_spec.rb +39 -0
- data/spec/lib/openehr/am/archetype/constraint_model/c_defined_object_spec.rb +53 -0
- data/spec/lib/openehr/am/archetype/constraint_model/c_domain_type_spec.rb +25 -0
- data/spec/lib/openehr/am/archetype/constraint_model/c_multiple_attribute_spec.rb +23 -0
- data/spec/lib/openehr/am/archetype/constraint_model/c_object_spec.rb +61 -0
- data/spec/lib/openehr/am/archetype/constraint_model/c_primitive_object_spec.rb +33 -0
- data/spec/lib/openehr/am/archetype/constraint_model/c_reference_object_spec.rb +17 -0
- data/spec/lib/openehr/am/archetype/constraint_model/c_single_attribute_spec.rb +22 -0
- data/spec/lib/openehr/am/archetype/constraint_model/cardinality_spec.rb +68 -0
- data/spec/lib/openehr/am/archetype/constraint_model/constraint_ref_spec.rb +29 -0
- data/spec/lib/openehr/am/archetype/constraint_model/primitive/c_boolean_spec.rb +57 -0
- data/spec/lib/openehr/am/archetype/constraint_model/primitive/c_date_spec.rb +52 -0
- data/spec/lib/openehr/am/archetype/constraint_model/primitive/c_date_time_spec.rb +136 -0
- data/spec/lib/openehr/am/archetype/constraint_model/primitive/c_duration_spec.rb +41 -0
- data/spec/lib/openehr/am/archetype/constraint_model/primitive/c_integer_spec.rb +67 -0
- data/spec/lib/openehr/am/archetype/constraint_model/primitive/c_primitive_spec.rb +41 -0
- data/spec/lib/openehr/am/archetype/constraint_model/primitive/c_real_spec.rb +19 -0
- data/spec/lib/openehr/am/archetype/constraint_model/primitive/c_string_spec.rb +73 -0
- data/spec/lib/openehr/am/archetype/constraint_model/primitive/c_time_spec.rb +104 -0
- data/spec/lib/openehr/am/archetype/ontology/archetype_ontology_spec.rb +97 -0
- data/spec/lib/openehr/am/archetype/ontology/archetype_term_spec.rb +43 -0
- data/spec/lib/openehr/am/archetype/validity_kind_spec.rb +42 -0
- data/spec/lib/openehr/am/openehr_profile/data_types/basic/c_dv_state_spec.rb +34 -0
- data/spec/lib/openehr/am/openehr_profile/data_types/basic/non_terminal_state_spec.rb +36 -0
- data/spec/lib/openehr/am/openehr_profile/data_types/basic/state_machine_spec.rb +34 -0
- data/spec/lib/openehr/am/openehr_profile/data_types/basic/state_spec.rb +26 -0
- data/spec/lib/openehr/am/openehr_profile/data_types/basic/terminal_state_spec.rb +18 -0
- data/spec/lib/openehr/am/openehr_profile/data_types/basic/transition_spec.rb +62 -0
- data/spec/lib/openehr/am/openehr_profile/data_types/quantity/c_dv_ordinal_spec.rb +41 -0
- data/spec/lib/openehr/am/openehr_profile/data_types/quantity/c_dv_quantity_spec.rb +50 -0
- data/spec/lib/openehr/am/openehr_profile/data_types/quantity/c_quantity_item_spec.rb +46 -0
- data/spec/lib/openehr/am/openehr_profile/data_types/text/c_code_phrase_spec.rb +34 -0
- data/spec/lib/openehr/assumed_library_types/interval_spec.rb +145 -0
- data/spec/lib/openehr/assumed_library_types/iso8601_date_spec.rb +236 -0
- data/spec/lib/openehr/assumed_library_types/iso8601_date_time_spec.rb +47 -0
- data/spec/lib/openehr/assumed_library_types/iso8601_duration_spec.rb +150 -0
- data/spec/lib/openehr/assumed_library_types/iso8601_time_spec.rb +234 -0
- data/spec/lib/openehr/assumed_library_types/iso8601_timezone_spec.rb +57 -0
- data/spec/lib/openehr/assumed_library_types/time_definitions_spec.rb +136 -0
- data/spec/lib/openehr/assumed_library_types/timezone_spec.rb +42 -0
- data/spec/lib/openehr/parser/adl14/adl-test-ENTRY.assumed_types.v1.adl +88 -0
- data/spec/lib/openehr/parser/adl14/adl-test-ENTRY.basic_types.v1.adl +143 -0
- data/spec/lib/openehr/parser/adl14/adl-test-ENTRY.basic_types_fail.v1.adl +50 -0
- data/spec/lib/openehr/parser/adl14/adl-test-ENTRY.most_minimal.v1.adl +27 -0
- data/spec/lib/openehr/parser/adl14/adl-test-ENTRY.structure_test1.v1.adl +46 -0
- data/spec/lib/openehr/parser/adl14/adl-test-SOME_TYPE.generic_type_basic.draft.adl +56 -0
- data/spec/lib/openehr/parser/adl14/adl-test-SOME_TYPE.generic_type_use_node.draft.adl +63 -0
- data/spec/lib/openehr/parser/adl14/adl-test-car.paths.test.adl +80 -0
- data/spec/lib/openehr/parser/adl14/adl-test-car.use_node.test.adl +87 -0
- data/spec/lib/openehr/parser/adl14/adl-test-composition.dv_coded_text.test.adl +29 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.archetype_bindings.test.adl +47 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.archetype_desc_missing_purpose.test.adl +45 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.archetype_description.test.adl +61 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.archetype_description2.test.adl +45 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.archetype_identification.test.adl +26 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.archetype_internal_ref.test.adl +36 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.archetype_internal_ref2.test.adl +36 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.archetype_language.test.adl +47 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.archetype_language_no_accreditation.test.adl +38 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.archetype_language_order_of_translation_details.test.adl +40 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.archetype_ontology.test.adl +25 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.archetype_slot.test.adl +40 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.archetype_slot.test2.adl +37 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.archetype_uncommonkeys.test.adl +29 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.basic_types.test.adl +272 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.c_code_phrase.test.adl +77 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.c_dv_ordinal.test.adl +66 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.c_dv_quantity_empty.test.adl +46 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.c_dv_quantity_full.test.adl +64 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.c_dv_quantity_full2.test.adl +64 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.c_dv_quantity_full3.test.adl +64 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.c_dv_quantity_item_units_only.test.adl +55 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.c_dv_quantity_list.test.adl +58 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.c_dv_quantity_property.test.adl +47 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.c_dv_quantity_reversed.test.adl +59 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.constraint_binding.test.adl +37 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.constraint_ref.test.adl +43 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.datetime.test.adl +183 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.domain_types.test.adl +97 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.durations.test.adl +109 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.empty_other_contributors.test.adl +42 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.missing_language.test.adl +23 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.mixed_node_types.draft.adl +61 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.most_minimal.test.adl +23 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.multi_language.test.adl +52 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.special_string.test.adl +88 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.structure_test1.test.adl +45 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.structure_test2.test.adl +45 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.term_binding.test.adl +37 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.term_binding2.test.adl +32 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.testtranslations.test.adl +83 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.translations_author_language.test.adl +34 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.translations_language_author.test.adl +34 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.unicode_BOM_support.test.adl +41 -0
- data/spec/lib/openehr/parser/adl14/adl-test-entry.unicode_support.test.adl +41 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-ACTION.imaging.v1.adl +275 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-ACTION.referral.v1.adl +351 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-CLUSTER.auscultation-chest.v1.adl +765 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-CLUSTER.auscultation.v1.adl +48 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-CLUSTER.dimensions-circumference.v1.adl +134 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-CLUSTER.dimensions.v1.adl +241 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-CLUSTER.exam-abdomen.v1.adl +321 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-CLUSTER.exam-chest.v1.adl +379 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-CLUSTER.exam-fetus.v1.adl +577 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-CLUSTER.exam-generic-joint.v1.adl +146 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-CLUSTER.exam-generic-lymphnode.v1.adl +176 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-CLUSTER.exam-generic-mass.v1.adl +221 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-CLUSTER.exam-generic.v1.adl +139 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-CLUSTER.exam-nervous_system.v1.adl +116 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-CLUSTER.exam-uterine_cervix.v1.adl +420 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-CLUSTER.exam-uterus.v1.adl +293 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-COMPOSITION.discharge.v1draft.adl +53 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-COMPOSITION.encounter.v1draft.adl +45 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-EVALUATION.adverse.v1.adl +411 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-EVALUATION.columna_vertebral.v1.adl +85 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-INSTRUCTION.medication.v1.adl +88 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-INSTRUCTION.referral.v1.adl +84 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-ITEM_TREE.Laboratory_request.v1.adl +492 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-ITEM_TREE.follow_up.v1draft.adl +94 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-ITEM_TREE.imaging.v1.adl +127 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-ITEM_TREE.medication-formulation.v1.adl +457 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-ITEM_TREE.medication.v1.adl +869 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-ITEM_TREE.referral.v1.adl +494 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-OBSERVATION.apgar.v1.adl +545 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-OBSERVATION.blood_pressure.v1.adl +673 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-OBSERVATION.body_mass_index.v1.adl +166 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-OBSERVATION.lab_test.v1.adl +376 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-OBSERVATION.testassumedvalue.v1.adl +99 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-SECTION.findings.v1.adl +47 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-SECTION.reason_for_encounter.v1.adl +51 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-SECTION.summary.v1.adl +52 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-SECTION.vital_signs.v1.adl +54 -0
- data/spec/lib/openehr/parser/adl_archetype_internal_ref2_spec.rb +42 -0
- data/spec/lib/openehr/parser/adl_archetype_internal_ref_spec.rb +125 -0
- data/spec/lib/openehr/parser/adl_archetype_internal_ref_with_generics_spec.rb +258 -0
- data/spec/lib/openehr/parser/adl_archetype_ontology_binding_spec.rb +98 -0
- data/spec/lib/openehr/parser/adl_archetype_ontology_spec.rb +42 -0
- data/spec/lib/openehr/parser/adl_archetype_slot_cluster_spec.rb +101 -0
- data/spec/lib/openehr/parser/adl_archetype_slot_spec.rb +193 -0
- data/spec/lib/openehr/parser/adl_archetype_uncommon_term_keys_spec.rb +25 -0
- data/spec/lib/openehr/parser/adl_description_spec.rb +164 -0
- data/spec/lib/openehr/parser/adl_identification_spec.rb +18 -0
- data/spec/lib/openehr/parser/adl_language_no_accreditation_spec.rb +66 -0
- data/spec/lib/openehr/parser/adl_language_order_spec.rb +68 -0
- data/spec/lib/openehr/parser/adl_language_spec.rb +119 -0
- data/spec/lib/openehr/parser/adl_language_translation_author_language_spec.rb +50 -0
- data/spec/lib/openehr/parser/adl_language_translation_language_author_spec.rb +46 -0
- data/spec/lib/openehr/parser/adl_parser_spec.rb +347 -0
- data/spec/lib/openehr/parser/adl_path_spec.rb +176 -0
- data/spec/lib/openehr/parser/base_spec.rb +19 -0
- data/spec/lib/openehr/parser/basic_generic_type_spec.rb +18 -0
- data/spec/lib/openehr/parser/basic_type_spec.rb +2922 -0
- data/spec/lib/openehr/parser/c_dv_quantity_any_allowed_spec.rb +34 -0
- data/spec/lib/openehr/parser/c_dv_quantity_shared_example_for_lacked_items_spec.rb +36 -0
- data/spec/lib/openehr/parser/c_dv_quantity_shared_example_spec.rb +146 -0
- data/spec/lib/openehr/parser/cdv_ordinal_parse_spec.rb +231 -0
- data/spec/lib/openehr/parser/code_phrase_spec.rb +96 -0
- data/spec/lib/openehr/parser/constraint_binding_spec.rb +26 -0
- data/spec/lib/openehr/parser/constraint_ref_spec.rb +32 -0
- data/spec/lib/openehr/parser/date_time_spec.rb +1953 -0
- data/spec/lib/openehr/parser/duration_spec.rb +475 -0
- data/spec/lib/openehr/parser/dv_coded_text_parse_spec.rb +27 -0
- data/spec/lib/openehr/parser/empty_other_contributors_spec.rb +19 -0
- data/spec/lib/openehr/parser/lab_test_parser_spec.rb +14 -0
- data/spec/lib/openehr/parser/missing_language_spec.rb +20 -0
- data/spec/lib/openehr/parser/missing_purpose_spec.rb +23 -0
- data/spec/lib/openehr/parser/mixed_node_types_spec.rb +16 -0
- data/spec/lib/openehr/parser/most_minimal_adl_spec.rb +19 -0
- data/spec/lib/openehr/parser/multi_language_spec.rb +58 -0
- data/spec/lib/openehr/parser/parser_spec_helper.rb +7 -0
- data/spec/lib/openehr/parser/path_based_terminology_binding_spec.rb +30 -0
- data/spec/lib/openehr/parser/special_string_spec.rb +20 -0
- data/spec/lib/openehr/parser/structure_comment_spec.rb +21 -0
- data/spec/lib/openehr/parser/structure_nested_comments_spec.rb +22 -0
- data/spec/lib/openehr/parser/structure_spec.rb +202 -0
- data/spec/lib/openehr/parser/term_binding_spec.rb +54 -0
- data/spec/lib/openehr/parser/unicode_bom_spec.rb +17 -0
- data/spec/lib/openehr/parser/unicode_support_spec.rb +46 -0
- data/spec/lib/openehr/rm/common/archetyped/archetyped_spec.rb +50 -0
- data/spec/lib/openehr/rm/common/archetyped/feeder_audit_details_spec.rb +60 -0
- data/spec/lib/openehr/rm/common/archetyped/feeder_audit_spec.rb +51 -0
- data/spec/lib/openehr/rm/common/archetyped/link_spec.rb +42 -0
- data/spec/lib/openehr/rm/common/archetyped/locatable_spec.rb +89 -0
- data/spec/lib/openehr/rm/common/archetyped/pathable_spec.rb +42 -0
- data/spec/lib/openehr/rm/common/change_control/contribution_spec.rb +56 -0
- data/spec/lib/openehr/rm/common/change_control/imported_version_spec.rb +62 -0
- data/spec/lib/openehr/rm/common/change_control/original_version_spec.rb +71 -0
- data/spec/lib/openehr/rm/common/change_control/version_spec.rb +91 -0
- data/spec/lib/openehr/rm/common/change_control/versioned_object_spec.rb +284 -0
- data/spec/lib/openehr/rm/common/directory/folder_spec.rb +26 -0
- data/spec/lib/openehr/rm/common/generic/attestation_spec.rb +62 -0
- data/spec/lib/openehr/rm/common/generic/audit_details_spec.rb +51 -0
- data/spec/lib/openehr/rm/common/generic/participation_spec.rb +36 -0
- data/spec/lib/openehr/rm/common/generic/party_identified_spec.rb +64 -0
- data/spec/lib/openehr/rm/common/generic/party_proxy_spec.rb +18 -0
- data/spec/lib/openehr/rm/common/generic/party_related_spec.rb +24 -0
- data/spec/lib/openehr/rm/common/generic/revision_history_item_spec.rb +43 -0
- data/spec/lib/openehr/rm/common/generic/revision_history_spec.rb +45 -0
- data/spec/lib/openehr/rm/common/resource/authored_resource_spec.rb +68 -0
- data/spec/lib/openehr/rm/common/resource/resource_description_item_spec.rb +105 -0
- data/spec/lib/openehr/rm/common/resource/resource_description_spec.rb +74 -0
- data/spec/lib/openehr/rm/common/resource/translation_details_spec.rb +35 -0
- data/spec/lib/openehr/rm/composition/composition_spec.rb +92 -0
- data/spec/lib/openehr/rm/composition/content/content_item_spec.rb +14 -0
- data/spec/lib/openehr/rm/composition/content/entry/action_spec.rb +69 -0
- data/spec/lib/openehr/rm/composition/content/entry/activity_spec.rb +61 -0
- data/spec/lib/openehr/rm/composition/content/entry/admin_entry_spec.rb +38 -0
- data/spec/lib/openehr/rm/composition/content/entry/care_entry_spec.rb +37 -0
- data/spec/lib/openehr/rm/composition/content/entry/entry_spec.rb +98 -0
- data/spec/lib/openehr/rm/composition/content/entry/evaluation_spec.rb +37 -0
- data/spec/lib/openehr/rm/composition/content/entry/instruction_details_spec.rb +51 -0
- data/spec/lib/openehr/rm/composition/content/entry/instruction_spec.rb +62 -0
- data/spec/lib/openehr/rm/composition/content/entry/ism_transition_spec.rb +46 -0
- data/spec/lib/openehr/rm/composition/content/entry/observation_spec.rb +45 -0
- data/spec/lib/openehr/rm/composition/content/navigation/section_spec.rb +32 -0
- data/spec/lib/openehr/rm/composition/event_context_spec.rb +88 -0
- data/spec/lib/openehr/rm/data_structures/data_structure_spec.rb +21 -0
- data/spec/lib/openehr/rm/data_structures/history/event_spec.rb +44 -0
- data/spec/lib/openehr/rm/data_structures/history/history_spec.rb +67 -0
- data/spec/lib/openehr/rm/data_structures/history/interval_event_spec.rb +43 -0
- data/spec/lib/openehr/rm/data_structures/item_structure/item_list_spec.rb +53 -0
- data/spec/lib/openehr/rm/data_structures/item_structure/item_single_spec.rb +29 -0
- data/spec/lib/openehr/rm/data_structures/item_structure/item_table_spec.rb +147 -0
- data/spec/lib/openehr/rm/data_structures/item_structure/item_tree_spec.rb +48 -0
- data/spec/lib/openehr/rm/data_structures/item_structure/representation/cluster_spec.rb +26 -0
- data/spec/lib/openehr/rm/data_structures/item_structure/representation/element_spec.rb +22 -0
- data/spec/lib/openehr/rm/data_types/basic/data_value_spec.rb +17 -0
- data/spec/lib/openehr/rm/data_types/basic/dv_boolean_spec.rb +29 -0
- data/spec/lib/openehr/rm/data_types/basic/dv_identifier_spec.rb +108 -0
- data/spec/lib/openehr/rm/data_types/basic/dv_state_spec.rb +44 -0
- data/spec/lib/openehr/rm/data_types/encapsulated/dv_encapsulated_spec.rb +42 -0
- data/spec/lib/openehr/rm/data_types/encapsulated/dv_multimedia_spec.rb +79 -0
- data/spec/lib/openehr/rm/data_types/encapsulated/dv_parsable_spec.rb +34 -0
- data/spec/lib/openehr/rm/data_types/quantity/date_time/dv_date_spec.rb +64 -0
- data/spec/lib/openehr/rm/data_types/quantity/date_time/dv_date_time_spec.rb +26 -0
- data/spec/lib/openehr/rm/data_types/quantity/date_time/dv_duration_spec.rb +44 -0
- data/spec/lib/openehr/rm/data_types/quantity/date_time/dv_temporal_spec.rb +25 -0
- data/spec/lib/openehr/rm/data_types/quantity/date_time/dv_time_spec.rb +41 -0
- data/spec/lib/openehr/rm/data_types/quantity/dv_absolute_quantity_spec.rb +35 -0
- data/spec/lib/openehr/rm/data_types/quantity/dv_amount_spec.rb +105 -0
- data/spec/lib/openehr/rm/data_types/quantity/dv_count_spec.rb +12 -0
- data/spec/lib/openehr/rm/data_types/quantity/dv_interval_spec.rb +17 -0
- data/spec/lib/openehr/rm/data_types/quantity/dv_ordered_spec.rb +60 -0
- data/spec/lib/openehr/rm/data_types/quantity/dv_ordinal_spec.rb +74 -0
- data/spec/lib/openehr/rm/data_types/quantity/dv_proportion_spec.rb +162 -0
- data/spec/lib/openehr/rm/data_types/quantity/dv_quantified_spec.rb +36 -0
- data/spec/lib/openehr/rm/data_types/quantity/dv_quantity_spec.rb +78 -0
- data/spec/lib/openehr/rm/data_types/quantity/proportion_kind_spec.rb +24 -0
- data/spec/lib/openehr/rm/data_types/quantity/reference_range_spec.rb +43 -0
- data/spec/lib/openehr/rm/data_types/text/code_phrase_spec.rb +23 -0
- data/spec/lib/openehr/rm/data_types/text/dv_paragraph_spec.rb +13 -0
- data/spec/lib/openehr/rm/data_types/text/dv_text_spec.rb +79 -0
- data/spec/lib/openehr/rm/data_types/text/term_mapping_spec.rb +59 -0
- data/spec/lib/openehr/rm/data_types/uri/dv_ehr_uri_spec.rb +21 -0
- data/spec/lib/openehr/rm/data_types/uri/dv_uri_spec.rb +36 -0
- data/spec/lib/openehr/rm/demographic/actor_spec.rb +79 -0
- data/spec/lib/openehr/rm/demographic/address_spec.rb +33 -0
- data/spec/lib/openehr/rm/demographic/capability_spec.rb +37 -0
- data/spec/lib/openehr/rm/demographic/contact_spec.rb +45 -0
- data/spec/lib/openehr/rm/demographic/party_identity_spec.rb +32 -0
- data/spec/lib/openehr/rm/demographic/party_relationship_spec.rb +84 -0
- data/spec/lib/openehr/rm/demographic/party_spec.rb +131 -0
- data/spec/lib/openehr/rm/demographic/role_spec.rb +58 -0
- data/spec/lib/openehr/rm/ehr/ehr_access_spec.rb +33 -0
- data/spec/lib/openehr/rm/ehr/ehr_spec.rb +139 -0
- data/spec/lib/openehr/rm/ehr/ehr_status_spec.rb +52 -0
- data/spec/lib/openehr/rm/ehr/versioned_composition_spec.rb +33 -0
- data/spec/lib/openehr/rm/integration/generic_entry_spec.rb +31 -0
- data/spec/lib/openehr/rm/support/identification/access_group_ref_spec.rb +19 -0
- data/spec/lib/openehr/rm/support/identification/archetype_id_spec.rb +152 -0
- data/spec/lib/openehr/rm/support/identification/generic_id_spec.rb +33 -0
- data/spec/lib/openehr/rm/support/identification/hier_object_id_spec.rb +12 -0
- data/spec/lib/openehr/rm/support/identification/internet_id_spec.rb +12 -0
- data/spec/lib/openehr/rm/support/identification/iso_oid_spec.rb +12 -0
- data/spec/lib/openehr/rm/support/identification/locatable_ref_spec.rb +34 -0
- data/spec/lib/openehr/rm/support/identification/object_id_spec.rb +24 -0
- data/spec/lib/openehr/rm/support/identification/object_ref_spec.rb +33 -0
- data/spec/lib/openehr/rm/support/identification/object_version_id_spec.rb +59 -0
- data/spec/lib/openehr/rm/support/identification/party_ref_spec.rb +29 -0
- data/spec/lib/openehr/rm/support/identification/template_id_spec.rb +12 -0
- data/spec/lib/openehr/rm/support/identification/terminology_id_spec.rb +33 -0
- data/spec/lib/openehr/rm/support/identification/uid_based_id_spec.rb +50 -0
- data/spec/lib/openehr/rm/support/identification/uid_spec.rb +29 -0
- data/spec/lib/openehr/rm/support/identification/version_tree_id_spec.rb +104 -0
- data/spec/lib/openehr/rm/support/measurement_service_spec.rb +7 -0
- data/spec/lib/openehr/rm/support/terminology_service_spec.rb +24 -0
- data/spec/lib/openehr/serializer/adl-test-entry.most_minimal.test.adl +20 -0
- data/spec/lib/openehr/serializer/adl_serializer_spec.rb +47 -0
- data/spec/lib/openehr/serializer/openEHR-EHR-SECTION.test.v1.adl +38 -0
- data/spec/lib/openehr/serializer/openEHR-EHR-SECTION.test.v1.xml +58 -0
- data/spec/lib/openehr/serializer/sample_archetype_spec.rb +44 -0
- data/spec/lib/openehr/serializer/xml_serializer_spec.rb +49 -0
- data/spec/lib/openehr/terminology/open_ehr_terminology_spec.rb +40 -0
- data/spec/spec.opts +6 -0
- data/spec/spec_helper.rb +58 -0
- metadata +631 -0
@@ -0,0 +1,83 @@
|
|
1
|
+
archetype
|
2
|
+
adl-test-ENTRY.testtranslations.draft
|
3
|
+
concept
|
4
|
+
[at0000] -- empty definition test
|
5
|
+
|
6
|
+
language
|
7
|
+
original_language = <[ISO_639-1::en]>
|
8
|
+
translations = <
|
9
|
+
["de"] = <
|
10
|
+
language = <[ISO_639-1::de]>
|
11
|
+
author = <
|
12
|
+
["organisation"] = <"test organisation">
|
13
|
+
["name"] = <"test author">
|
14
|
+
>
|
15
|
+
accreditation = <"test Accreditation!">
|
16
|
+
>
|
17
|
+
["es"] = <
|
18
|
+
language = <[ISO_639-1::es]>
|
19
|
+
author = <
|
20
|
+
["name"] = <"Another test author">
|
21
|
+
> -- no organisation or accreditation here to test that the parser won't take the old accreditation/organisation!
|
22
|
+
>
|
23
|
+
>
|
24
|
+
definition
|
25
|
+
ENTRY[at0000] matches {*}
|
26
|
+
|
27
|
+
ontology
|
28
|
+
primary_language = <"en">
|
29
|
+
languages_available = <"en", "de", "es">
|
30
|
+
|
31
|
+
term_definitions = <
|
32
|
+
["en"] = <
|
33
|
+
items = <
|
34
|
+
["at0000"] = <
|
35
|
+
text = <"most minimal">;
|
36
|
+
description = <"most minimal">
|
37
|
+
>
|
38
|
+
>
|
39
|
+
>
|
40
|
+
["de"] = <
|
41
|
+
items = <
|
42
|
+
["at0000"] = <
|
43
|
+
text = <"sehr minimal">;
|
44
|
+
description = <"sehr minimal">
|
45
|
+
>
|
46
|
+
>
|
47
|
+
>
|
48
|
+
["es"] = <
|
49
|
+
items = <
|
50
|
+
["at0000"] = <
|
51
|
+
text = <"mesta minimal">;
|
52
|
+
description = <"mesta minimal">
|
53
|
+
>
|
54
|
+
>
|
55
|
+
>
|
56
|
+
>
|
57
|
+
|
58
|
+
constraint_definitions = <
|
59
|
+
["en"] = <
|
60
|
+
items = <
|
61
|
+
["ac0001"] = <
|
62
|
+
text = <"most minimal">;
|
63
|
+
description = <"most minimal">
|
64
|
+
>
|
65
|
+
>
|
66
|
+
>
|
67
|
+
["de"] = <
|
68
|
+
items = <
|
69
|
+
["ac0001"] = <
|
70
|
+
text = <"sehr minimal">;
|
71
|
+
description = <"sehr minimal">
|
72
|
+
>
|
73
|
+
>
|
74
|
+
>
|
75
|
+
["es"] = <
|
76
|
+
items = <
|
77
|
+
["ac0001"] = <
|
78
|
+
text = <"mesta minimal">;
|
79
|
+
description = <"mesta minimal">
|
80
|
+
>
|
81
|
+
>
|
82
|
+
>
|
83
|
+
>
|
@@ -0,0 +1,34 @@
|
|
1
|
+
archetype
|
2
|
+
adl-test-ENTRY.translation_author_language.v1
|
3
|
+
|
4
|
+
concept
|
5
|
+
[at0000] -- test
|
6
|
+
|
7
|
+
language
|
8
|
+
original_language = <[ISO_639-1::en]>
|
9
|
+
translations = <
|
10
|
+
["de"] = <
|
11
|
+
author = <
|
12
|
+
["name"] = <"Harry Potter">
|
13
|
+
["email"] = <"harry@something.somewhere.co.uk">
|
14
|
+
>
|
15
|
+
language = <[ISO_639-1::de]>
|
16
|
+
>
|
17
|
+
>
|
18
|
+
definition
|
19
|
+
ENTRY[at0000] matches {*}
|
20
|
+
|
21
|
+
ontology
|
22
|
+
primary_language = <"en">
|
23
|
+
languages_available = <"en", ...>
|
24
|
+
|
25
|
+
term_definitions = <
|
26
|
+
["en"] = <
|
27
|
+
items = <
|
28
|
+
["at0000"] = <
|
29
|
+
text = <"test">;
|
30
|
+
description = <"test">
|
31
|
+
>
|
32
|
+
>
|
33
|
+
>
|
34
|
+
>
|
@@ -0,0 +1,34 @@
|
|
1
|
+
archetype
|
2
|
+
adl-test-ENTRY.translation_language_author.v1
|
3
|
+
|
4
|
+
concept
|
5
|
+
[at0000] -- test
|
6
|
+
|
7
|
+
language
|
8
|
+
original_language = <[ISO_639-1::en]>
|
9
|
+
translations = <
|
10
|
+
["de"] = <
|
11
|
+
language = <[ISO_639-1::de]>
|
12
|
+
author = <
|
13
|
+
["name"] = <"Harry Potter">
|
14
|
+
["email"] = <"harry@something.somewhere.co.uk">
|
15
|
+
>
|
16
|
+
>
|
17
|
+
>
|
18
|
+
definition
|
19
|
+
ENTRY[at0000] matches {*}
|
20
|
+
|
21
|
+
ontology
|
22
|
+
primary_language = <"en">
|
23
|
+
languages_available = <"en", ...>
|
24
|
+
|
25
|
+
term_definitions = <
|
26
|
+
["en"] = <
|
27
|
+
items = <
|
28
|
+
["at0000"] = <
|
29
|
+
text = <"test">;
|
30
|
+
description = <"test">
|
31
|
+
>
|
32
|
+
>
|
33
|
+
>
|
34
|
+
>
|
@@ -0,0 +1,41 @@
|
|
1
|
+
archetype
|
2
|
+
adl-test-ENTRY.unicode_BOM_support.v1
|
3
|
+
concept
|
4
|
+
[at0000] -- empty definition test
|
5
|
+
language
|
6
|
+
original_language = <[ISO_639-1::en]>
|
7
|
+
|
8
|
+
|
9
|
+
definition
|
10
|
+
ENTRY[at0000] matches {*}
|
11
|
+
|
12
|
+
ontology
|
13
|
+
primary_language = <"en">
|
14
|
+
languages_available = <"en", "zh", "sv">
|
15
|
+
|
16
|
+
term_definitions = <
|
17
|
+
["en"] = <
|
18
|
+
items = <
|
19
|
+
["at0000"] = <
|
20
|
+
text = <"concept">;
|
21
|
+
description = <"description">
|
22
|
+
>
|
23
|
+
>
|
24
|
+
>
|
25
|
+
["zh"] = <
|
26
|
+
items = <
|
27
|
+
["at0000"] = <
|
28
|
+
text = <"概念">; -- "concept" in Chinese
|
29
|
+
description = <"描述"> -- "description" in Chinese
|
30
|
+
>
|
31
|
+
>
|
32
|
+
>
|
33
|
+
["sv"] = <
|
34
|
+
items = <
|
35
|
+
["at0000"] = <
|
36
|
+
text = <"språk">; -- "language" in Swedish
|
37
|
+
description = <"Hjälp"> -- "help" in Swedish
|
38
|
+
>
|
39
|
+
>
|
40
|
+
>
|
41
|
+
>
|
@@ -0,0 +1,41 @@
|
|
1
|
+
archetype
|
2
|
+
adl-test-ENTRY.unicode_support.v1
|
3
|
+
concept
|
4
|
+
[at0000] -- empty definition test
|
5
|
+
language
|
6
|
+
original_language = <[ISO_639-1::en]>
|
7
|
+
|
8
|
+
|
9
|
+
definition
|
10
|
+
ENTRY[at0000] matches {*}
|
11
|
+
|
12
|
+
ontology
|
13
|
+
primary_language = <"en">
|
14
|
+
languages_available = <"en", "zh", "sv">
|
15
|
+
|
16
|
+
term_definitions = <
|
17
|
+
["en"] = <
|
18
|
+
items = <
|
19
|
+
["at0000"] = <
|
20
|
+
text = <"concept">;
|
21
|
+
description = <"description">
|
22
|
+
>
|
23
|
+
>
|
24
|
+
>
|
25
|
+
["zh"] = <
|
26
|
+
items = <
|
27
|
+
["at0000"] = <
|
28
|
+
text = <"概念">; -- "concept" in Chinese
|
29
|
+
description = <"描述"> -- "description" in Chinese
|
30
|
+
>
|
31
|
+
>
|
32
|
+
>
|
33
|
+
["sv"] = <
|
34
|
+
items = <
|
35
|
+
["at0000"] = <
|
36
|
+
text = <"språk">; -- "language" in Swedish
|
37
|
+
description = <"Hjälp"> -- "help" in Swedish
|
38
|
+
>
|
39
|
+
>
|
40
|
+
>
|
41
|
+
>
|
@@ -0,0 +1,275 @@
|
|
1
|
+
archetype (adl_version=1.4)
|
2
|
+
openEHR-EHR-ACTION.imaging.v1
|
3
|
+
|
4
|
+
concept
|
5
|
+
[at0000] -- Imaging investigation
|
6
|
+
language
|
7
|
+
original_language = <[ISO_639-1::en]>
|
8
|
+
description
|
9
|
+
original_author = <
|
10
|
+
["name"] = <"Sam Heard">
|
11
|
+
["organisation"] = <"Ocean Informatics">
|
12
|
+
["date"] = <"17/04/2006">
|
13
|
+
["email"] = <"sam.heard@oceaninformatics.biz">
|
14
|
+
>
|
15
|
+
details = <
|
16
|
+
["en"] = <
|
17
|
+
language = <[ISO_639-1::en]>
|
18
|
+
purpose = <"To record actions regarding imaging investigations.">
|
19
|
+
use = <"">
|
20
|
+
keywords = <"Xray", "ultrasound", "MRI", "magnetic resonance", "CT", "scan", "tomography">
|
21
|
+
misuse = <"Not used for recording the findings of the investigation; use openEHR-EHR-OBSERVATION.imaging for the findings.">
|
22
|
+
>
|
23
|
+
>
|
24
|
+
lifecycle_state = <"AuthorDraft">
|
25
|
+
other_contributors = <>
|
26
|
+
|
27
|
+
definition
|
28
|
+
ACTION[at0000] matches { -- Imaging investigation
|
29
|
+
ism_transition matches {
|
30
|
+
ISM_TRANSITION matches {
|
31
|
+
current_state matches {
|
32
|
+
DV_CODED_TEXT matches {
|
33
|
+
defining_code matches {[openehr::524]}
|
34
|
+
}
|
35
|
+
}
|
36
|
+
careflow_step matches {
|
37
|
+
DV_CODED_TEXT matches {
|
38
|
+
defining_code matches {[local::at0001]} -- Planned
|
39
|
+
}
|
40
|
+
}
|
41
|
+
}
|
42
|
+
ISM_TRANSITION matches {
|
43
|
+
current_state matches {
|
44
|
+
DV_CODED_TEXT matches {
|
45
|
+
defining_code matches {[openehr::524]}
|
46
|
+
}
|
47
|
+
}
|
48
|
+
careflow_step matches {
|
49
|
+
DV_CODED_TEXT matches {
|
50
|
+
defining_code matches {[local::at0004]} -- Requested
|
51
|
+
}
|
52
|
+
}
|
53
|
+
}
|
54
|
+
ISM_TRANSITION matches {
|
55
|
+
current_state matches {
|
56
|
+
DV_CODED_TEXT matches {
|
57
|
+
defining_code matches {[openehr::527]}
|
58
|
+
}
|
59
|
+
}
|
60
|
+
careflow_step matches {
|
61
|
+
DV_CODED_TEXT matches {
|
62
|
+
defining_code matches {[local::at0002]} -- Postponed
|
63
|
+
}
|
64
|
+
}
|
65
|
+
}
|
66
|
+
ISM_TRANSITION matches {
|
67
|
+
current_state matches {
|
68
|
+
DV_CODED_TEXT matches {
|
69
|
+
defining_code matches {[openehr::528]}
|
70
|
+
}
|
71
|
+
}
|
72
|
+
careflow_step matches {
|
73
|
+
DV_CODED_TEXT matches {
|
74
|
+
defining_code matches {[local::at0003]} -- Cancelled
|
75
|
+
}
|
76
|
+
}
|
77
|
+
}
|
78
|
+
ISM_TRANSITION matches {
|
79
|
+
current_state matches {
|
80
|
+
DV_CODED_TEXT matches {
|
81
|
+
defining_code matches {[openehr::529]}
|
82
|
+
}
|
83
|
+
}
|
84
|
+
careflow_step matches {
|
85
|
+
DV_CODED_TEXT matches {
|
86
|
+
defining_code matches {[local::at0005]} -- Appointment made
|
87
|
+
}
|
88
|
+
}
|
89
|
+
}
|
90
|
+
ISM_TRANSITION matches {
|
91
|
+
current_state matches {
|
92
|
+
DV_CODED_TEXT matches {
|
93
|
+
defining_code matches {[openehr::529]}
|
94
|
+
}
|
95
|
+
}
|
96
|
+
careflow_step matches {
|
97
|
+
DV_CODED_TEXT matches {
|
98
|
+
defining_code matches {[local::at0006]} -- Resheduled
|
99
|
+
}
|
100
|
+
}
|
101
|
+
}
|
102
|
+
ISM_TRANSITION matches {
|
103
|
+
current_state matches {
|
104
|
+
DV_CODED_TEXT matches {
|
105
|
+
defining_code matches {[openehr::245]}
|
106
|
+
}
|
107
|
+
}
|
108
|
+
careflow_step matches {
|
109
|
+
DV_CODED_TEXT matches {
|
110
|
+
defining_code matches {[local::at0007]} -- Commenced
|
111
|
+
}
|
112
|
+
}
|
113
|
+
}
|
114
|
+
ISM_TRANSITION matches {
|
115
|
+
current_state matches {
|
116
|
+
DV_CODED_TEXT matches {
|
117
|
+
defining_code matches {[openehr::245]}
|
118
|
+
}
|
119
|
+
}
|
120
|
+
careflow_step matches {
|
121
|
+
DV_CODED_TEXT matches {
|
122
|
+
defining_code matches {[local::at0008]} -- Investigation complete
|
123
|
+
}
|
124
|
+
}
|
125
|
+
}
|
126
|
+
ISM_TRANSITION matches {
|
127
|
+
current_state matches {
|
128
|
+
DV_CODED_TEXT matches {
|
129
|
+
defining_code matches {[openehr::245]}
|
130
|
+
}
|
131
|
+
}
|
132
|
+
careflow_step matches {
|
133
|
+
DV_CODED_TEXT matches {
|
134
|
+
defining_code matches {[local::at0009]} -- Reported
|
135
|
+
}
|
136
|
+
}
|
137
|
+
}
|
138
|
+
ISM_TRANSITION matches {
|
139
|
+
current_state matches {
|
140
|
+
DV_CODED_TEXT matches {
|
141
|
+
defining_code matches {[openehr::245]}
|
142
|
+
}
|
143
|
+
}
|
144
|
+
careflow_step matches {
|
145
|
+
DV_CODED_TEXT matches {
|
146
|
+
defining_code matches {[local::at0011]} -- Report communicated
|
147
|
+
}
|
148
|
+
}
|
149
|
+
}
|
150
|
+
ISM_TRANSITION matches {
|
151
|
+
current_state matches {
|
152
|
+
DV_CODED_TEXT matches {
|
153
|
+
defining_code matches {[openehr::245]}
|
154
|
+
}
|
155
|
+
}
|
156
|
+
careflow_step matches {
|
157
|
+
DV_CODED_TEXT matches {
|
158
|
+
defining_code matches {[local::at0012]} -- Further imaging required
|
159
|
+
}
|
160
|
+
}
|
161
|
+
}
|
162
|
+
ISM_TRANSITION matches {
|
163
|
+
current_state matches {
|
164
|
+
DV_CODED_TEXT matches {
|
165
|
+
defining_code matches {[openehr::530]}
|
166
|
+
}
|
167
|
+
}
|
168
|
+
careflow_step matches {
|
169
|
+
DV_CODED_TEXT matches {
|
170
|
+
defining_code matches {[local::at0013]} -- Imaging suspended
|
171
|
+
}
|
172
|
+
}
|
173
|
+
}
|
174
|
+
ISM_TRANSITION matches {
|
175
|
+
current_state matches {
|
176
|
+
DV_CODED_TEXT matches {
|
177
|
+
defining_code matches {[openehr::531]}
|
178
|
+
}
|
179
|
+
}
|
180
|
+
careflow_step matches {
|
181
|
+
DV_CODED_TEXT matches {
|
182
|
+
defining_code matches {[local::at0014]} -- Imaging aborted
|
183
|
+
}
|
184
|
+
}
|
185
|
+
}
|
186
|
+
ISM_TRANSITION matches {
|
187
|
+
current_state matches {
|
188
|
+
DV_CODED_TEXT matches {
|
189
|
+
defining_code matches {[openehr::532]}
|
190
|
+
}
|
191
|
+
}
|
192
|
+
careflow_step matches {
|
193
|
+
DV_CODED_TEXT matches {
|
194
|
+
defining_code matches {[local::at0010]} -- Completed
|
195
|
+
}
|
196
|
+
}
|
197
|
+
}
|
198
|
+
}
|
199
|
+
description matches {
|
200
|
+
allow_archetype ITEM_TREE occurrences matches {0..1} matches {
|
201
|
+
include
|
202
|
+
archetype_id/value matches {/imaging\.v1/}
|
203
|
+
exclude
|
204
|
+
archetype_id/value matches {/.*/}
|
205
|
+
}
|
206
|
+
}
|
207
|
+
}
|
208
|
+
|
209
|
+
ontology
|
210
|
+
term_definitions = <
|
211
|
+
["en"] = <
|
212
|
+
items = <
|
213
|
+
["at0000"] = <
|
214
|
+
description = <"An action related to an investigation by an imaging technique">
|
215
|
+
text = <"Imaging investigation">
|
216
|
+
>
|
217
|
+
["at0001"] = <
|
218
|
+
description = <"Imaging investigation is planned">
|
219
|
+
text = <"Planned">
|
220
|
+
>
|
221
|
+
["at0002"] = <
|
222
|
+
description = <"Imaging investigation is postponed">
|
223
|
+
text = <"Postponed">
|
224
|
+
>
|
225
|
+
["at0003"] = <
|
226
|
+
description = <"Imaging investigation is cancelled">
|
227
|
+
text = <"Cancelled">
|
228
|
+
>
|
229
|
+
["at0004"] = <
|
230
|
+
description = <"Imaging investigation has been requested">
|
231
|
+
text = <"Requested">
|
232
|
+
>
|
233
|
+
["at0005"] = <
|
234
|
+
description = <"Imaging investigation scheduled for specific date and time">
|
235
|
+
text = <"Appointment made">
|
236
|
+
>
|
237
|
+
["at0006"] = <
|
238
|
+
description = <"Appointment for imaging investigation has been altered">
|
239
|
+
text = <"Resheduled">
|
240
|
+
>
|
241
|
+
["at0007"] = <
|
242
|
+
description = <"Imaging investigation has commenced">
|
243
|
+
text = <"Commenced">
|
244
|
+
>
|
245
|
+
["at0008"] = <
|
246
|
+
description = <"The imaging investigation has been completed; awaiting report">
|
247
|
+
text = <"Investigation complete">
|
248
|
+
>
|
249
|
+
["at0009"] = <
|
250
|
+
description = <"The imaging investigation has been reported">
|
251
|
+
text = <"Reported">
|
252
|
+
>
|
253
|
+
["at0010"] = <
|
254
|
+
description = <"The imaging investigation is completed and report processed">
|
255
|
+
text = <"Completed">
|
256
|
+
>
|
257
|
+
["at0011"] = <
|
258
|
+
description = <"The imaging investigation has been reported and communicated to the referer">
|
259
|
+
text = <"Report communicated">
|
260
|
+
>
|
261
|
+
["at0012"] = <
|
262
|
+
description = <"The investigator has established that further imaging is required">
|
263
|
+
text = <"Further imaging required">
|
264
|
+
>
|
265
|
+
["at0013"] = <
|
266
|
+
description = <"The imaging was not able to be completed">
|
267
|
+
text = <"Imaging suspended">
|
268
|
+
>
|
269
|
+
["at0014"] = <
|
270
|
+
description = <"The imaging investigation was not and will not be completed.">
|
271
|
+
text = <"Imaging aborted">
|
272
|
+
>
|
273
|
+
>
|
274
|
+
>
|
275
|
+
>
|