diff --git a/CHANGELOG.md b/CHANGELOG.md
index dddc320bc..db285d5c3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,7 @@ Note: version releases in the 0.x.y range may introduce breaking changes.
### Added
- Add spotless plugin, Add codestyle check to workflows ([#368](https://github.com/ehrbase/openEHR_SDK/pull/368))
- Add new Tool to interpret AQL against a template ([#379](https://github.com/ehrbase/openEHR_SDK/pull/379))
+- Add new Matrix serialisation format ([#381](https://github.com/ehrbase/openEHR_SDK/pull/381))
### Fixed
- Skip archetype slots not used by the template in example generator ([#369](https://github.com/ehrbase/openEHR_SDK/pull/369))
- enhance sdk aql parser to handle more cases ([#376](https://github.com/ehrbase/openEHR_SDK/pull/376))
diff --git a/aql/src/test/resources/newaql.sql b/aql/src/test/resources/newaql.sql
new file mode 100644
index 000000000..9fa3aa0a4
--- /dev/null
+++ b/aql/src/test/resources/newaql.sql
@@ -0,0 +1,381 @@
+drop table if exists ehr.entry2;
+create table ehr.entry2
+(
+ ehr_id uuid,
+ comp_id uuid,
+ num INTEGER,
+ entity_concept Text,
+ rm_entity text,
+ entity_path Text,
+ entity_idx INTEGER[],
+ field_idx INTEGER[],
+ field_idx_len INTEGER,
+ fields jsonb,
+ PRIMARY KEY (comp_id, num)
+);
+
+
+create index archetype_idx on ehr.entry2 (entity_concept, field_idx_len,ehr_id);
+
+create index type_idx on ehr.entry2 (rm_entity, field_idx_len,ehr_id);
+-- composer
+-- should be partial on where rm_entity = 'COMPOSITION'
+create index composer_idx on ehr.entry2 (rm_entity, field_idx_len, (fields ->> '/composer/name'),ehr_id);
+-- custom index for a cross patient query
+-- should be partial on entity_concept = 'openEHR-EHR-EVALUATION.problem_diagnosis.v1'
+create index diagnosis_idx on ehr.entry2 (entity_concept, field_idx_len,
+ (fields ->> '/data[at0001]/items[at0002]/value/value'), ehr_id);
+
+
+DO
+$$
+ DECLARE
+ comp_size INTEGER := 100;
+ cid uuid;
+ eid uuid;
+ BEGIN
+ FOR e IN 0..5 BY 1
+ LOOP
+ eid := uuid_generate_v4();
+ FOR counter IN 1..comp_size BY 2
+ LOOP
+ cid := uuid_generate_v4();
+ insert into ehr.entry2 (ehr_id, comp_id,num, entity_concept,rm_entity, entity_path, entity_idx, field_idx, field_idx_len, fields)
+
+
+ values (eid,cid,0, 'openEHR-EHR-COMPOSITION.health_summary.v1', 'COMPOSITION', '/', '{}', '{}', 0, '{"/_type":"COMPOSITION","/category/_type":"DV_CODED_TEXT","/category/value":"event","/category/defining_code/_type":"CODE_PHRASE","/category/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/category/defining_code/terminology_id/value":"openehr","/category/defining_code/code_string":"433","/context/_type":"EVENT_CONTEXT","/context/start_time/_type":"DV_DATE_TIME","/context/start_time/value":"2021-12-03T17:34:06.849379+01:00","/context/start_time/magnitude":63774146046,"/context/health_care_facility/_type":"PARTY_IDENTIFIED","/context/health_care_facility/external_ref/_type":"PARTY_REF","/context/health_care_facility/external_ref/namespace":"HOSPITAL-NS","/context/health_care_facility/external_ref/type":"PARTY","/context/health_care_facility/external_ref/id/_type":"GENERIC_ID","/context/health_care_facility/external_ref/id/value":"9091","/context/health_care_facility/external_ref/id/scheme":"HOSPITAL-NS","/context/health_care_facility/name":"Hospital","/context/setting/_type":"DV_CODED_TEXT","/context/setting/value":"other care","/context/setting/defining_code/_type":"CODE_PHRASE","/context/setting/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/context/setting/defining_code/terminology_id/value":"openehr","/context/setting/defining_code/code_string":"238","/content[openEHR-EHR-SECTION.adhoc.v1,''Medication Summary'']/_type":"SECTION","/content[openEHR-EHR-SECTION.adhoc.v1,''Medication Summary'']/name/_type":"DV_TEXT","/content[openEHR-EHR-SECTION.adhoc.v1,''Medication Summary'']/name/value":"Medication Summary","/content[openEHR-EHR-SECTION.adhoc.v1,''Medication Summary'']/archetype_details/archetype_id/value":"openEHR-EHR-SECTION.adhoc.v1","/content[openEHR-EHR-SECTION.adhoc.v1,''Medication Summary'']/archetype_details/rm_version":"1.0.4","/content[openEHR-EHR-SECTION.adhoc.v1,''Medication Summary'']/archetype_details/_type":"ARCHETYPED","/content[openEHR-EHR-SECTION.adhoc.v1,''Medication Summary'']/archetype_node_id":"openEHR-EHR-SECTION.adhoc.v1","/content[openEHR-EHR-SECTION.adhoc.v1,''Allergies & Intolerances'']/_type":"SECTION","/content[openEHR-EHR-SECTION.adhoc.v1,''Allergies & Intolerances'']/name/_type":"DV_TEXT","/content[openEHR-EHR-SECTION.adhoc.v1,''Allergies & Intolerances'']/name/value":"Allergies & Intolerances","/content[openEHR-EHR-SECTION.adhoc.v1,''Allergies & Intolerances'']/archetype_details/archetype_id/value":"openEHR-EHR-SECTION.adhoc.v1","/content[openEHR-EHR-SECTION.adhoc.v1,''Allergies & Intolerances'']/archetype_details/rm_version":"1.0.4","/content[openEHR-EHR-SECTION.adhoc.v1,''Allergies & Intolerances'']/archetype_details/_type":"ARCHETYPED","/content[openEHR-EHR-SECTION.adhoc.v1,''Allergies & Intolerances'']/archetype_node_id":"openEHR-EHR-SECTION.adhoc.v1","/content[openEHR-EHR-SECTION.adhoc.v1,''Problem List'']/_type":"SECTION","/content[openEHR-EHR-SECTION.adhoc.v1,''Problem List'']/name/_type":"DV_TEXT","/content[openEHR-EHR-SECTION.adhoc.v1,''Problem List'']/name/value":"Problem List","/content[openEHR-EHR-SECTION.adhoc.v1,''Problem List'']/archetype_details/archetype_id/value":"openEHR-EHR-SECTION.adhoc.v1","/content[openEHR-EHR-SECTION.adhoc.v1,''Problem List'']/archetype_details/rm_version":"1.0.4","/content[openEHR-EHR-SECTION.adhoc.v1,''Problem List'']/archetype_details/_type":"ARCHETYPED","/content[openEHR-EHR-SECTION.adhoc.v1,''Problem List'']/archetype_node_id":"openEHR-EHR-SECTION.adhoc.v1","/content[openEHR-EHR-SECTION.adhoc.v1,''Immunizations'']/_type":"SECTION","/content[openEHR-EHR-SECTION.adhoc.v1,''Immunizations'']/name/_type":"DV_TEXT","/content[openEHR-EHR-SECTION.adhoc.v1,''Immunizations'']/name/value":"Immunizations","/content[openEHR-EHR-SECTION.adhoc.v1,''Immunizations'']/archetype_details/archetype_id/value":"openEHR-EHR-SECTION.adhoc.v1","/content[openEHR-EHR-SECTION.adhoc.v1,''Immunizations'']/archetype_details/rm_version":"1.0.4","/content[openEHR-EHR-SECTION.adhoc.v1,''Immunizations'']/archetype_details/_type":"ARCHETYPED","/content[openEHR-EHR-SECTION.adhoc.v1,''Immunizations'']/archetype_node_id":"openEHR-EHR-SECTION.adhoc.v1","/content[openEHR-EHR-SECTION.adhoc.v1,''History of Procedures'']/_type":"SECTION","/content[openEHR-EHR-SECTION.adhoc.v1,''History of Procedures'']/name/_type":"DV_TEXT","/content[openEHR-EHR-SECTION.adhoc.v1,''History of Procedures'']/name/value":"History of Procedures","/content[openEHR-EHR-SECTION.adhoc.v1,''History of Procedures'']/archetype_details/archetype_id/value":"openEHR-EHR-SECTION.adhoc.v1","/content[openEHR-EHR-SECTION.adhoc.v1,''History of Procedures'']/archetype_details/rm_version":"1.0.4","/content[openEHR-EHR-SECTION.adhoc.v1,''History of Procedures'']/archetype_details/_type":"ARCHETYPED","/content[openEHR-EHR-SECTION.adhoc.v1,''History of Procedures'']/archetype_node_id":"openEHR-EHR-SECTION.adhoc.v1","/content[openEHR-EHR-SECTION.adhoc.v1,''Medical Devices'']/_type":"SECTION","/content[openEHR-EHR-SECTION.adhoc.v1,''Medical Devices'']/name/_type":"DV_TEXT","/content[openEHR-EHR-SECTION.adhoc.v1,''Medical Devices'']/name/value":"Medical Devices","/content[openEHR-EHR-SECTION.adhoc.v1,''Medical Devices'']/archetype_details/archetype_id/value":"openEHR-EHR-SECTION.adhoc.v1","/content[openEHR-EHR-SECTION.adhoc.v1,''Medical Devices'']/archetype_details/rm_version":"1.0.4","/content[openEHR-EHR-SECTION.adhoc.v1,''Medical Devices'']/archetype_details/_type":"ARCHETYPED","/content[openEHR-EHR-SECTION.adhoc.v1,''Medical Devices'']/archetype_node_id":"openEHR-EHR-SECTION.adhoc.v1","/content[openEHR-EHR-SECTION.adhoc.v1,''Diagnostic Results'']/_type":"SECTION","/content[openEHR-EHR-SECTION.adhoc.v1,''Diagnostic Results'']/name/_type":"DV_TEXT","/content[openEHR-EHR-SECTION.adhoc.v1,''Diagnostic Results'']/name/value":"Diagnostic Results","/content[openEHR-EHR-SECTION.adhoc.v1,''Diagnostic Results'']/archetype_details/archetype_id/value":"openEHR-EHR-SECTION.adhoc.v1","/content[openEHR-EHR-SECTION.adhoc.v1,''Diagnostic Results'']/archetype_details/rm_version":"1.0.4","/content[openEHR-EHR-SECTION.adhoc.v1,''Diagnostic Results'']/archetype_details/_type":"ARCHETYPED","/content[openEHR-EHR-SECTION.adhoc.v1,''Diagnostic Results'']/archetype_node_id":"openEHR-EHR-SECTION.adhoc.v1","/content[openEHR-EHR-SECTION.adhoc.v1,''Vital Signs'']/_type":"SECTION","/content[openEHR-EHR-SECTION.adhoc.v1,''Vital Signs'']/name/_type":"DV_TEXT","/content[openEHR-EHR-SECTION.adhoc.v1,''Vital Signs'']/name/value":"Vital Signs","/content[openEHR-EHR-SECTION.adhoc.v1,''Vital Signs'']/archetype_details/archetype_id/value":"openEHR-EHR-SECTION.adhoc.v1","/content[openEHR-EHR-SECTION.adhoc.v1,''Vital Signs'']/archetype_details/rm_version":"1.0.4","/content[openEHR-EHR-SECTION.adhoc.v1,''Vital Signs'']/archetype_details/_type":"ARCHETYPED","/content[openEHR-EHR-SECTION.adhoc.v1,''Vital Signs'']/archetype_node_id":"openEHR-EHR-SECTION.adhoc.v1","/content[openEHR-EHR-SECTION.adhoc.v1,''Past History of Illnesses'']/_type":"SECTION","/content[openEHR-EHR-SECTION.adhoc.v1,''Past History of Illnesses'']/name/_type":"DV_TEXT","/content[openEHR-EHR-SECTION.adhoc.v1,''Past History of Illnesses'']/name/value":"Past History of Illnesses","/content[openEHR-EHR-SECTION.adhoc.v1,''Past History of Illnesses'']/archetype_details/archetype_id/value":"openEHR-EHR-SECTION.adhoc.v1","/content[openEHR-EHR-SECTION.adhoc.v1,''Past History of Illnesses'']/archetype_details/rm_version":"1.0.4","/content[openEHR-EHR-SECTION.adhoc.v1,''Past History of Illnesses'']/archetype_details/_type":"ARCHETYPED","/content[openEHR-EHR-SECTION.adhoc.v1,''Past History of Illnesses'']/archetype_node_id":"openEHR-EHR-SECTION.adhoc.v1","/content[openEHR-EHR-SECTION.adhoc.v1,''Pregnancy'']/_type":"SECTION","/content[openEHR-EHR-SECTION.adhoc.v1,''Pregnancy'']/name/_type":"DV_TEXT","/content[openEHR-EHR-SECTION.adhoc.v1,''Pregnancy'']/name/value":"Pregnancy","/content[openEHR-EHR-SECTION.adhoc.v1,''Pregnancy'']/archetype_details/archetype_id/value":"openEHR-EHR-SECTION.adhoc.v1","/content[openEHR-EHR-SECTION.adhoc.v1,''Pregnancy'']/archetype_details/rm_version":"1.0.4","/content[openEHR-EHR-SECTION.adhoc.v1,''Pregnancy'']/archetype_details/_type":"ARCHETYPED","/content[openEHR-EHR-SECTION.adhoc.v1,''Pregnancy'']/archetype_node_id":"openEHR-EHR-SECTION.adhoc.v1","/content[openEHR-EHR-SECTION.adhoc.v1,''Social History'']/_type":"SECTION","/content[openEHR-EHR-SECTION.adhoc.v1,''Social History'']/name/_type":"DV_TEXT","/content[openEHR-EHR-SECTION.adhoc.v1,''Social History'']/name/value":"Social History","/content[openEHR-EHR-SECTION.adhoc.v1,''Social History'']/archetype_details/archetype_id/value":"openEHR-EHR-SECTION.adhoc.v1","/content[openEHR-EHR-SECTION.adhoc.v1,''Social History'']/archetype_details/rm_version":"1.0.4","/content[openEHR-EHR-SECTION.adhoc.v1,''Social History'']/archetype_details/_type":"ARCHETYPED","/content[openEHR-EHR-SECTION.adhoc.v1,''Social History'']/archetype_node_id":"openEHR-EHR-SECTION.adhoc.v1","/content[openEHR-EHR-SECTION.adhoc.v1,''Plan of Care'']/_type":"SECTION","/content[openEHR-EHR-SECTION.adhoc.v1,''Plan of Care'']/name/_type":"DV_TEXT","/content[openEHR-EHR-SECTION.adhoc.v1,''Plan of Care'']/name/value":"Plan of Care","/content[openEHR-EHR-SECTION.adhoc.v1,''Plan of Care'']/archetype_details/archetype_id/value":"openEHR-EHR-SECTION.adhoc.v1","/content[openEHR-EHR-SECTION.adhoc.v1,''Plan of Care'']/archetype_details/rm_version":"1.0.4","/content[openEHR-EHR-SECTION.adhoc.v1,''Plan of Care'']/archetype_details/_type":"ARCHETYPED","/content[openEHR-EHR-SECTION.adhoc.v1,''Plan of Care'']/archetype_node_id":"openEHR-EHR-SECTION.adhoc.v1","/content[openEHR-EHR-SECTION.adhoc.v1,''Functional Status'']/_type":"SECTION","/content[openEHR-EHR-SECTION.adhoc.v1,''Functional Status'']/name/_type":"DV_TEXT","/content[openEHR-EHR-SECTION.adhoc.v1,''Functional Status'']/name/value":"Functional Status","/content[openEHR-EHR-SECTION.adhoc.v1,''Functional Status'']/archetype_details/archetype_id/value":"openEHR-EHR-SECTION.adhoc.v1","/content[openEHR-EHR-SECTION.adhoc.v1,''Functional Status'']/archetype_details/rm_version":"1.0.4","/content[openEHR-EHR-SECTION.adhoc.v1,''Functional Status'']/archetype_details/_type":"ARCHETYPED","/content[openEHR-EHR-SECTION.adhoc.v1,''Functional Status'']/archetype_node_id":"openEHR-EHR-SECTION.adhoc.v1","/content[openEHR-EHR-SECTION.adhoc.v1,''Advanced Directives'']/_type":"SECTION","/content[openEHR-EHR-SECTION.adhoc.v1,''Advanced Directives'']/name/_type":"DV_TEXT","/content[openEHR-EHR-SECTION.adhoc.v1,''Advanced Directives'']/name/value":"Advanced Directives","/content[openEHR-EHR-SECTION.adhoc.v1,''Advanced Directives'']/archetype_details/archetype_id/value":"openEHR-EHR-SECTION.adhoc.v1","/content[openEHR-EHR-SECTION.adhoc.v1,''Advanced Directives'']/archetype_details/rm_version":"1.0.4","/content[openEHR-EHR-SECTION.adhoc.v1,''Advanced Directives'']/archetype_details/_type":"ARCHETYPED","/content[openEHR-EHR-SECTION.adhoc.v1,''Advanced Directives'']/archetype_node_id":"openEHR-EHR-SECTION.adhoc.v1","/name/_type":"DV_TEXT","/name/value":"International Patient Summary","/archetype_node_id":"openEHR-EHR-COMPOSITION.health_summary.v1","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"en","/uid/_type":"OBJECT_VERSION_ID","/uid/value":"c5db0694-5cd2-4fd1-a5bf-ed25f1c5d371::ehrbase.org::1","/archetype_details/archetype_id/value":"openEHR-EHR-COMPOSITION.health_summary.v1","/archetype_details/template_id/value":"International Patient Summary","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/territory/_type":"CODE_PHRASE","/territory/terminology_id/_type":"TERMINOLOGY_ID","/territory/terminology_id/value":"ISO_3166-1","/territory/code_string":"US","/composer/_type":"PARTY_IDENTIFIED","/composer/name":"Silvia Blake"}'),
+ (eid,cid,1, 'openEHR-EHR-COMPOSITION.health_summary.v1', 'COMPOSITION', '/', '{}', '{0}', 1, '{"/context/participations/_type":"PARTICIPATION","/context/participations/function/_type":"DV_TEXT","/context/participations/function/value":"requester","/context/participations/mode/_type":"DV_CODED_TEXT","/context/participations/mode/value":"face-to-face communication","/context/participations/mode/defining_code/_type":"CODE_PHRASE","/context/participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/context/participations/mode/defining_code/terminology_id/value":"openehr","/context/participations/mode/defining_code/code_string":"216","/context/participations/performer/_type":"PARTY_IDENTIFIED","/context/participations/performer/external_ref/_type":"PARTY_REF","/context/participations/performer/external_ref/namespace":"HOSPITAL-NS","/context/participations/performer/external_ref/type":"PERSON","/context/participations/performer/external_ref/id/_type":"GENERIC_ID","/context/participations/performer/external_ref/id/value":"199","/context/participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/context/participations/performer/name":"Dr. Marcus Johnson"}'),
+ (eid,cid,2, 'openEHR-EHR-COMPOSITION.health_summary.v1', 'COMPOSITION', '/', '{}', '{1}', 1, '{"/context/participations/_type":"PARTICIPATION","/context/participations/function/_type":"DV_TEXT","/context/participations/function/value":"performer","/context/participations/mode/_type":"DV_CODED_TEXT","/context/participations/mode/value":"not specified","/context/participations/mode/defining_code/_type":"CODE_PHRASE","/context/participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/context/participations/mode/defining_code/terminology_id/value":"openehr","/context/participations/mode/defining_code/code_string":"193","/context/participations/performer/_type":"PARTY_IDENTIFIED","/context/participations/performer/external_ref/_type":"PARTY_REF","/context/participations/performer/external_ref/namespace":"HOSPITAL-NS","/context/participations/performer/external_ref/type":"PERSON","/context/participations/performer/external_ref/id/_type":"GENERIC_ID","/context/participations/performer/external_ref/id/value":"198","/context/participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/context/participations/performer/name":"Lara Markham"}'),
+ (eid,cid,3, 'openEHR-EHR-ACTION.medication.v1', 'ACTION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Medication Summary'']/items[openEHR-EHR-ACTION.medication.v1,''Medication statement'']', '{}', '{}', 0, '{"/_type":"ACTION","/description[at0017]/_type":"ITEM_TREE","/description[at0017]/items[at0020]/_type":"ELEMENT","/description[at0017]/items[at0020]/value/_type":"DV_TEXT","/description[at0017]/items[at0020]/value/value":"Medication item 83","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/_type":"CLUSTER","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0132]/_type":"ELEMENT","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0132]/value/_type":"DV_TEXT","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0132]/value/value":"Name 5","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0142]/_type":"ELEMENT","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0142]/value/_type":"DV_CODED_TEXT","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0142]/value/value":"Single-ingredient product","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0142]/value/defining_code/_type":"CODE_PHRASE","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0142]/value/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0142]/value/defining_code/terminology_id/value":"local","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0142]/value/defining_code/code_string":"at0145","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0152]/_type":"CLUSTER","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0152]/items[at0153]/_type":"ELEMENT","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0152]/items[at0153]/value/_type":"DV_QUANTITY","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0152]/items[at0153]/value/units":"1","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0152]/items[at0153]/value/magnitude":35.87,"/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0152]/items[at0004]/_type":"ELEMENT","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0152]/items[at0004]/value/_type":"DV_TEXT","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0152]/items[at0004]/value/value":"Strength numerator unit 70","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0152]/items[at0157]/_type":"ELEMENT","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0152]/items[at0157]/value/_type":"DV_QUANTITY","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0152]/items[at0157]/value/units":"1","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0152]/items[at0157]/value/magnitude":66.71,"/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0152]/items[at0005]/_type":"ELEMENT","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0152]/items[at0005]/value/_type":"DV_TEXT","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0152]/items[at0005]/value/value":"Strength denominator unit 35","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0152]/archetype_node_id":"at0152","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0152]/name/_type":"DV_TEXT","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0152]/name/value":"Strength (eid,cid,presentation)","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0158]/_type":"ELEMENT","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0158]/value/_type":"DV_TEXT","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0158]/value/value":"Unit of presentation 19","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0115]/_type":"ELEMENT","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0115]/value/_type":"DV_QUANTITY","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0115]/value/units":"?","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0115]/value/magnitude":31.53,"/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0151]/_type":"ELEMENT","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0151]/value/_type":"DV_TEXT","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0151]/value/value":"Manufacturer 26","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0003]/_type":"ELEMENT","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0003]/value/_type":"DV_DATE_TIME","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0003]/value/value":"2021-12-03T16:05:19.513542+01:00","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0003]/value/magnitude":63774140719,"/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0139]/_type":"ELEMENT","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0139]/value/_type":"DV_QUANTITY","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0139]/value/units":"1","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0139]/value/magnitude":74.97,"/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0008]/_type":"ELEMENT","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0008]/value/_type":"DV_TEXT","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0008]/value/value":"Amount unit 82","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0148]/_type":"ELEMENT","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0148]/value/_type":"DV_QUANTITY","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0148]/value/units":"1","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0148]/value/magnitude":78.36,"/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0007]/_type":"ELEMENT","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0007]/value/_type":"DV_TEXT","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0007]/value/value":"Alternate amount unit 36","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0127]/_type":"ELEMENT","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0127]/value/_type":"DV_CODED_TEXT","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0127]/value/value":"Excipient","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0127]/value/defining_code/_type":"CODE_PHRASE","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0127]/value/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0127]/value/defining_code/terminology_id/value":"local","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0127]/value/defining_code/code_string":"at0084","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0133]/_type":"ELEMENT","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0133]/value/_type":"DV_TEXT","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0133]/value/value":"Description 86","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/archetype_details/archetype_id/value":"openEHR-EHR-CLUSTER.medication.v1","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/archetype_details/rm_version":"1.0.4","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/archetype_details/_type":"ARCHETYPED","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/archetype_node_id":"openEHR-EHR-CLUSTER.medication.v1","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/_type":"CLUSTER","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[at0144]/_type":"ELEMENT","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[at0144]/value/_type":"DV_QUANTITY","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[at0144]/value/units":"1","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[at0144]/value/magnitude":25.28,"/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[at0145]/_type":"ELEMENT","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[at0145]/value/_type":"DV_TEXT","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[at0145]/value/value":"Dose unit 64","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[at0135]/_type":"ELEMENT","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[at0135]/value/_type":"DV_TEXT","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[at0135]/value/value":"Dose formula 34","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[at0178]/_type":"ELEMENT","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[at0178]/value/_type":"DV_TEXT","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[at0178]/value/value":"Dose description 32","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/_type":"CLUSTER","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0003]/_type":"ELEMENT","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0003]/value/_type":"DV_QUANTITY","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0003]/value/precision":0,"/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0003]/value/units":"1/d","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0003]/value/magnitude":49.0,"/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0014]/_type":"ELEMENT","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0014]/value/_type":"DV_DURATION","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0014]/value/value":"PT7H3M","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0014]/value/magnitude":25380.0,"/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0027]/_type":"ELEMENT","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0027]/value/_type":"DV_TEXT","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0027]/value/value":"Timing description 71","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0023]/_type":"ELEMENT","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0023]/value/_type":"DV_BOOLEAN","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0023]/value/value":true,"/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0024]/_type":"ELEMENT","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0024]/value/_type":"DV_BOOLEAN","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0024]/value/value":true,"/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0025]/_type":"ELEMENT","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0025]/value/_type":"DV_TEXT","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0025]/value/value":"''As required'' criterion 5","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/archetype_details/archetype_id/value":"openEHR-EHR-CLUSTER.timing_daily.v1","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/archetype_details/rm_version":"1.0.4","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/archetype_details/_type":"ARCHETYPED","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/archetype_node_id":"openEHR-EHR-CLUSTER.timing_daily.v1","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/name/_type":"DV_TEXT","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/name/value":"Timing - daily","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/archetype_details/archetype_id/value":"openEHR-EHR-CLUSTER.dosage.v1","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/archetype_details/rm_version":"1.0.4","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/archetype_details/_type":"ARCHETYPED","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/archetype_node_id":"openEHR-EHR-CLUSTER.dosage.v1","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/name/_type":"DV_TEXT","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/name/value":"Dosage","/description[at0017]/items[at0140]/_type":"CLUSTER","/description[at0017]/items[at0140]/items[at0147]/_type":"ELEMENT","/description[at0017]/items[at0140]/items[at0147]/value/_type":"DV_TEXT","/description[at0017]/items[at0140]/items[at0147]/value/value":"Route 20","/description[at0017]/items[at0140]/items[at0141]/_type":"ELEMENT","/description[at0017]/items[at0140]/items[at0141]/value/_type":"DV_TEXT","/description[at0017]/items[at0140]/items[at0141]/value/value":"Body site 68","/description[at0017]/items[at0140]/archetype_node_id":"at0140","/description[at0017]/items[at0140]/name/_type":"DV_TEXT","/description[at0017]/items[at0140]/name/value":"Administration details","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/_type":"CLUSTER","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0002]/_type":"ELEMENT","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0002]/value/_type":"DV_DURATION","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0002]/value/value":"P1Y3M40D","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0002]/value/magnitude":4.28976E7,"/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0014]/_type":"ELEMENT","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0014]/value/_type":"DV_QUANTITY","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0014]/value/precision":0,"/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0014]/value/units":"1/wk","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0014]/value/magnitude":7.0,"/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0021]/_type":"ELEMENT","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0021]/value/_type":"DV_TEXT","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0021]/value/value":"Timing description 6","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0010]/_type":"CLUSTER","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0010]/items[at0011]/_type":"ELEMENT","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0010]/items[at0011]/value/_type":"DV_DURATION","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0010]/items[at0011]/value/value":"P5Y2M39D","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0010]/items[at0011]/value/magnitude":1.66409856E8,"/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0010]/items[at0012]/_type":"ELEMENT","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0010]/items[at0012]/value/_type":"DV_DURATION","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0010]/items[at0012]/value/value":"P2Y3M29D","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0010]/items[at0012]/value/magnitude":7.3503936E7,"/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0010]/items[at0013]/_type":"ELEMENT","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0010]/items[at0013]/value/_type":"DV_COUNT","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0010]/items[at0013]/value/magnitude":743,"/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0010]/archetype_node_id":"at0010","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0010]/name/_type":"DV_TEXT","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0010]/name/value":"On / off cycle","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/archetype_details/archetype_id/value":"openEHR-EHR-CLUSTER.timing_nondaily.v1","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/archetype_details/rm_version":"1.0.4","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/archetype_details/_type":"ARCHETYPED","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/archetype_node_id":"openEHR-EHR-CLUSTER.timing_nondaily.v1","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/name/_type":"DV_TEXT","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/name/value":"Timing - non-daily","/description[at0017]/archetype_node_id":"at0017","/description[at0017]/name/_type":"DV_TEXT","/description[at0017]/name/value":"Tree","/protocol[at0030]/_type":"ITEM_TREE","/protocol[at0030]/archetype_node_id":"at0030","/protocol[at0030]/name/_type":"DV_TEXT","/protocol[at0030]/name/value":"Tree","/name/_type":"DV_TEXT","/name/value":"Medication statement","/archetype_node_id":"openEHR-EHR-ACTION.medication.v1","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"en","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-ACTION.medication.v1","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/time/_type":"DV_DATE_TIME","/time/value":"2021-12-03T16:05:19.513939+01:00","/time/magnitude":63774140719,"/ism_transition/_type":"ISM_TRANSITION","/ism_transition/current_state/_type":"DV_CODED_TEXT","/ism_transition/current_state/value":"active","/ism_transition/current_state/defining_code/_type":"CODE_PHRASE","/ism_transition/current_state/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/ism_transition/current_state/defining_code/terminology_id/value":"openehr","/ism_transition/current_state/defining_code/code_string":"245","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,4, 'openEHR-EHR-ACTION.medication.v1', 'ACTION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Medication Summary'']/items[openEHR-EHR-ACTION.medication.v1,''Medication statement'']', '{}', '{0}', 1, '{"/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0071]/_type":"ELEMENT","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0071]/value/_type":"DV_TEXT","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0071]/value/value":"Form 11"}'),
+ (eid,cid,5, 'openEHR-EHR-ACTION.medication.v1', 'ACTION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Medication Summary'']/items[openEHR-EHR-ACTION.medication.v1,''Medication statement'']', '{}', '{0}', 1, '{"/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0150]/_type":"ELEMENT","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0150]/value/_type":"DV_TEXT","/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0150]/value/value":"Batch ID 76"}'),
+ (eid,cid,6, 'openEHR-EHR-ACTION.medication.v1', 'ACTION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Medication Summary'']/items[openEHR-EHR-ACTION.medication.v1,''Medication statement'']', '{}', '{0}', 1, '{"/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0004]/_type":"ELEMENT","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0004]/value/_type":"DV_TIME","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0004]/value/value":"16:05:19.513694","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0004]/value/magnitude":57919.0}'),
+ (eid,cid,7, 'openEHR-EHR-ACTION.medication.v1', 'ACTION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Medication Summary'']/items[openEHR-EHR-ACTION.medication.v1,''Medication statement'']', '{}', '{0}', 1, '{"/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0039]/_type":"CLUSTER","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0039]/items[at0026]/_type":"ELEMENT","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0039]/items[at0026]/value/_type":"DV_TEXT","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0039]/items[at0026]/value/value":"Event name 29","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0039]/items[at0040]/_type":"ELEMENT","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0039]/items[at0040]/value/_type":"DV_DURATION","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0039]/items[at0040]/value/value":"PT2H2M4S","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0039]/items[at0040]/value/magnitude":7324.0,"/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0039]/archetype_node_id":"at0039","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0039]/name/_type":"DV_TEXT","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0039]/name/value":"Specific event"}'),
+ (eid,cid,8, 'openEHR-EHR-ACTION.medication.v1', 'ACTION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Medication Summary'']/items[openEHR-EHR-ACTION.medication.v1,''Medication statement'']', '{}', '{0}', 1, '{"/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0035]/_type":"CLUSTER","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0035]/items[at0036]/_type":"ELEMENT","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0035]/items[at0036]/value/_type":"DV_DURATION","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0035]/items[at0036]/value/value":"PT10H1S","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0035]/items[at0036]/value/magnitude":36001.0,"/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0035]/items[at0037]/_type":"ELEMENT","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0035]/items[at0037]/value/_type":"DV_DURATION","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0035]/items[at0037]/value/value":"PT2H1M1S","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0035]/items[at0037]/value/magnitude":7261.0,"/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0035]/items[at0038]/_type":"ELEMENT","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0035]/items[at0038]/value/_type":"DV_COUNT","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0035]/items[at0038]/value/magnitude":10,"/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0035]/archetype_node_id":"at0035","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0035]/name/_type":"DV_TEXT","/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0035]/name/value":"On / off cycle"}'),
+ (eid,cid,9, 'openEHR-EHR-ACTION.medication.v1', 'ACTION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Medication Summary'']/items[openEHR-EHR-ACTION.medication.v1,''Medication statement'']', '{}', '{0}', 1, '{"/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0001]/_type":"ELEMENT","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0001]/value/_type":"DV_DATE","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0001]/value/value":"2021-12-03","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0001]/value/magnitude":738126}'),
+ (eid,cid,10, 'openEHR-EHR-ACTION.medication.v1', 'ACTION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Medication Summary'']/items[openEHR-EHR-ACTION.medication.v1,''Medication statement'']', '{}', '{0}', 1, '{"/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0003]/_type":"ELEMENT","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0003]/value/_type":"DV_CODED_TEXT","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0003]/value/value":"Monday","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0003]/value/defining_code/_type":"CODE_PHRASE","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0003]/value/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0003]/value/defining_code/terminology_id/value":"local","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0003]/value/defining_code/code_string":"at0007"}'),
+ (eid,cid,11, 'openEHR-EHR-ACTION.medication.v1', 'ACTION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Medication Summary'']/items[openEHR-EHR-ACTION.medication.v1,''Medication statement'']', '{}', '{0}', 1, '{"/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0004]/_type":"ELEMENT","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0004]/value/_type":"DV_COUNT","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0004]/value/magnitude":27}'),
+ (eid,cid,12, 'openEHR-EHR-ACTION.medication.v1', 'ACTION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Medication Summary'']/items[openEHR-EHR-ACTION.medication.v1,''Medication statement'']', '{}', '{0}', 1, '{"/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0006]/_type":"CLUSTER","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0006]/items[at0005]/_type":"ELEMENT","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0006]/items[at0005]/value/_type":"DV_TEXT","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0006]/items[at0005]/value/value":"Event name 15","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0006]/items[at0009]/_type":"ELEMENT","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0006]/items[at0009]/value/_type":"DV_DURATION","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0006]/items[at0009]/value/value":"P4Y3M21D","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0006]/items[at0009]/value/magnitude":1.35926208E8,"/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0006]/archetype_node_id":"at0006","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0006]/name/_type":"DV_TEXT","/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0006]/name/value":"Specific event"}'),
+ (eid,cid,13, 'openEHR-EHR-ACTION.medication.v1', 'ACTION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Medication Summary'']/items[openEHR-EHR-ACTION.medication.v1,''Medication statement'']', '{}', '{0}', 1, '{"/protocol[at0030]/items[at0103]/_type":"ELEMENT","/protocol[at0030]/items[at0103]/value/_type":"DV_IDENTIFIER","/protocol[at0030]/items[at0103]/value/issuer":"Issuer","/protocol[at0030]/items[at0103]/value/assigner":"Assigner","/protocol[at0030]/items[at0103]/value/id":"9a0e5173-07c8-443d-b414-24432b9d95ca","/protocol[at0030]/items[at0103]/value/type":"Prescription"}'),
+ (eid,cid,14, 'openEHR-EHR-ACTION.medication.v1', 'ACTION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Medication Summary'']/items[openEHR-EHR-ACTION.medication.v1,''Medication statement'']', '{}', '{0}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"requester","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"face-to-face communication","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"216","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"199","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Dr. Marcus Johnson"}'),
+ (eid,cid,15, 'openEHR-EHR-ACTION.medication.v1', 'ACTION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Medication Summary'']/items[openEHR-EHR-ACTION.medication.v1,''Medication statement'']', '{}', '{1}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"performer","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"not specified","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"193","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"198","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Lara Markham"}'),
+ (eid,cid,16, 'openEHR-EHR-EVALUATION.exclusion_global.v1', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Medication Summary'']/items[openEHR-EHR-EVALUATION.exclusion_global.v1]', '{}', '{}', 0, '{"/_type":"EVALUATION","/data[at0001]/_type":"ITEM_TREE","/data[at0001]/items[at0002,''Global exclusion of medication use'']/_type":"ELEMENT","/data[at0001]/items[at0002,''Global exclusion of medication use'']/value/_type":"DV_TEXT","/data[at0001]/items[at0002,''Global exclusion of medication use'']/value/value":"No known medications","/data[at0001]/items[at0002,''Global exclusion of medication use'']/name/_type":"DV_CODED_TEXT","/data[at0001]/items[at0002,''Global exclusion of medication use'']/name/value":"Global exclusion of medication use","/data[at0001]/items[at0002,''Global exclusion of medication use'']/name/defining_code/_type":"CODE_PHRASE","/data[at0001]/items[at0002,''Global exclusion of medication use'']/name/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/items[at0002,''Global exclusion of medication use'']/name/defining_code/terminology_id/value":"local","/data[at0001]/items[at0002,''Global exclusion of medication use'']/name/defining_code/code_string":"at0005","/data[at0001]/archetype_node_id":"at0001","/data[at0001]/name/_type":"DV_TEXT","/data[at0001]/name/value":"Tree","/archetype_node_id":"openEHR-EHR-EVALUATION.exclusion_global.v1","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"en","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-EVALUATION.exclusion_global.v1","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/name/_type":"DV_TEXT","/name/value":"Exclusion - global","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,17, 'openEHR-EHR-EVALUATION.exclusion_global.v1', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Medication Summary'']/items[openEHR-EHR-EVALUATION.exclusion_global.v1]', '{}', '{0}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"requester","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"face-to-face communication","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"216","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"199","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Dr. Marcus Johnson"}'),
+ (eid,cid,18, 'openEHR-EHR-EVALUATION.exclusion_global.v1', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Medication Summary'']/items[openEHR-EHR-EVALUATION.exclusion_global.v1]', '{}', '{1}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"performer","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"not specified","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"193","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"198","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Lara Markham"}'),
+ (eid,cid,19, 'openEHR-EHR-EVALUATION.absence.v2', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Medication Summary'']/items[openEHR-EHR-EVALUATION.absence.v2]', '{}', '{}', 0, '{"/_type":"EVALUATION","/data[at0001]/_type":"ITEM_TREE","/data[at0001]/items[at0002]/_type":"ELEMENT","/data[at0001]/items[at0002]/value/_type":"DV_TEXT","/data[at0001]/items[at0002]/value/value":"No information about medications","/data[at0001]/archetype_node_id":"at0001","/data[at0001]/name/_type":"DV_TEXT","/data[at0001]/name/value":"Tree","/protocol[at0003]/_type":"ITEM_TREE","/protocol[at0003]/items[at0004]/_type":"ELEMENT","/protocol[at0003]/items[at0004]/value/_type":"DV_DATE_TIME","/protocol[at0003]/items[at0004]/value/value":"2021-12-03T16:05:19.513988+01:00","/protocol[at0003]/items[at0004]/value/magnitude":63774140719,"/protocol[at0003]/archetype_node_id":"at0003","/protocol[at0003]/name/_type":"DV_TEXT","/protocol[at0003]/name/value":"Tree","/archetype_node_id":"openEHR-EHR-EVALUATION.absence.v2","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"en","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-EVALUATION.absence.v2","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/name/_type":"DV_TEXT","/name/value":"Absence of information","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,20, 'openEHR-EHR-EVALUATION.absence.v2', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Medication Summary'']/items[openEHR-EHR-EVALUATION.absence.v2]', '{}', '{0}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"requester","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"face-to-face communication","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"216","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"199","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Dr. Marcus Johnson"}'),
+ (eid,cid,21, 'openEHR-EHR-EVALUATION.absence.v2', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Medication Summary'']/items[openEHR-EHR-EVALUATION.absence.v2]', '{}', '{1}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"performer","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"not specified","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"193","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"198","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Lara Markham"}'),
+ (eid,cid,22, 'openEHR-EHR-EVALUATION.adverse_reaction_risk.v1', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Allergies & Intolerances'']/items[openEHR-EHR-EVALUATION.adverse_reaction_risk.v1,''Allergy Intolerance'']', '{}', '{}', 0, '{"/_type":"EVALUATION","/data[at0001]/_type":"ITEM_TREE","/data[at0001]/items[at0002]/_type":"ELEMENT","/data[at0001]/items[at0002]/value/_type":"DV_TEXT","/data[at0001]/items[at0002]/value/value":"Substance 64","/data[at0001]/items[at0063,''Verification status'']/_type":"ELEMENT","/data[at0001]/items[at0063,''Verification status'']/value/_type":"DV_CODED_TEXT","/data[at0001]/items[at0063,''Verification status'']/value/value":"Refuted","/data[at0001]/items[at0063,''Verification status'']/value/defining_code/_type":"CODE_PHRASE","/data[at0001]/items[at0063,''Verification status'']/value/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/items[at0063,''Verification status'']/value/defining_code/terminology_id/value":"local","/data[at0001]/items[at0063,''Verification status'']/value/defining_code/code_string":"at0066","/data[at0001]/items[at0063,''Verification status'']/name/_type":"DV_TEXT","/data[at0001]/items[at0063,''Verification status'']/name/value":"Verification status","/data[at0001]/items[at0101]/_type":"ELEMENT","/data[at0001]/items[at0101]/value/_type":"DV_CODED_TEXT","/data[at0001]/items[at0101]/value/value":"High","/data[at0001]/items[at0101]/value/defining_code/_type":"CODE_PHRASE","/data[at0001]/items[at0101]/value/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/items[at0101]/value/defining_code/terminology_id/value":"local","/data[at0001]/items[at0101]/value/defining_code/code_string":"at0103","/data[at0001]/items[at0058,''Type'']/_type":"ELEMENT","/data[at0001]/items[at0058,''Type'']/value/_type":"DV_TEXT","/data[at0001]/items[at0058,''Type'']/value/value":"Allergy","/data[at0001]/items[at0058,''Type'']/name/_type":"DV_TEXT","/data[at0001]/items[at0058,''Type'']/name/value":"Type","/data[at0001]/items[at0006]/_type":"ELEMENT","/data[at0001]/items[at0006]/value/_type":"DV_TEXT","/data[at0001]/items[at0006]/value/value":"Comment 53","/data[at0001]/archetype_node_id":"at0001","/data[at0001]/name/_type":"DV_TEXT","/data[at0001]/name/value":"Tree","/protocol[at0042]/_type":"ITEM_TREE","/protocol[at0042]/items[at0062]/_type":"ELEMENT","/protocol[at0042]/items[at0062]/value/_type":"DV_DATE_TIME","/protocol[at0042]/items[at0062]/value/value":"2021-12-03T16:05:19.514045+01:00","/protocol[at0042]/items[at0062]/value/magnitude":63774140719,"/protocol[at0042]/archetype_node_id":"at0042","/protocol[at0042]/name/_type":"DV_TEXT","/protocol[at0042]/name/value":"Tree","/name/_type":"DV_TEXT","/name/value":"Allergy Intolerance","/archetype_node_id":"openEHR-EHR-EVALUATION.adverse_reaction_risk.v1","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"en","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-EVALUATION.adverse_reaction_risk.v1","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,23, 'openEHR-EHR-EVALUATION.adverse_reaction_risk.v1', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Allergies & Intolerances'']/items[openEHR-EHR-EVALUATION.adverse_reaction_risk.v1,''Allergy Intolerance'']', '{}', '{0}', 1, '{"/data[at0001]/items[at0009,''Reaction'']/_type":"CLUSTER","/data[at0001]/items[at0009,''Reaction'']/items[at0027,''Onset'']/_type":"ELEMENT","/data[at0001]/items[at0009,''Reaction'']/items[at0027,''Onset'']/value/_type":"DV_DATE_TIME","/data[at0001]/items[at0009,''Reaction'']/items[at0027,''Onset'']/value/value":"2021-12-03T16:05:19.514022+01:00","/data[at0001]/items[at0009,''Reaction'']/items[at0027,''Onset'']/value/magnitude":63774140719,"/data[at0001]/items[at0009,''Reaction'']/items[at0027,''Onset'']/name/_type":"DV_TEXT","/data[at0001]/items[at0009,''Reaction'']/items[at0027,''Onset'']/name/value":"Onset","/data[at0001]/items[at0009,''Reaction'']/items[at0089,''Severity'']/_type":"ELEMENT","/data[at0001]/items[at0009,''Reaction'']/items[at0089,''Severity'']/value/_type":"DV_CODED_TEXT","/data[at0001]/items[at0009,''Reaction'']/items[at0089,''Severity'']/value/value":"Severe","/data[at0001]/items[at0009,''Reaction'']/items[at0089,''Severity'']/value/defining_code/_type":"CODE_PHRASE","/data[at0001]/items[at0009,''Reaction'']/items[at0089,''Severity'']/value/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/items[at0009,''Reaction'']/items[at0089,''Severity'']/value/defining_code/terminology_id/value":"local","/data[at0001]/items[at0009,''Reaction'']/items[at0089,''Severity'']/value/defining_code/code_string":"at0090","/data[at0001]/items[at0009,''Reaction'']/items[at0089,''Severity'']/name/_type":"DV_TEXT","/data[at0001]/items[at0009,''Reaction'']/items[at0089,''Severity'']/name/value":"Severity","/data[at0001]/items[at0009,''Reaction'']/name/_type":"DV_TEXT","/data[at0001]/items[at0009,''Reaction'']/name/value":"Reaction","/data[at0001]/items[at0009,''Reaction'']/archetype_node_id":"at0009"}'),
+ (eid,cid,24, 'openEHR-EHR-EVALUATION.adverse_reaction_risk.v1', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Allergies & Intolerances'']/items[openEHR-EHR-EVALUATION.adverse_reaction_risk.v1,''Allergy Intolerance'']', '{}', '{0,0}', 2, '{"/data[at0001]/items[at0009,''Reaction'']/items[at0011]/_type":"ELEMENT","/data[at0001]/items[at0009,''Reaction'']/items[at0011]/value/_type":"DV_TEXT","/data[at0001]/items[at0009,''Reaction'']/items[at0011]/value/value":"Manifestation 20"}'),
+ (eid,cid,25, 'openEHR-EHR-EVALUATION.adverse_reaction_risk.v1', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Allergies & Intolerances'']/items[openEHR-EHR-EVALUATION.adverse_reaction_risk.v1,''Allergy Intolerance'']', '{}', '{0}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"requester","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"face-to-face communication","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"216","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"199","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Dr. Marcus Johnson"}'),
+ (eid,cid,26, 'openEHR-EHR-EVALUATION.adverse_reaction_risk.v1', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Allergies & Intolerances'']/items[openEHR-EHR-EVALUATION.adverse_reaction_risk.v1,''Allergy Intolerance'']', '{}', '{1}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"performer","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"not specified","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"193","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"198","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Lara Markham"}'),
+ (eid,cid,27, 'openEHR-EHR-EVALUATION.exclusion_global.v1', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Allergies & Intolerances'']/items[openEHR-EHR-EVALUATION.exclusion_global.v1]', '{}', '{}', 0, '{"/_type":"EVALUATION","/data[at0001]/_type":"ITEM_TREE","/data[at0001]/items[at0002,''Global exclusion of adverse reactions'']/_type":"ELEMENT","/data[at0001]/items[at0002,''Global exclusion of adverse reactions'']/value/_type":"DV_TEXT","/data[at0001]/items[at0002,''Global exclusion of adverse reactions'']/value/value":"No known environmental allergies","/data[at0001]/items[at0002,''Global exclusion of adverse reactions'']/name/_type":"DV_CODED_TEXT","/data[at0001]/items[at0002,''Global exclusion of adverse reactions'']/name/value":"Global exclusion of adverse reactions","/data[at0001]/items[at0002,''Global exclusion of adverse reactions'']/name/defining_code/_type":"CODE_PHRASE","/data[at0001]/items[at0002,''Global exclusion of adverse reactions'']/name/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/items[at0002,''Global exclusion of adverse reactions'']/name/defining_code/terminology_id/value":"local","/data[at0001]/items[at0002,''Global exclusion of adverse reactions'']/name/defining_code/code_string":"at0007","/data[at0001]/archetype_node_id":"at0001","/data[at0001]/name/_type":"DV_TEXT","/data[at0001]/name/value":"Tree","/archetype_node_id":"openEHR-EHR-EVALUATION.exclusion_global.v1","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"en","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-EVALUATION.exclusion_global.v1","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/name/_type":"DV_TEXT","/name/value":"Exclusion - global","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,28, 'openEHR-EHR-EVALUATION.exclusion_global.v1', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Allergies & Intolerances'']/items[openEHR-EHR-EVALUATION.exclusion_global.v1]', '{}', '{0}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"requester","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"face-to-face communication","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"216","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"199","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Dr. Marcus Johnson"}'),
+ (eid,cid,29, 'openEHR-EHR-EVALUATION.exclusion_global.v1', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Allergies & Intolerances'']/items[openEHR-EHR-EVALUATION.exclusion_global.v1]', '{}', '{1}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"performer","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"not specified","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"193","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"198","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Lara Markham"}'),
+ (eid,cid,30, 'openEHR-EHR-EVALUATION.absence.v2', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Allergies & Intolerances'']/items[openEHR-EHR-EVALUATION.absence.v2]', '{}', '{}', 0, '{"/_type":"EVALUATION","/data[at0001]/_type":"ITEM_TREE","/data[at0001]/items[at0002]/_type":"ELEMENT","/data[at0001]/items[at0002]/value/_type":"DV_TEXT","/data[at0001]/items[at0002]/value/value":"No information about allergies","/data[at0001]/archetype_node_id":"at0001","/data[at0001]/name/_type":"DV_TEXT","/data[at0001]/name/value":"Tree","/protocol[at0003]/_type":"ITEM_TREE","/protocol[at0003]/items[at0004]/_type":"ELEMENT","/protocol[at0003]/items[at0004]/value/_type":"DV_DATE_TIME","/protocol[at0003]/items[at0004]/value/value":"2021-12-03T16:05:19.514071+01:00","/protocol[at0003]/items[at0004]/value/magnitude":63774140719,"/protocol[at0003]/archetype_node_id":"at0003","/protocol[at0003]/name/_type":"DV_TEXT","/protocol[at0003]/name/value":"Tree","/archetype_node_id":"openEHR-EHR-EVALUATION.absence.v2","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"en","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-EVALUATION.absence.v2","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/name/_type":"DV_TEXT","/name/value":"Absence of information","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,31, 'openEHR-EHR-EVALUATION.absence.v2', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Allergies & Intolerances'']/items[openEHR-EHR-EVALUATION.absence.v2]', '{}', '{0}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"requester","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"face-to-face communication","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"216","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"199","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Dr. Marcus Johnson"}'),
+ (eid,cid,32, 'openEHR-EHR-EVALUATION.absence.v2', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Allergies & Intolerances'']/items[openEHR-EHR-EVALUATION.absence.v2]', '{}', '{1}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"performer","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"not specified","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"193","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"198","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Lara Markham"}'),
+ (eid,cid,33, 'openEHR-EHR-EVALUATION.problem_diagnosis.v1', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Problem List'']/items[openEHR-EHR-EVALUATION.problem_diagnosis.v1]', '{}', '{}', 0, '{"/_type":"EVALUATION","/data[at0001]/_type":"ITEM_TREE","/data[at0001]/items[at0002]/_type":"ELEMENT","/data[at0001]/items[at0002]/value/_type":"DV_TEXT","/data[at0001]/items[at0002]/value/value":"Problem/Diagnosis name 23","/data[at0001]/items[at0077]/_type":"ELEMENT","/data[at0001]/items[at0077]/value/_type":"DV_DATE_TIME","/data[at0001]/items[at0077]/value/value":"2021-12-03T16:05:19.514097+01:00","/data[at0001]/items[at0077]/value/magnitude":63774140719,"/data[at0001]/items[at0005]/_type":"ELEMENT","/data[at0001]/items[at0005]/value/_type":"DV_CODED_TEXT","/data[at0001]/items[at0005]/value/value":"Moderate","/data[at0001]/items[at0005]/value/defining_code/_type":"CODE_PHRASE","/data[at0001]/items[at0005]/value/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/items[at0005]/value/defining_code/terminology_id/value":"local","/data[at0001]/items[at0005]/value/defining_code/code_string":"at0048","/data[at0001]/items[at0030,''Date of abatement'']/_type":"ELEMENT","/data[at0001]/items[at0030,''Date of abatement'']/value/_type":"DV_DATE_TIME","/data[at0001]/items[at0030,''Date of abatement'']/value/value":"2021-12-03T16:05:19.514119+01:00","/data[at0001]/items[at0030,''Date of abatement'']/value/magnitude":63774140719,"/data[at0001]/items[at0030,''Date of abatement'']/name/_type":"DV_TEXT","/data[at0001]/items[at0030,''Date of abatement'']/name/value":"Date of abatement","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/_type":"CLUSTER","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0003]/_type":"ELEMENT","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0003]/value/_type":"DV_CODED_TEXT","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0003]/value/value":"Inactive","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0003]/value/defining_code/_type":"CODE_PHRASE","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0003]/value/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0003]/value/defining_code/terminology_id/value":"local","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0003]/value/defining_code/code_string":"at0027","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0083]/_type":"ELEMENT","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0083]/value/_type":"DV_CODED_TEXT","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0083]/value/value":"Relapsed","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0083]/value/defining_code/_type":"CODE_PHRASE","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0083]/value/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0083]/value/defining_code/terminology_id/value":"local","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0083]/value/defining_code/code_string":"at0097","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0089]/_type":"ELEMENT","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0089]/value/_type":"DV_CODED_TEXT","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0089]/value/value":"In remission","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0089]/value/defining_code/_type":"CODE_PHRASE","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0089]/value/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0089]/value/defining_code/terminology_id/value":"local","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0089]/value/defining_code/code_string":"at0090","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0071]/_type":"ELEMENT","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0071]/value/_type":"DV_CODED_TEXT","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0071]/value/value":"Recurrence","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0071]/value/defining_code/_type":"CODE_PHRASE","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0071]/value/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0071]/value/defining_code/terminology_id/value":"local","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0071]/value/defining_code/code_string":"at0096","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/archetype_details/archetype_id/value":"openEHR-EHR-CLUSTER.problem_qualifier.v1","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/archetype_details/rm_version":"1.0.4","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/archetype_details/_type":"ARCHETYPED","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/archetype_node_id":"openEHR-EHR-CLUSTER.problem_qualifier.v1","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/name/_type":"DV_TEXT","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/name/value":"Problem/Diagnosis qualifier","/data[at0001]/items[at0073]/_type":"ELEMENT","/data[at0001]/items[at0073]/value/_type":"DV_CODED_TEXT","/data[at0001]/items[at0073]/value/value":"Probable","/data[at0001]/items[at0073]/value/defining_code/_type":"CODE_PHRASE","/data[at0001]/items[at0073]/value/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/items[at0073]/value/defining_code/terminology_id/value":"local","/data[at0001]/items[at0073]/value/defining_code/code_string":"at0075","/data[at0001]/archetype_node_id":"at0001","/data[at0001]/name/_type":"DV_TEXT","/data[at0001]/name/value":"structure","/protocol[at0032]/_type":"ITEM_TREE","/protocol[at0032]/items[at0070]/_type":"ELEMENT","/protocol[at0032]/items[at0070]/value/_type":"DV_DATE_TIME","/protocol[at0032]/items[at0070]/value/value":"2021-12-03T16:05:19.514148+01:00","/protocol[at0032]/items[at0070]/value/magnitude":63774140719,"/protocol[at0032]/archetype_node_id":"at0032","/protocol[at0032]/name/_type":"DV_TEXT","/protocol[at0032]/name/value":"Tree","/archetype_node_id":"openEHR-EHR-EVALUATION.problem_diagnosis.v1","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"en","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-EVALUATION.problem_diagnosis.v1","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/name/_type":"DV_TEXT","/name/value":"Problem/Diagnosis","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,34, 'openEHR-EHR-EVALUATION.problem_diagnosis.v1', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Problem List'']/items[openEHR-EHR-EVALUATION.problem_diagnosis.v1]', '{}', '{0}', 1, '{"/data[at0001]/items[at0012]/_type":"ELEMENT","/data[at0001]/items[at0012]/value/_type":"DV_TEXT","/data[at0001]/items[at0012]/value/value":"Body site 31"}'),
+ (eid,cid,35, 'openEHR-EHR-EVALUATION.problem_diagnosis.v1', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Problem List'']/items[openEHR-EHR-EVALUATION.problem_diagnosis.v1]', '{}', '{0}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"requester","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"face-to-face communication","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"216","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"199","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Dr. Marcus Johnson"}'),
+ (eid,cid,36, 'openEHR-EHR-EVALUATION.problem_diagnosis.v1', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Problem List'']/items[openEHR-EHR-EVALUATION.problem_diagnosis.v1]', '{}', '{1}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"performer","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"not specified","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"193","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"198","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Lara Markham"}'),
+ (eid,cid,37, 'openEHR-EHR-EVALUATION.exclusion_global.v1', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Problem List'']/items[openEHR-EHR-EVALUATION.exclusion_global.v1]', '{}', '{}', 0, '{"/_type":"EVALUATION","/data[at0001]/_type":"ITEM_TREE","/data[at0001]/items[at0002,''Global exclusion of problems/diagnoses'']/_type":"ELEMENT","/data[at0001]/items[at0002,''Global exclusion of problems/diagnoses'']/value/_type":"DV_TEXT","/data[at0001]/items[at0002,''Global exclusion of problems/diagnoses'']/value/value":"No known problems","/data[at0001]/items[at0002,''Global exclusion of problems/diagnoses'']/name/_type":"DV_CODED_TEXT","/data[at0001]/items[at0002,''Global exclusion of problems/diagnoses'']/name/value":"Global exclusion of problems/diagnoses","/data[at0001]/items[at0002,''Global exclusion of problems/diagnoses'']/name/defining_code/_type":"CODE_PHRASE","/data[at0001]/items[at0002,''Global exclusion of problems/diagnoses'']/name/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/items[at0002,''Global exclusion of problems/diagnoses'']/name/defining_code/terminology_id/value":"local","/data[at0001]/items[at0002,''Global exclusion of problems/diagnoses'']/name/defining_code/code_string":"at0003","/data[at0001]/archetype_node_id":"at0001","/data[at0001]/name/_type":"DV_TEXT","/data[at0001]/name/value":"Tree","/archetype_node_id":"openEHR-EHR-EVALUATION.exclusion_global.v1","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"en","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-EVALUATION.exclusion_global.v1","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/name/_type":"DV_TEXT","/name/value":"Exclusion - global","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,38, 'openEHR-EHR-EVALUATION.exclusion_global.v1', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Problem List'']/items[openEHR-EHR-EVALUATION.exclusion_global.v1]', '{}', '{0}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"requester","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"face-to-face communication","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"216","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"199","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Dr. Marcus Johnson"}'),
+ (eid,cid,39, 'openEHR-EHR-EVALUATION.exclusion_global.v1', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Problem List'']/items[openEHR-EHR-EVALUATION.exclusion_global.v1]', '{}', '{1}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"performer","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"not specified","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"193","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"198","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Lara Markham"}'),
+ (eid,cid,40, 'openEHR-EHR-EVALUATION.absence.v2', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Problem List'']/items[openEHR-EHR-EVALUATION.absence.v2]', '{}', '{}', 0, '{"/_type":"EVALUATION","/data[at0001]/_type":"ITEM_TREE","/data[at0001]/items[at0002]/_type":"ELEMENT","/data[at0001]/items[at0002]/value/_type":"DV_TEXT","/data[at0001]/items[at0002]/value/value":"No information about current problems","/data[at0001]/archetype_node_id":"at0001","/data[at0001]/name/_type":"DV_TEXT","/data[at0001]/name/value":"Tree","/protocol[at0003]/_type":"ITEM_TREE","/protocol[at0003]/items[at0004]/_type":"ELEMENT","/protocol[at0003]/items[at0004]/value/_type":"DV_DATE_TIME","/protocol[at0003]/items[at0004]/value/value":"2021-12-03T16:05:19.514175+01:00","/protocol[at0003]/items[at0004]/value/magnitude":63774140719,"/protocol[at0003]/archetype_node_id":"at0003","/protocol[at0003]/name/_type":"DV_TEXT","/protocol[at0003]/name/value":"Tree","/archetype_node_id":"openEHR-EHR-EVALUATION.absence.v2","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"en","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-EVALUATION.absence.v2","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/name/_type":"DV_TEXT","/name/value":"Absence of information","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,41, 'openEHR-EHR-EVALUATION.absence.v2', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Problem List'']/items[openEHR-EHR-EVALUATION.absence.v2]', '{}', '{0}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"requester","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"face-to-face communication","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"216","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"199","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Dr. Marcus Johnson"}'),
+ (eid,cid,42, 'openEHR-EHR-EVALUATION.absence.v2', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Problem List'']/items[openEHR-EHR-EVALUATION.absence.v2]', '{}', '{1}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"performer","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"not specified","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"193","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"198","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Lara Markham"}'),
+ (eid,cid,43, 'openEHR-EHR-ACTION.medication.v1', 'ACTION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Immunizations'']/items[openEHR-EHR-ACTION.medication.v1,''Immunization statement'']', '{}', '{}', 0, '{"/_type":"ACTION","/description[at0017]/_type":"ITEM_TREE","/description[at0017]/items[at0020,''Immunisation item'']/_type":"ELEMENT","/description[at0017]/items[at0020,''Immunisation item'']/value/_type":"DV_TEXT","/description[at0017]/items[at0020,''Immunisation item'']/value/value":"Immunisation item 11","/description[at0017]/items[at0020,''Immunisation item'']/name/_type":"DV_TEXT","/description[at0017]/items[at0020,''Immunisation item'']/name/value":"Immunisation item","/description[at0017]/items[at0140]/_type":"CLUSTER","/description[at0017]/items[at0140]/items[at0147]/_type":"ELEMENT","/description[at0017]/items[at0140]/items[at0147]/value/_type":"DV_TEXT","/description[at0017]/items[at0140]/items[at0147]/value/value":"Route 76","/description[at0017]/items[at0140]/items[at0141,''Target site'']/_type":"ELEMENT","/description[at0017]/items[at0140]/items[at0141,''Target site'']/value/_type":"DV_TEXT","/description[at0017]/items[at0140]/items[at0141,''Target site'']/value/value":"Target site 95","/description[at0017]/items[at0140]/items[at0141,''Target site'']/name/_type":"DV_TEXT","/description[at0017]/items[at0140]/items[at0141,''Target site'']/name/value":"Target site","/description[at0017]/items[at0140]/archetype_node_id":"at0140","/description[at0017]/items[at0140]/name/_type":"DV_TEXT","/description[at0017]/items[at0140]/name/value":"Administration details","/description[at0017]/items[at0025]/_type":"ELEMENT","/description[at0017]/items[at0025]/value/_type":"DV_COUNT","/description[at0017]/items[at0025]/value/magnitude":8,"/description[at0017]/archetype_node_id":"at0017","/description[at0017]/name/_type":"DV_TEXT","/description[at0017]/name/value":"Tree","/name/_type":"DV_TEXT","/name/value":"Immunization statement","/archetype_node_id":"openEHR-EHR-ACTION.medication.v1","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"en","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-ACTION.medication.v1","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/time/_type":"DV_DATE_TIME","/time/value":"2021-12-03T16:05:19.514212+01:00","/time/magnitude":63774140719,"/ism_transition/_type":"ISM_TRANSITION","/ism_transition/current_state/_type":"DV_CODED_TEXT","/ism_transition/current_state/value":"active","/ism_transition/current_state/defining_code/_type":"CODE_PHRASE","/ism_transition/current_state/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/ism_transition/current_state/defining_code/terminology_id/value":"openehr","/ism_transition/current_state/defining_code/code_string":"245","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,44, 'openEHR-EHR-ACTION.medication.v1', 'ACTION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Immunizations'']/items[openEHR-EHR-ACTION.medication.v1,''Immunization statement'']', '{}', '{0}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"requester","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"face-to-face communication","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"216","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"199","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Dr. Marcus Johnson"}'),
+ (eid,cid,45, 'openEHR-EHR-ACTION.medication.v1', 'ACTION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Immunizations'']/items[openEHR-EHR-ACTION.medication.v1,''Immunization statement'']', '{}', '{1}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"performer","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"not specified","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"193","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"198","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Lara Markham"}'),
+ (eid,cid,46, 'openEHR-EHR-EVALUATION.absence.v2', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Immunizations'']/items[openEHR-EHR-EVALUATION.absence.v2]', '{}', '{}', 0, '{"/_type":"EVALUATION","/data[at0001]/_type":"ITEM_TREE","/data[at0001]/items[at0002]/_type":"ELEMENT","/data[at0001]/items[at0002]/value/_type":"DV_TEXT","/data[at0001]/items[at0002]/value/value":"No information about immunizations","/data[at0001]/archetype_node_id":"at0001","/data[at0001]/name/_type":"DV_TEXT","/data[at0001]/name/value":"Tree","/protocol[at0003]/_type":"ITEM_TREE","/protocol[at0003]/items[at0004]/_type":"ELEMENT","/protocol[at0003]/items[at0004]/value/_type":"DV_DATE_TIME","/protocol[at0003]/items[at0004]/value/value":"2021-12-03T16:05:19.514237+01:00","/protocol[at0003]/items[at0004]/value/magnitude":63774140719,"/protocol[at0003]/archetype_node_id":"at0003","/protocol[at0003]/name/_type":"DV_TEXT","/protocol[at0003]/name/value":"Tree","/archetype_node_id":"openEHR-EHR-EVALUATION.absence.v2","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"en","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-EVALUATION.absence.v2","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/name/_type":"DV_TEXT","/name/value":"Absence of information","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,47, 'openEHR-EHR-EVALUATION.absence.v2', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Immunizations'']/items[openEHR-EHR-EVALUATION.absence.v2]', '{}', '{0}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"requester","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"face-to-face communication","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"216","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"199","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Dr. Marcus Johnson"}'),
+ (eid,cid,48, 'openEHR-EHR-EVALUATION.absence.v2', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Immunizations'']/items[openEHR-EHR-EVALUATION.absence.v2]', '{}', '{1}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"performer","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"not specified","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"193","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"198","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Lara Markham"}'),
+ (eid,cid,49, 'openEHR-EHR-ACTION.procedure.v1', 'ACTION', '/content[openEHR-EHR-SECTION.adhoc.v1,''History of Procedures'']/items[openEHR-EHR-ACTION.procedure.v1]', '{}', '{}', 0, '{"/_type":"ACTION","/description[at0001]/_type":"ITEM_TREE","/description[at0001]/items[at0002]/_type":"ELEMENT","/description[at0001]/items[at0002]/value/_type":"DV_TEXT","/description[at0001]/items[at0002]/value/value":"Procedure name 5","/description[at0001]/archetype_node_id":"at0001","/description[at0001]/name/_type":"DV_TEXT","/description[at0001]/name/value":"Tree","/archetype_node_id":"openEHR-EHR-ACTION.procedure.v1","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"en","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-ACTION.procedure.v1","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/name/_type":"DV_TEXT","/name/value":"Procedure","/time/_type":"DV_DATE_TIME","/time/value":"2021-12-03T16:05:19.514267+01:00","/time/magnitude":63774140719,"/ism_transition/_type":"ISM_TRANSITION","/ism_transition/current_state/_type":"DV_CODED_TEXT","/ism_transition/current_state/value":"planned","/ism_transition/current_state/defining_code/_type":"CODE_PHRASE","/ism_transition/current_state/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/ism_transition/current_state/defining_code/terminology_id/value":"openehr","/ism_transition/current_state/defining_code/code_string":"526","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,50, 'openEHR-EHR-ACTION.procedure.v1', 'ACTION', '/content[openEHR-EHR-SECTION.adhoc.v1,''History of Procedures'']/items[openEHR-EHR-ACTION.procedure.v1]', '{}', '{0}', 1, '{"/description[at0001]/items[at0063]/_type":"ELEMENT","/description[at0001]/items[at0063]/value/_type":"DV_TEXT","/description[at0001]/items[at0063]/value/value":"Body site 65"}'),
+ (eid,cid,51, 'openEHR-EHR-ACTION.procedure.v1', 'ACTION', '/content[openEHR-EHR-SECTION.adhoc.v1,''History of Procedures'']/items[openEHR-EHR-ACTION.procedure.v1]', '{}', '{0}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"requester","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"face-to-face communication","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"216","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"199","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Dr. Marcus Johnson"}'),
+ (eid,cid,52, 'openEHR-EHR-ACTION.procedure.v1', 'ACTION', '/content[openEHR-EHR-SECTION.adhoc.v1,''History of Procedures'']/items[openEHR-EHR-ACTION.procedure.v1]', '{}', '{1}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"performer","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"not specified","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"193","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"198","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Lara Markham"}'),
+ (eid,cid,53, 'openEHR-EHR-EVALUATION.absence.v2', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''History of Procedures'']/items[openEHR-EHR-EVALUATION.absence.v2]', '{}', '{}', 0, '{"/_type":"EVALUATION","/data[at0001]/_type":"ITEM_TREE","/data[at0001]/items[at0002]/_type":"ELEMENT","/data[at0001]/items[at0002]/value/_type":"DV_TEXT","/data[at0001]/items[at0002]/value/value":"No information about past history of procedures","/data[at0001]/archetype_node_id":"at0001","/data[at0001]/name/_type":"DV_TEXT","/data[at0001]/name/value":"Tree","/protocol[at0003]/_type":"ITEM_TREE","/protocol[at0003]/items[at0004]/_type":"ELEMENT","/protocol[at0003]/items[at0004]/value/_type":"DV_DATE_TIME","/protocol[at0003]/items[at0004]/value/value":"2021-12-03T16:05:19.514291+01:00","/protocol[at0003]/items[at0004]/value/magnitude":63774140719,"/protocol[at0003]/archetype_node_id":"at0003","/protocol[at0003]/name/_type":"DV_TEXT","/protocol[at0003]/name/value":"Tree","/archetype_node_id":"openEHR-EHR-EVALUATION.absence.v2","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"en","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-EVALUATION.absence.v2","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/name/_type":"DV_TEXT","/name/value":"Absence of information","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,54, 'openEHR-EHR-EVALUATION.absence.v2', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''History of Procedures'']/items[openEHR-EHR-EVALUATION.absence.v2]', '{}', '{0}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"requester","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"face-to-face communication","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"216","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"199","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Dr. Marcus Johnson"}'),
+ (eid,cid,55, 'openEHR-EHR-EVALUATION.absence.v2', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''History of Procedures'']/items[openEHR-EHR-EVALUATION.absence.v2]', '{}', '{1}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"performer","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"not specified","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"193","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"198","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Lara Markham"}'),
+ (eid,cid,56, 'openEHR-EHR-EVALUATION.exclusion_global.v1', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''History of Procedures'']/items[openEHR-EHR-EVALUATION.exclusion_global.v1]', '{}', '{}', 0, '{"/_type":"EVALUATION","/data[at0001]/_type":"ITEM_TREE","/data[at0001]/items[at0002,''Global exclusion of procedures'']/_type":"ELEMENT","/data[at0001]/items[at0002,''Global exclusion of procedures'']/value/_type":"DV_TEXT","/data[at0001]/items[at0002,''Global exclusion of procedures'']/value/value":"No known procedures","/data[at0001]/items[at0002,''Global exclusion of procedures'']/name/_type":"DV_CODED_TEXT","/data[at0001]/items[at0002,''Global exclusion of procedures'']/name/value":"Global exclusion of procedures","/data[at0001]/items[at0002,''Global exclusion of procedures'']/name/defining_code/_type":"CODE_PHRASE","/data[at0001]/items[at0002,''Global exclusion of procedures'']/name/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/items[at0002,''Global exclusion of procedures'']/name/defining_code/terminology_id/value":"local","/data[at0001]/items[at0002,''Global exclusion of procedures'']/name/defining_code/code_string":"at0006","/data[at0001]/archetype_node_id":"at0001","/data[at0001]/name/_type":"DV_TEXT","/data[at0001]/name/value":"Tree","/archetype_node_id":"openEHR-EHR-EVALUATION.exclusion_global.v1","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"en","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-EVALUATION.exclusion_global.v1","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/name/_type":"DV_TEXT","/name/value":"Exclusion - global","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,57, 'openEHR-EHR-EVALUATION.exclusion_global.v1', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''History of Procedures'']/items[openEHR-EHR-EVALUATION.exclusion_global.v1]', '{}', '{0}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"requester","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"face-to-face communication","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"216","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"199","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Dr. Marcus Johnson"}'),
+ (eid,cid,58, 'openEHR-EHR-EVALUATION.exclusion_global.v1', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''History of Procedures'']/items[openEHR-EHR-EVALUATION.exclusion_global.v1]', '{}', '{1}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"performer","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"not specified","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"193","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"198","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Lara Markham"}'),
+ (eid,cid,59, 'openEHR-EHR-EVALUATION.device_summary.v0', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Medical Devices'']/items[openEHR-EHR-EVALUATION.device_summary.v0,''Device use statement'']', '{}', '{}', 0, '{"/_type":"EVALUATION","/data[at0001]/_type":"ITEM_TREE","/data[at0001]/archetype_node_id":"at0001","/data[at0001]/name/_type":"DV_TEXT","/data[at0001]/name/value":"Tree","/name/_type":"DV_TEXT","/name/value":"Device use statement","/archetype_node_id":"openEHR-EHR-EVALUATION.device_summary.v0","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"en","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-EVALUATION.device_summary.v0","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,60, 'openEHR-EHR-EVALUATION.device_summary.v0', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Medical Devices'']/items[openEHR-EHR-EVALUATION.device_summary.v0,''Device use statement'']', '{}', '{0}', 1, '{"/data[at0001]/items[at0022]/_type":"CLUSTER","/data[at0001]/items[at0022]/items[at0007]/_type":"ELEMENT","/data[at0001]/items[at0022]/items[at0007]/value/_type":"DV_TEXT","/data[at0001]/items[at0022]/items[at0007]/value/value":"Device name 57","/data[at0001]/items[at0022]/items[at0012]/_type":"ELEMENT","/data[at0001]/items[at0022]/items[at0012]/value/_type":"DV_TEXT","/data[at0001]/items[at0022]/items[at0012]/value/value":"Body site 62","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/_type":"CLUSTER","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0001]/_type":"ELEMENT","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0001]/value/_type":"DV_TEXT","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0001]/value/value":"Device name 78","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0003]/_type":"ELEMENT","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0003]/value/_type":"DV_TEXT","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0003]/value/value":"Type 30","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0002]/_type":"ELEMENT","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0002]/value/_type":"DV_TEXT","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0002]/value/value":"Description 82","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0021]/_type":"ELEMENT","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0021]/value/_type":"DV_IDENTIFIER","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0021]/value/issuer":"Issuer","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0021]/value/assigner":"Assigner","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0021]/value/id":"73b166ae-1c28-4ce0-8c08-a9587d8fd95a","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0021]/value/type":"Prescription","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0004]/_type":"ELEMENT","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0004]/value/_type":"DV_TEXT","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0004]/value/value":"Manufacturer 71","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0005]/_type":"ELEMENT","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0005]/value/_type":"DV_DATE_TIME","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0005]/value/value":"2021-12-03T16:05:19.514334+01:00","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0005]/value/magnitude":63774140719,"/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0020]/_type":"ELEMENT","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0020]/value/_type":"DV_TEXT","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0020]/value/value":"Serial number 12","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0022]/_type":"ELEMENT","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0022]/value/_type":"DV_TEXT","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0022]/value/value":"Catalogue number 39","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0023]/_type":"ELEMENT","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0023]/value/_type":"DV_TEXT","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0023]/value/value":"Model number 8","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0006]/_type":"ELEMENT","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0006]/value/_type":"DV_TEXT","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0006]/value/value":"Batch/Lot number 52","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0025]/_type":"ELEMENT","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0025]/value/_type":"DV_TEXT","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0025]/value/value":"Software version 16","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0007]/_type":"ELEMENT","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0007]/value/_type":"DV_DATE_TIME","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0007]/value/value":"2021-12-03T16:05:19.514362+01:00","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0007]/value/magnitude":63774140719,"/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0008]/_type":"ELEMENT","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0008]/value/_type":"DV_TEXT","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0008]/value/value":"Comment 41","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/archetype_details/archetype_id/value":"openEHR-EHR-CLUSTER.device.v1","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/archetype_details/rm_version":"1.0.4","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/archetype_details/_type":"ARCHETYPED","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/archetype_node_id":"openEHR-EHR-CLUSTER.device.v1","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/name/_type":"DV_TEXT","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/name/value":"Medical device","/data[at0001]/items[at0022]/archetype_node_id":"at0022","/data[at0001]/items[at0022]/name/_type":"DV_TEXT","/data[at0001]/items[at0022]/name/value":"Device details"}'),
+ (eid,cid,61, 'openEHR-EHR-EVALUATION.device_summary.v0', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Medical Devices'']/items[openEHR-EHR-EVALUATION.device_summary.v0,''Device use statement'']', '{}', '{0,0}', 2, '{"/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0024]/_type":"ELEMENT","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0024]/value/_type":"DV_IDENTIFIER","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0024]/value/issuer":"Issuer","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0024]/value/assigner":"Assigner","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0024]/value/id":"60287ff3-ec0f-4cd5-9000-2c05af2e6a84","/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0024]/value/type":"Prescription"}'),
+ (eid,cid,62, 'openEHR-EHR-EVALUATION.device_summary.v0', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Medical Devices'']/items[openEHR-EHR-EVALUATION.device_summary.v0,''Device use statement'']', '{}', '{0}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"requester","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"face-to-face communication","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"216","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"199","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Dr. Marcus Johnson"}'),
+ (eid,cid,63, 'openEHR-EHR-EVALUATION.device_summary.v0', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Medical Devices'']/items[openEHR-EHR-EVALUATION.device_summary.v0,''Device use statement'']', '{}', '{1}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"performer","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"not specified","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"193","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"198","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Lara Markham"}'),
+ (eid,cid,64, 'openEHR-EHR-OBSERVATION.laboratory_test_result.v1', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Diagnostic Results'']/items[openEHR-EHR-OBSERVATION.laboratory_test_result.v1]', '{}', '{}', 0, '{"/_type":"OBSERVATION","/data[at0001]/_type":"HISTORY","/data[at0001]/archetype_node_id":"at0001","/data[at0001]/origin/_type":"DV_DATE_TIME","/data[at0001]/origin/value":"2021-12-03T17:34:06.849379+01:00","/data[at0001]/origin/magnitude":63774146046,"/data[at0001]/name/_type":"DV_TEXT","/data[at0001]/name/value":"Event Series","/archetype_node_id":"openEHR-EHR-OBSERVATION.laboratory_test_result.v1","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"en","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-OBSERVATION.laboratory_test_result.v1","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/name/_type":"DV_TEXT","/name/value":"Laboratory test result","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,65, 'openEHR-EHR-OBSERVATION.laboratory_test_result.v1', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Diagnostic Results'']/items[openEHR-EHR-OBSERVATION.laboratory_test_result.v1]', '{}', '{0}', 1, '{"/data[at0001]/events[at0002]/_type":"POINT_EVENT","/data[at0001]/events[at0002]/data[at0003]/_type":"ITEM_TREE","/data[at0001]/events[at0002]/data[at0003]/items[at0005]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[at0005]/value/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0005]/value/value":"Test name 22","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.specimen.v1]/_type":"CLUSTER","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.specimen.v1]/items[at0029]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.specimen.v1]/items[at0029]/value/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.specimen.v1]/items[at0029]/value/value":"Specimen type 42","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.specimen.v1]/items[at0007,''Method'']/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.specimen.v1]/items[at0007,''Method'']/value/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.specimen.v1]/items[at0007,''Method'']/value/value":"Method 30","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.specimen.v1]/items[at0007,''Method'']/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.specimen.v1]/items[at0007,''Method'']/name/value":"Method","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.specimen.v1]/items[at0087,''Body site'']/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.specimen.v1]/items[at0087,''Body site'']/value/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.specimen.v1]/items[at0087,''Body site'']/value/value":"Body site 14","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.specimen.v1]/items[at0087,''Body site'']/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.specimen.v1]/items[at0087,''Body site'']/name/value":"Body site","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.specimen.v1]/archetype_details/archetype_id/value":"openEHR-EHR-CLUSTER.specimen.v1","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.specimen.v1]/archetype_details/rm_version":"1.0.4","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.specimen.v1]/archetype_details/_type":"ARCHETYPED","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.specimen.v1]/archetype_node_id":"openEHR-EHR-CLUSTER.specimen.v1","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.specimen.v1]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.specimen.v1]/name/value":"Specimen","/data[at0001]/events[at0002]/data[at0003]/items[at0077]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[at0077]/value/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0077]/value/value":"Laboratory","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.laboratory_test_analyte.v1]/_type":"CLUSTER","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.laboratory_test_analyte.v1]/items[at0024]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.laboratory_test_analyte.v1]/items[at0024]/value/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.laboratory_test_analyte.v1]/items[at0024]/value/value":"Analyte name 79","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.laboratory_test_analyte.v1]/archetype_details/archetype_id/value":"openEHR-EHR-CLUSTER.laboratory_test_analyte.v1","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.laboratory_test_analyte.v1]/archetype_details/rm_version":"1.0.4","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.laboratory_test_analyte.v1]/archetype_details/_type":"ARCHETYPED","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.laboratory_test_analyte.v1]/archetype_node_id":"openEHR-EHR-CLUSTER.laboratory_test_analyte.v1","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.laboratory_test_analyte.v1]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.laboratory_test_analyte.v1]/name/value":"Laboratory analyte result","/data[at0001]/events[at0002]/data[at0003]/items[at0057,''Interpretation'']/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[at0057,''Interpretation'']/value/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0057,''Interpretation'']/value/value":"Interpretation 32","/data[at0001]/events[at0002]/data[at0003]/items[at0057,''Interpretation'']/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0057,''Interpretation'']/name/value":"Interpretation","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/_type":"CLUSTER","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0002]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0002]/value/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0002]/value/value":"Resource name 96","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0001]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0001]/value/_type":"DV_MULTIMEDIA","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0001]/value/alternate_text":"alternate text","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0001]/value/uri/_type":"DV_URI","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0001]/value/uri/value":"http://med.tube.com/sample","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0001]/value/media_type/_type":"CODE_PHRASE","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0001]/value/media_type/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0001]/value/media_type/terminology_id/value":"IANA_media-types","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0001]/value/media_type/code_string":"video/MPV","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0001]/value/size":504903212,"/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/archetype_details/archetype_id/value":"openEHR-EHR-CLUSTER.multimedia_source.v0","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/archetype_details/rm_version":"1.0.4","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/archetype_details/_type":"ARCHETYPED","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/archetype_node_id":"openEHR-EHR-CLUSTER.multimedia_source.v0","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/name/value":"Multimedia source","/data[at0001]/events[at0002]/data[at0003]/archetype_node_id":"at0003","/data[at0001]/events[at0002]/data[at0003]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/name/value":"Tree","/data[at0001]/events[at0002]/archetype_node_id":"at0002","/data[at0001]/events[at0002]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/name/value":"Any event","/data[at0001]/events[at0002]/time/_type":"DV_DATE_TIME","/data[at0001]/events[at0002]/time/value":"2021-12-03T17:34:06.849379+01:00","/data[at0001]/events[at0002]/time/magnitude":63774146046}'),
+ (eid,cid,66, 'openEHR-EHR-OBSERVATION.laboratory_test_result.v1', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Diagnostic Results'']/items[openEHR-EHR-OBSERVATION.laboratory_test_result.v1]', '{}', '{0}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"requester","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"face-to-face communication","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"216","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"199","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Dr. Marcus Johnson"}'),
+ (eid,cid,67, 'openEHR-EHR-OBSERVATION.laboratory_test_result.v1', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Diagnostic Results'']/items[openEHR-EHR-OBSERVATION.laboratory_test_result.v1]', '{}', '{1}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"performer","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"not specified","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"193","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"198","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Lara Markham"}'),
+ (eid,cid,68, 'openEHR-EHR-OBSERVATION.imaging_exam_result.v0', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Diagnostic Results'']/items[openEHR-EHR-OBSERVATION.imaging_exam_result.v0]', '{}', '{}', 0, '{"/_type":"OBSERVATION","/data[at0001]/_type":"HISTORY","/data[at0001]/archetype_node_id":"at0001","/data[at0001]/origin/_type":"DV_DATE_TIME","/data[at0001]/origin/value":"2021-12-03T17:34:06.849379+01:00","/data[at0001]/origin/magnitude":63774146046,"/data[at0001]/name/_type":"DV_TEXT","/data[at0001]/name/value":"Event Series","/protocol[at0025]/_type":"ITEM_TREE","/protocol[at0025]/items[at0049]/_type":"ELEMENT","/protocol[at0025]/items[at0049]/value/_type":"DV_TEXT","/protocol[at0025]/items[at0049]/value/value":"Technique 82","/protocol[at0025]/items[at0057]/_type":"ELEMENT","/protocol[at0025]/items[at0057]/value/_type":"DV_TEXT","/protocol[at0025]/items[at0057]/value/value":"Imaging quality 89","/protocol[at0025]/archetype_node_id":"at0025","/protocol[at0025]/name/_type":"DV_TEXT","/protocol[at0025]/name/value":"Tree","/archetype_node_id":"openEHR-EHR-OBSERVATION.imaging_exam_result.v0","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"en","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-OBSERVATION.imaging_exam_result.v0","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/name/_type":"DV_TEXT","/name/value":"Imaging examination result","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,69, 'openEHR-EHR-OBSERVATION.imaging_exam_result.v0', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Diagnostic Results'']/items[openEHR-EHR-OBSERVATION.imaging_exam_result.v0]', '{}', '{0}', 1, '{"/data[at0001]/events[at0002]/_type":"POINT_EVENT","/data[at0001]/events[at0002]/data[at0003]/_type":"ITEM_TREE","/data[at0001]/events[at0002]/data[at0003]/items[at0004]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[at0004]/value/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0004]/value/value":"Test name 15","/data[at0001]/events[at0002]/data[at0003]/items[at0005]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[at0005]/value/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0005]/value/value":"Modality 22","/data[at0001]/events[at0002]/data[at0003]/items[at0055]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[at0055]/value/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0055]/value/value":"Anatomical site 35","/data[at0001]/events[at0002]/data[at0003]/items[at0007]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[at0007]/value/_type":"DV_CODED_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0007]/value/value":"Registered","/data[at0001]/events[at0002]/data[at0003]/items[at0007]/value/defining_code/_type":"CODE_PHRASE","/data[at0001]/events[at0002]/data[at0003]/items[at0007]/value/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/events[at0002]/data[at0003]/items[at0007]/value/defining_code/terminology_id/value":"local","/data[at0001]/events[at0002]/data[at0003]/items[at0007]/value/defining_code/code_string":"at0009","/data[at0001]/events[at0002]/data[at0003]/items[at0008]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[at0008]/value/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0008]/value/value":"Findings 82","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/_type":"CLUSTER","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0024]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0024]/value/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0024]/value/value":"Finding name 89","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0033]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0033]/value/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0033]/value/value":"Anatomical location 48","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0028]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0028]/value/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0028]/value/value":"Description 70","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0029]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0029]/value/_type":"DV_CODED_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0029]/value/value":"Improving","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0029]/value/defining_code/_type":"CODE_PHRASE","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0029]/value/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0029]/value/defining_code/terminology_id/value":"local","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0029]/value/defining_code/code_string":"at0030","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/archetype_details/archetype_id/value":"openEHR-EHR-CLUSTER.imaging_finding.v0","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/archetype_details/rm_version":"1.0.4","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/archetype_details/_type":"ARCHETYPED","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/archetype_node_id":"openEHR-EHR-CLUSTER.imaging_finding.v0","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/name/value":"Imaging finding","/data[at0001]/events[at0002]/data[at0003]/items[at0056]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[at0056]/value/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0056]/value/value":"Comparison with previous 93","/data[at0001]/events[at0002]/data[at0003]/items[at0021]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[at0021]/value/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0021]/value/value":"Conclusion 70","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/_type":"CLUSTER","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0002]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0002]/value/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0002]/value/value":"Resource name 71","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0001]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0001]/value/_type":"DV_MULTIMEDIA","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0001]/value/alternate_text":"alternate text","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0001]/value/uri/_type":"DV_URI","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0001]/value/uri/value":"http://med.tube.com/sample","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0001]/value/media_type/_type":"CODE_PHRASE","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0001]/value/media_type/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0001]/value/media_type/terminology_id/value":"IANA_media-types","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0001]/value/media_type/code_string":"video/MPV","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0001]/value/size":504903212,"/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/archetype_details/archetype_id/value":"openEHR-EHR-CLUSTER.multimedia_source.v0","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/archetype_details/rm_version":"1.0.4","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/archetype_details/_type":"ARCHETYPED","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/archetype_node_id":"openEHR-EHR-CLUSTER.multimedia_source.v0","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/name/value":"Multimedia source","/data[at0001]/events[at0002]/data[at0003]/archetype_node_id":"at0003","/data[at0001]/events[at0002]/data[at0003]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/name/value":"Tree","/data[at0001]/events[at0002]/archetype_node_id":"at0002","/data[at0001]/events[at0002]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/name/value":"Any event","/data[at0001]/events[at0002]/time/_type":"DV_DATE_TIME","/data[at0001]/events[at0002]/time/value":"2021-12-03T17:34:06.849379+01:00","/data[at0001]/events[at0002]/time/magnitude":63774146046}'),
+ (eid,cid,70, 'openEHR-EHR-OBSERVATION.imaging_exam_result.v0', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Diagnostic Results'']/items[openEHR-EHR-OBSERVATION.imaging_exam_result.v0]', '{}', '{0,0}', 2, '{"/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0001]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0001]/value/_type":"DV_CODED_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0001]/value/value":"Absent","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0001]/value/defining_code/_type":"CODE_PHRASE","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0001]/value/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0001]/value/defining_code/terminology_id/value":"local","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0001]/value/defining_code/code_string":"at0036"}'),
+ (eid,cid,71, 'openEHR-EHR-OBSERVATION.imaging_exam_result.v0', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Diagnostic Results'']/items[openEHR-EHR-OBSERVATION.imaging_exam_result.v0]', '{}', '{0,0}', 2, '{"/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0003]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0003]/value/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0003]/value/value":"Comment 89"}'),
+ (eid,cid,72, 'openEHR-EHR-OBSERVATION.imaging_exam_result.v0', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Diagnostic Results'']/items[openEHR-EHR-OBSERVATION.imaging_exam_result.v0]', '{}', '{0,0}', 2, '{"/data[at0001]/events[at0002]/data[at0003]/items[at0058]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[at0058]/value/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0058]/value/value":"Imaging differential diagnosis 20"}'),
+ (eid,cid,73, 'openEHR-EHR-OBSERVATION.imaging_exam_result.v0', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Diagnostic Results'']/items[openEHR-EHR-OBSERVATION.imaging_exam_result.v0]', '{}', '{0,0}', 2, '{"/data[at0001]/events[at0002]/data[at0003]/items[at0020]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[at0020]/value/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0020]/value/value":"Imaging diagnosis 70"}'),
+ (eid,cid,74, 'openEHR-EHR-OBSERVATION.imaging_exam_result.v0', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Diagnostic Results'']/items[openEHR-EHR-OBSERVATION.imaging_exam_result.v0]', '{}', '{0}', 1, '{"/protocol[at0025]/items[at0027]/_type":"CLUSTER","/protocol[at0025]/items[at0027]/items[at0028]/_type":"ELEMENT","/protocol[at0025]/items[at0027]/items[at0028]/value/_type":"DV_IDENTIFIER","/protocol[at0025]/items[at0027]/items[at0028]/value/issuer":"Issuer","/protocol[at0025]/items[at0027]/items[at0028]/value/assigner":"Assigner","/protocol[at0025]/items[at0027]/items[at0028]/value/id":"38a6687c-5136-4e75-9f1c-126e8f0e112b","/protocol[at0025]/items[at0027]/items[at0028]/value/type":"Prescription","/protocol[at0025]/items[at0027]/items[at0031]/_type":"ELEMENT","/protocol[at0025]/items[at0027]/items[at0031]/value/_type":"DV_IDENTIFIER","/protocol[at0025]/items[at0027]/items[at0031]/value/issuer":"Issuer","/protocol[at0025]/items[at0027]/items[at0031]/value/assigner":"Assigner","/protocol[at0025]/items[at0027]/items[at0031]/value/id":"9fc6db02-81de-4ec9-afe4-f365c42019e1","/protocol[at0025]/items[at0027]/items[at0031]/value/type":"Prescription","/protocol[at0025]/items[at0027]/items[at0032]/_type":"ELEMENT","/protocol[at0025]/items[at0027]/items[at0032]/value/_type":"DV_URI","/protocol[at0025]/items[at0027]/items[at0032]/value/value":"http://example.com/path/resource","/protocol[at0025]/items[at0027]/items[at0033]/_type":"ELEMENT","/protocol[at0025]/items[at0027]/items[at0033]/value/_type":"DV_IDENTIFIER","/protocol[at0025]/items[at0027]/items[at0033]/value/issuer":"Issuer","/protocol[at0025]/items[at0027]/items[at0033]/value/assigner":"Assigner","/protocol[at0025]/items[at0027]/items[at0033]/value/id":"a147525c-4763-4070-ba22-26e6b33348f4","/protocol[at0025]/items[at0027]/items[at0033]/value/type":"Prescription","/protocol[at0025]/items[at0027]/archetype_node_id":"at0027","/protocol[at0025]/items[at0027]/name/_type":"DV_TEXT","/protocol[at0025]/items[at0027]/name/value":"Examination request details"}'),
+ (eid,cid,75, 'openEHR-EHR-OBSERVATION.imaging_exam_result.v0', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Diagnostic Results'']/items[openEHR-EHR-OBSERVATION.imaging_exam_result.v0]', '{}', '{0,0}', 2, '{"/protocol[at0025]/items[at0027]/items[at0029]/_type":"ELEMENT","/protocol[at0025]/items[at0027]/items[at0029]/value/_type":"DV_TEXT","/protocol[at0025]/items[at0027]/items[at0029]/value/value":"Examination requested name 96"}'),
+ (eid,cid,76, 'openEHR-EHR-OBSERVATION.imaging_exam_result.v0', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Diagnostic Results'']/items[openEHR-EHR-OBSERVATION.imaging_exam_result.v0]', '{}', '{0,0}', 2, '{"/protocol[at0025]/items[at0027]/items[at0034,''Reported image'']/_type":"CLUSTER","/protocol[at0025]/items[at0027]/items[at0034,''Reported image'']/items[at0035]/_type":"ELEMENT","/protocol[at0025]/items[at0027]/items[at0034,''Reported image'']/items[at0035]/value/_type":"DV_IDENTIFIER","/protocol[at0025]/items[at0027]/items[at0034,''Reported image'']/items[at0035]/value/issuer":"Issuer","/protocol[at0025]/items[at0027]/items[at0034,''Reported image'']/items[at0035]/value/assigner":"Assigner","/protocol[at0025]/items[at0027]/items[at0034,''Reported image'']/items[at0035]/value/id":"5462ef5c-2275-47c2-8fb5-f9f1d7a19613","/protocol[at0025]/items[at0027]/items[at0034,''Reported image'']/items[at0035]/value/type":"Prescription","/protocol[at0025]/items[at0027]/items[at0034,''Reported image'']/items[at0036]/_type":"ELEMENT","/protocol[at0025]/items[at0027]/items[at0034,''Reported image'']/items[at0036]/value/_type":"DV_IDENTIFIER","/protocol[at0025]/items[at0027]/items[at0034,''Reported image'']/items[at0036]/value/issuer":"Issuer","/protocol[at0025]/items[at0027]/items[at0034,''Reported image'']/items[at0036]/value/assigner":"Assigner","/protocol[at0025]/items[at0027]/items[at0034,''Reported image'']/items[at0036]/value/id":"55dd86d7-52ff-4064-8dc7-f8d9b2bc22e7","/protocol[at0025]/items[at0027]/items[at0034,''Reported image'']/items[at0036]/value/type":"Prescription","/protocol[at0025]/items[at0027]/items[at0034,''Reported image'']/items[at0037]/_type":"ELEMENT","/protocol[at0025]/items[at0027]/items[at0034,''Reported image'']/items[at0037]/value/_type":"DV_TEXT","/protocol[at0025]/items[at0027]/items[at0034,''Reported image'']/items[at0037]/value/value":"View 36","/protocol[at0025]/items[at0027]/items[at0034,''Reported image'']/items[at0038]/_type":"ELEMENT","/protocol[at0025]/items[at0027]/items[at0034,''Reported image'']/items[at0038]/value/_type":"DV_TEXT","/protocol[at0025]/items[at0027]/items[at0034,''Reported image'']/items[at0038]/value/value":"Position 58","/protocol[at0025]/items[at0027]/items[at0034,''Reported image'']/items[at0039]/_type":"ELEMENT","/protocol[at0025]/items[at0027]/items[at0034,''Reported image'']/items[at0039]/value/_type":"DV_DATE_TIME","/protocol[at0025]/items[at0027]/items[at0034,''Reported image'']/items[at0039]/value/value":"2021-12-03T16:05:19.514482+01:00","/protocol[at0025]/items[at0027]/items[at0034,''Reported image'']/items[at0039]/value/magnitude":63774140719,"/protocol[at0025]/items[at0027]/items[at0034,''Reported image'']/items[at0040]/_type":"ELEMENT","/protocol[at0025]/items[at0027]/items[at0034,''Reported image'']/items[at0040]/value/_type":"DV_MULTIMEDIA","/protocol[at0025]/items[at0027]/items[at0034,''Reported image'']/items[at0040]/value/alternate_text":"alternate text","/protocol[at0025]/items[at0027]/items[at0034,''Reported image'']/items[at0040]/value/uri/_type":"DV_URI","/protocol[at0025]/items[at0027]/items[at0034,''Reported image'']/items[at0040]/value/uri/value":"http://med.tube.com/sample","/protocol[at0025]/items[at0027]/items[at0034,''Reported image'']/items[at0040]/value/media_type/_type":"CODE_PHRASE","/protocol[at0025]/items[at0027]/items[at0034,''Reported image'']/items[at0040]/value/media_type/terminology_id/_type":"TERMINOLOGY_ID","/protocol[at0025]/items[at0027]/items[at0034,''Reported image'']/items[at0040]/value/media_type/terminology_id/value":"IANA_media-types","/protocol[at0025]/items[at0027]/items[at0034,''Reported image'']/items[at0040]/value/media_type/code_string":"image/png","/protocol[at0025]/items[at0027]/items[at0034,''Reported image'']/items[at0040]/value/size":504903212,"/protocol[at0025]/items[at0027]/items[at0034,''Reported image'']/name/_type":"DV_CODED_TEXT","/protocol[at0025]/items[at0027]/items[at0034,''Reported image'']/name/value":"Reported image","/protocol[at0025]/items[at0027]/items[at0034,''Reported image'']/name/defining_code/_type":"CODE_PHRASE","/protocol[at0025]/items[at0027]/items[at0034,''Reported image'']/name/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/protocol[at0025]/items[at0027]/items[at0034,''Reported image'']/name/defining_code/terminology_id/value":"local","/protocol[at0025]/items[at0027]/items[at0034,''Reported image'']/name/defining_code/code_string":"at0053","/protocol[at0025]/items[at0027]/items[at0034,''Reported image'']/archetype_node_id":"at0034"}'),
+ (eid,cid,77, 'openEHR-EHR-OBSERVATION.imaging_exam_result.v0', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Diagnostic Results'']/items[openEHR-EHR-OBSERVATION.imaging_exam_result.v0]', '{}', '{0,0}', 2, '{"/protocol[at0025]/items[at0027]/items[at0034,''Comparison image'']/_type":"CLUSTER","/protocol[at0025]/items[at0027]/items[at0034,''Comparison image'']/items[at0035]/_type":"ELEMENT","/protocol[at0025]/items[at0027]/items[at0034,''Comparison image'']/items[at0035]/value/_type":"DV_IDENTIFIER","/protocol[at0025]/items[at0027]/items[at0034,''Comparison image'']/items[at0035]/value/issuer":"Issuer","/protocol[at0025]/items[at0027]/items[at0034,''Comparison image'']/items[at0035]/value/assigner":"Assigner","/protocol[at0025]/items[at0027]/items[at0034,''Comparison image'']/items[at0035]/value/id":"a6c20273-7b53-4c04-9b2c-2d4c218893b2","/protocol[at0025]/items[at0027]/items[at0034,''Comparison image'']/items[at0035]/value/type":"Prescription","/protocol[at0025]/items[at0027]/items[at0034,''Comparison image'']/items[at0036]/_type":"ELEMENT","/protocol[at0025]/items[at0027]/items[at0034,''Comparison image'']/items[at0036]/value/_type":"DV_IDENTIFIER","/protocol[at0025]/items[at0027]/items[at0034,''Comparison image'']/items[at0036]/value/issuer":"Issuer","/protocol[at0025]/items[at0027]/items[at0034,''Comparison image'']/items[at0036]/value/assigner":"Assigner","/protocol[at0025]/items[at0027]/items[at0034,''Comparison image'']/items[at0036]/value/id":"1ba8eff7-8f3f-4625-9432-05aa01726073","/protocol[at0025]/items[at0027]/items[at0034,''Comparison image'']/items[at0036]/value/type":"Prescription","/protocol[at0025]/items[at0027]/items[at0034,''Comparison image'']/items[at0037]/_type":"ELEMENT","/protocol[at0025]/items[at0027]/items[at0034,''Comparison image'']/items[at0037]/value/_type":"DV_TEXT","/protocol[at0025]/items[at0027]/items[at0034,''Comparison image'']/items[at0037]/value/value":"View 27","/protocol[at0025]/items[at0027]/items[at0034,''Comparison image'']/items[at0038]/_type":"ELEMENT","/protocol[at0025]/items[at0027]/items[at0034,''Comparison image'']/items[at0038]/value/_type":"DV_TEXT","/protocol[at0025]/items[at0027]/items[at0034,''Comparison image'']/items[at0038]/value/value":"Position 2","/protocol[at0025]/items[at0027]/items[at0034,''Comparison image'']/items[at0039]/_type":"ELEMENT","/protocol[at0025]/items[at0027]/items[at0034,''Comparison image'']/items[at0039]/value/_type":"DV_DATE_TIME","/protocol[at0025]/items[at0027]/items[at0034,''Comparison image'']/items[at0039]/value/value":"2021-12-03T16:05:19.514522+01:00","/protocol[at0025]/items[at0027]/items[at0034,''Comparison image'']/items[at0039]/value/magnitude":63774140719,"/protocol[at0025]/items[at0027]/items[at0034,''Comparison image'']/items[at0040]/_type":"ELEMENT","/protocol[at0025]/items[at0027]/items[at0034,''Comparison image'']/items[at0040]/value/_type":"DV_MULTIMEDIA","/protocol[at0025]/items[at0027]/items[at0034,''Comparison image'']/items[at0040]/value/alternate_text":"alternate text","/protocol[at0025]/items[at0027]/items[at0034,''Comparison image'']/items[at0040]/value/uri/_type":"DV_URI","/protocol[at0025]/items[at0027]/items[at0034,''Comparison image'']/items[at0040]/value/uri/value":"http://med.tube.com/sample","/protocol[at0025]/items[at0027]/items[at0034,''Comparison image'']/items[at0040]/value/media_type/_type":"CODE_PHRASE","/protocol[at0025]/items[at0027]/items[at0034,''Comparison image'']/items[at0040]/value/media_type/terminology_id/_type":"TERMINOLOGY_ID","/protocol[at0025]/items[at0027]/items[at0034,''Comparison image'']/items[at0040]/value/media_type/terminology_id/value":"IANA_media-types","/protocol[at0025]/items[at0027]/items[at0034,''Comparison image'']/items[at0040]/value/media_type/code_string":"image/png","/protocol[at0025]/items[at0027]/items[at0034,''Comparison image'']/items[at0040]/value/size":504903212,"/protocol[at0025]/items[at0027]/items[at0034,''Comparison image'']/name/_type":"DV_CODED_TEXT","/protocol[at0025]/items[at0027]/items[at0034,''Comparison image'']/name/value":"Comparison image","/protocol[at0025]/items[at0027]/items[at0034,''Comparison image'']/name/defining_code/_type":"CODE_PHRASE","/protocol[at0025]/items[at0027]/items[at0034,''Comparison image'']/name/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/protocol[at0025]/items[at0027]/items[at0034,''Comparison image'']/name/defining_code/terminology_id/value":"local","/protocol[at0025]/items[at0027]/items[at0034,''Comparison image'']/name/defining_code/code_string":"at0054","/protocol[at0025]/items[at0027]/items[at0034,''Comparison image'']/archetype_node_id":"at0034"}'),
+ (eid,cid,78, 'openEHR-EHR-OBSERVATION.imaging_exam_result.v0', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Diagnostic Results'']/items[openEHR-EHR-OBSERVATION.imaging_exam_result.v0]', '{}', '{0}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"requester","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"face-to-face communication","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"216","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"199","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Dr. Marcus Johnson"}'),
+ (eid,cid,79, 'openEHR-EHR-OBSERVATION.imaging_exam_result.v0', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Diagnostic Results'']/items[openEHR-EHR-OBSERVATION.imaging_exam_result.v0]', '{}', '{1}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"performer","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"not specified","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"193","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"198","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Lara Markham"}'),
+ (eid,cid,80, 'openEHR-EHR-OBSERVATION.body_weight.v2', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Vital Signs'']/items[openEHR-EHR-OBSERVATION.body_weight.v2]', '{}', '{}', 0, '{"/_type":"OBSERVATION","/data[at0002]/_type":"HISTORY","/data[at0002]/archetype_node_id":"at0002","/data[at0002]/origin/_type":"DV_DATE_TIME","/data[at0002]/origin/value":"2021-12-03T17:34:06.849379+01:00","/data[at0002]/origin/magnitude":63774146046,"/data[at0002]/name/_type":"DV_TEXT","/data[at0002]/name/value":"history","/archetype_node_id":"openEHR-EHR-OBSERVATION.body_weight.v2","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"en","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-OBSERVATION.body_weight.v2","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/name/_type":"DV_TEXT","/name/value":"Body weight","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,81, 'openEHR-EHR-OBSERVATION.body_weight.v2', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Vital Signs'']/items[openEHR-EHR-OBSERVATION.body_weight.v2]', '{}', '{0}', 1, '{"/data[at0002]/events[at0003]/_type":"POINT_EVENT","/data[at0002]/events[at0003]/data[at0001]/_type":"ITEM_TREE","/data[at0002]/events[at0003]/data[at0001]/items[at0004]/_type":"ELEMENT","/data[at0002]/events[at0003]/data[at0001]/items[at0004]/value/_type":"DV_QUANTITY","/data[at0002]/events[at0003]/data[at0001]/items[at0004]/value/units":"kg","/data[at0002]/events[at0003]/data[at0001]/items[at0004]/value/magnitude":981.13,"/data[at0002]/events[at0003]/data[at0001]/archetype_node_id":"at0001","/data[at0002]/events[at0003]/data[at0001]/name/_type":"DV_TEXT","/data[at0002]/events[at0003]/data[at0001]/name/value":"Simple","/data[at0002]/events[at0003]/archetype_node_id":"at0003","/data[at0002]/events[at0003]/name/_type":"DV_TEXT","/data[at0002]/events[at0003]/name/value":"Any event","/data[at0002]/events[at0003]/time/_type":"DV_DATE_TIME","/data[at0002]/events[at0003]/time/value":"2021-12-03T17:34:06.849379+01:00","/data[at0002]/events[at0003]/time/magnitude":63774146046}'),
+ (eid,cid,82, 'openEHR-EHR-OBSERVATION.body_weight.v2', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Vital Signs'']/items[openEHR-EHR-OBSERVATION.body_weight.v2]', '{}', '{0}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"requester","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"face-to-face communication","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"216","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"199","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Dr. Marcus Johnson"}'),
+ (eid,cid,83, 'openEHR-EHR-OBSERVATION.body_weight.v2', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Vital Signs'']/items[openEHR-EHR-OBSERVATION.body_weight.v2]', '{}', '{1}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"performer","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"not specified","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"193","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"198","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Lara Markham"}'),
+ (eid,cid,84, 'openEHR-EHR-OBSERVATION.height.v2', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Vital Signs'']/items[openEHR-EHR-OBSERVATION.height.v2]', '{}', '{}', 0, '{"/_type":"OBSERVATION","/data[at0001]/_type":"HISTORY","/data[at0001]/archetype_node_id":"at0001","/data[at0001]/origin/_type":"DV_DATE_TIME","/data[at0001]/origin/value":"2021-12-03T17:34:06.849379+01:00","/data[at0001]/origin/magnitude":63774146046,"/data[at0001]/name/_type":"DV_TEXT","/data[at0001]/name/value":"history","/archetype_node_id":"openEHR-EHR-OBSERVATION.height.v2","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"en","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-OBSERVATION.height.v2","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/name/_type":"DV_TEXT","/name/value":"Height/Length","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,85, 'openEHR-EHR-OBSERVATION.height.v2', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Vital Signs'']/items[openEHR-EHR-OBSERVATION.height.v2]', '{}', '{0}', 1, '{"/data[at0001]/events[at0002]/_type":"POINT_EVENT","/data[at0001]/events[at0002]/data[at0003]/_type":"ITEM_TREE","/data[at0001]/events[at0002]/data[at0003]/items[at0004]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[at0004]/value/_type":"DV_QUANTITY","/data[at0001]/events[at0002]/data[at0003]/items[at0004]/value/units":"cm","/data[at0001]/events[at0002]/data[at0003]/items[at0004]/value/magnitude":317.11,"/data[at0001]/events[at0002]/data[at0003]/archetype_node_id":"at0003","/data[at0001]/events[at0002]/data[at0003]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/name/value":"Simple","/data[at0001]/events[at0002]/archetype_node_id":"at0002","/data[at0001]/events[at0002]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/name/value":"Any event","/data[at0001]/events[at0002]/time/_type":"DV_DATE_TIME","/data[at0001]/events[at0002]/time/value":"2021-12-03T17:34:06.849379+01:00","/data[at0001]/events[at0002]/time/magnitude":63774146046}'),
+ (eid,cid,86, 'openEHR-EHR-OBSERVATION.height.v2', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Vital Signs'']/items[openEHR-EHR-OBSERVATION.height.v2]', '{}', '{0}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"requester","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"face-to-face communication","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"216","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"199","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Dr. Marcus Johnson"}'),
+ (eid,cid,87, 'openEHR-EHR-OBSERVATION.height.v2', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Vital Signs'']/items[openEHR-EHR-OBSERVATION.height.v2]', '{}', '{1}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"performer","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"not specified","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"193","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"198","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Lara Markham"}'),
+ (eid,cid,88, 'openEHR-EHR-OBSERVATION.respiration.v2', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Vital Signs'']/items[openEHR-EHR-OBSERVATION.respiration.v2]', '{}', '{}', 0, '{"/_type":"OBSERVATION","/data[at0001]/_type":"HISTORY","/data[at0001]/archetype_node_id":"at0001","/data[at0001]/origin/_type":"DV_DATE_TIME","/data[at0001]/origin/value":"2021-12-03T17:34:06.849379+01:00","/data[at0001]/origin/magnitude":63774146046,"/data[at0001]/name/_type":"DV_TEXT","/data[at0001]/name/value":"history","/archetype_node_id":"openEHR-EHR-OBSERVATION.respiration.v2","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"en","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-OBSERVATION.respiration.v2","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/name/_type":"DV_TEXT","/name/value":"Respiration","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,89, 'openEHR-EHR-OBSERVATION.respiration.v2', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Vital Signs'']/items[openEHR-EHR-OBSERVATION.respiration.v2]', '{}', '{0}', 1, '{"/data[at0001]/events[at0002]/_type":"POINT_EVENT","/data[at0001]/events[at0002]/data[at0003]/_type":"ITEM_TREE","/data[at0001]/events[at0002]/data[at0003]/items[at0004]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[at0004]/value/_type":"DV_QUANTITY","/data[at0001]/events[at0002]/data[at0003]/items[at0004]/value/precision":0,"/data[at0001]/events[at0002]/data[at0003]/items[at0004]/value/units":"/min","/data[at0001]/events[at0002]/data[at0003]/items[at0004]/value/magnitude":147.0,"/data[at0001]/events[at0002]/data[at0003]/archetype_node_id":"at0003","/data[at0001]/events[at0002]/data[at0003]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/name/value":"List","/data[at0001]/events[at0002]/archetype_node_id":"at0002","/data[at0001]/events[at0002]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/name/value":"Any event","/data[at0001]/events[at0002]/time/_type":"DV_DATE_TIME","/data[at0001]/events[at0002]/time/value":"2021-12-03T17:34:06.849379+01:00","/data[at0001]/events[at0002]/time/magnitude":63774146046}'),
+ (eid,cid,90, 'openEHR-EHR-OBSERVATION.respiration.v2', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Vital Signs'']/items[openEHR-EHR-OBSERVATION.respiration.v2]', '{}', '{0}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"requester","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"face-to-face communication","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"216","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"199","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Dr. Marcus Johnson"}'),
+ (eid,cid,91, 'openEHR-EHR-OBSERVATION.respiration.v2', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Vital Signs'']/items[openEHR-EHR-OBSERVATION.respiration.v2]', '{}', '{1}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"performer","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"not specified","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"193","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"198","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Lara Markham"}'),
+ (eid,cid,92, 'openEHR-EHR-OBSERVATION.pulse.v2', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Vital Signs'']/items[openEHR-EHR-OBSERVATION.pulse.v2]', '{}', '{}', 0, '{"/_type":"OBSERVATION","/data[at0002]/_type":"HISTORY","/data[at0002]/archetype_node_id":"at0002","/data[at0002]/origin/_type":"DV_DATE_TIME","/data[at0002]/origin/value":"2021-12-03T17:34:06.849379+01:00","/data[at0002]/origin/magnitude":63774146046,"/data[at0002]/name/_type":"DV_TEXT","/data[at0002]/name/value":"history","/archetype_node_id":"openEHR-EHR-OBSERVATION.pulse.v2","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"en","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-OBSERVATION.pulse.v2","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/name/_type":"DV_TEXT","/name/value":"Pulse/Heart beat","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,93, 'openEHR-EHR-OBSERVATION.pulse.v2', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Vital Signs'']/items[openEHR-EHR-OBSERVATION.pulse.v2]', '{}', '{0}', 1, '{"/data[at0002]/events[at0003]/_type":"POINT_EVENT","/data[at0002]/events[at0003]/data[at0001]/_type":"ITEM_TREE","/data[at0002]/events[at0003]/data[at0001]/items[at0004]/_type":"ELEMENT","/data[at0002]/events[at0003]/data[at0001]/items[at0004]/value/_type":"DV_QUANTITY","/data[at0002]/events[at0003]/data[at0001]/items[at0004]/value/precision":0,"/data[at0002]/events[at0003]/data[at0001]/items[at0004]/value/units":"/min","/data[at0002]/events[at0003]/data[at0001]/items[at0004]/value/magnitude":940.0,"/data[at0002]/events[at0003]/data[at0001]/archetype_node_id":"at0001","/data[at0002]/events[at0003]/data[at0001]/name/_type":"DV_TEXT","/data[at0002]/events[at0003]/data[at0001]/name/value":"structure","/data[at0002]/events[at0003]/archetype_node_id":"at0003","/data[at0002]/events[at0003]/name/_type":"DV_TEXT","/data[at0002]/events[at0003]/name/value":"Any event","/data[at0002]/events[at0003]/time/_type":"DV_DATE_TIME","/data[at0002]/events[at0003]/time/value":"2021-12-03T17:34:06.849379+01:00","/data[at0002]/events[at0003]/time/magnitude":63774146046}'),
+ (eid,cid,94, 'openEHR-EHR-OBSERVATION.pulse.v2', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Vital Signs'']/items[openEHR-EHR-OBSERVATION.pulse.v2]', '{}', '{0}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"requester","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"face-to-face communication","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"216","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"199","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Dr. Marcus Johnson"}'),
+ (eid,cid,95, 'openEHR-EHR-OBSERVATION.pulse.v2', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Vital Signs'']/items[openEHR-EHR-OBSERVATION.pulse.v2]', '{}', '{1}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"performer","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"not specified","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"193","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"198","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Lara Markham"}'),
+ (eid,cid,96, 'openEHR-EHR-OBSERVATION.body_temperature.v2', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Vital Signs'']/items[openEHR-EHR-OBSERVATION.body_temperature.v2]', '{}', '{}', 0, '{"/_type":"OBSERVATION","/data[at0002]/_type":"HISTORY","/data[at0002]/archetype_node_id":"at0002","/data[at0002]/origin/_type":"DV_DATE_TIME","/data[at0002]/origin/value":"2021-12-03T17:34:06.849379+01:00","/data[at0002]/origin/magnitude":63774146046,"/data[at0002]/name/_type":"DV_TEXT","/data[at0002]/name/value":"History","/archetype_node_id":"openEHR-EHR-OBSERVATION.body_temperature.v2","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"en","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-OBSERVATION.body_temperature.v2","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/name/_type":"DV_TEXT","/name/value":"Body temperature","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,97, 'openEHR-EHR-OBSERVATION.body_temperature.v2', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Vital Signs'']/items[openEHR-EHR-OBSERVATION.body_temperature.v2]', '{}', '{0}', 1, '{"/data[at0002]/events[at0003]/_type":"POINT_EVENT","/data[at0002]/events[at0003]/data[at0001]/_type":"ITEM_TREE","/data[at0002]/events[at0003]/data[at0001]/items[at0004]/_type":"ELEMENT","/data[at0002]/events[at0003]/data[at0001]/items[at0004]/value/_type":"DV_QUANTITY","/data[at0002]/events[at0003]/data[at0001]/items[at0004]/value/precision":1,"/data[at0002]/events[at0003]/data[at0001]/items[at0004]/value/units":"Cel","/data[at0002]/events[at0003]/data[at0001]/items[at0004]/value/magnitude":79.9,"/data[at0002]/events[at0003]/data[at0001]/archetype_node_id":"at0001","/data[at0002]/events[at0003]/data[at0001]/name/_type":"DV_TEXT","/data[at0002]/events[at0003]/data[at0001]/name/value":"Tree","/data[at0002]/events[at0003]/archetype_node_id":"at0003","/data[at0002]/events[at0003]/name/_type":"DV_TEXT","/data[at0002]/events[at0003]/name/value":"Any event","/data[at0002]/events[at0003]/time/_type":"DV_DATE_TIME","/data[at0002]/events[at0003]/time/value":"2021-12-03T17:34:06.849379+01:00","/data[at0002]/events[at0003]/time/magnitude":63774146046}'),
+ (eid,cid,98, 'openEHR-EHR-OBSERVATION.body_temperature.v2', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Vital Signs'']/items[openEHR-EHR-OBSERVATION.body_temperature.v2]', '{}', '{0}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"requester","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"face-to-face communication","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"216","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"199","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Dr. Marcus Johnson"}'),
+ (eid,cid,99, 'openEHR-EHR-OBSERVATION.body_temperature.v2', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Vital Signs'']/items[openEHR-EHR-OBSERVATION.body_temperature.v2]', '{}', '{1}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"performer","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"not specified","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"193","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"198","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Lara Markham"}'),
+ (eid,cid,100, 'openEHR-EHR-OBSERVATION.head_circumference.v1', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Vital Signs'']/items[openEHR-EHR-OBSERVATION.head_circumference.v1]', '{}', '{}', 0, '{"/_type":"OBSERVATION","/data[at0001]/_type":"HISTORY","/data[at0001]/archetype_node_id":"at0001","/data[at0001]/origin/_type":"DV_DATE_TIME","/data[at0001]/origin/value":"2021-12-03T17:34:06.849379+01:00","/data[at0001]/origin/magnitude":63774146046,"/data[at0001]/name/_type":"DV_TEXT","/data[at0001]/name/value":"Event Series","/archetype_node_id":"openEHR-EHR-OBSERVATION.head_circumference.v1","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"en","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-OBSERVATION.head_circumference.v1","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/name/_type":"DV_TEXT","/name/value":"Head circumference","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,101, 'openEHR-EHR-OBSERVATION.head_circumference.v1', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Vital Signs'']/items[openEHR-EHR-OBSERVATION.head_circumference.v1]', '{}', '{0}', 1, '{"/data[at0001]/events[at0010]/_type":"POINT_EVENT","/data[at0001]/events[at0010]/data[at0003]/_type":"ITEM_TREE","/data[at0001]/events[at0010]/data[at0003]/items[at0004]/_type":"ELEMENT","/data[at0001]/events[at0010]/data[at0003]/items[at0004]/value/_type":"DV_QUANTITY","/data[at0001]/events[at0010]/data[at0003]/items[at0004]/value/units":"cm","/data[at0001]/events[at0010]/data[at0003]/items[at0004]/value/magnitude":57.81,"/data[at0001]/events[at0010]/data[at0003]/archetype_node_id":"at0003","/data[at0001]/events[at0010]/data[at0003]/name/_type":"DV_TEXT","/data[at0001]/events[at0010]/data[at0003]/name/value":"Tree","/data[at0001]/events[at0010]/archetype_node_id":"at0010","/data[at0001]/events[at0010]/name/_type":"DV_TEXT","/data[at0001]/events[at0010]/name/value":"Any event","/data[at0001]/events[at0010]/time/_type":"DV_DATE_TIME","/data[at0001]/events[at0010]/time/value":"2021-12-03T17:34:06.849379+01:00","/data[at0001]/events[at0010]/time/magnitude":63774146046}'),
+ (eid,cid,102, 'openEHR-EHR-OBSERVATION.head_circumference.v1', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Vital Signs'']/items[openEHR-EHR-OBSERVATION.head_circumference.v1]', '{}', '{0}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"requester","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"face-to-face communication","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"216","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"199","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Dr. Marcus Johnson"}'),
+ (eid,cid,103, 'openEHR-EHR-OBSERVATION.head_circumference.v1', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Vital Signs'']/items[openEHR-EHR-OBSERVATION.head_circumference.v1]', '{}', '{1}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"performer","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"not specified","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"193","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"198","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Lara Markham"}'),
+ (eid,cid,104, 'openEHR-EHR-OBSERVATION.pulse_oximetry.v1', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Vital Signs'']/items[openEHR-EHR-OBSERVATION.pulse_oximetry.v1]', '{}', '{}', 0, '{"/_type":"OBSERVATION","/data[at0001]/_type":"HISTORY","/data[at0001]/archetype_node_id":"at0001","/data[at0001]/origin/_type":"DV_DATE_TIME","/data[at0001]/origin/value":"2021-12-03T17:34:06.849379+01:00","/data[at0001]/origin/magnitude":63774146046,"/data[at0001]/name/_type":"DV_TEXT","/data[at0001]/name/value":"Event Series","/archetype_node_id":"openEHR-EHR-OBSERVATION.pulse_oximetry.v1","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"en","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-OBSERVATION.pulse_oximetry.v1","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/name/_type":"DV_TEXT","/name/value":"Pulse oximetry","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,105, 'openEHR-EHR-OBSERVATION.pulse_oximetry.v1', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Vital Signs'']/items[openEHR-EHR-OBSERVATION.pulse_oximetry.v1]', '{}', '{0}', 1, '{"/data[at0001]/events[at0002]/_type":"POINT_EVENT","/data[at0001]/events[at0002]/data[at0003]/_type":"ITEM_TREE","/data[at0001]/events[at0002]/data[at0003]/items[at0006]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[at0006]/value/_type":"DV_PROPORTION","/data[at0001]/events[at0002]/data[at0003]/items[at0006]/value/numerator":89.21,"/data[at0001]/events[at0002]/data[at0003]/items[at0006]/value/denominator":100.0,"/data[at0001]/events[at0002]/data[at0003]/items[at0006]/value/type":2,"/data[at0001]/events[at0002]/data[at0003]/archetype_node_id":"at0003","/data[at0001]/events[at0002]/data[at0003]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/name/value":"Tree","/data[at0001]/events[at0002]/archetype_node_id":"at0002","/data[at0001]/events[at0002]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/name/value":"Any event","/data[at0001]/events[at0002]/time/_type":"DV_DATE_TIME","/data[at0001]/events[at0002]/time/value":"2021-12-03T17:34:06.849379+01:00","/data[at0001]/events[at0002]/time/magnitude":63774146046}'),
+ (eid,cid,106, 'openEHR-EHR-OBSERVATION.pulse_oximetry.v1', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Vital Signs'']/items[openEHR-EHR-OBSERVATION.pulse_oximetry.v1]', '{}', '{0}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"requester","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"face-to-face communication","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"216","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"199","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Dr. Marcus Johnson"}'),
+ (eid,cid,107, 'openEHR-EHR-OBSERVATION.pulse_oximetry.v1', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Vital Signs'']/items[openEHR-EHR-OBSERVATION.pulse_oximetry.v1]', '{}', '{1}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"performer","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"not specified","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"193","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"198","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Lara Markham"}'),
+ (eid,cid,108, 'openEHR-EHR-OBSERVATION.body_mass_index.v2', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Vital Signs'']/items[openEHR-EHR-OBSERVATION.body_mass_index.v2]', '{}', '{}', 0, '{"/_type":"OBSERVATION","/data[at0001]/_type":"HISTORY","/data[at0001]/archetype_node_id":"at0001","/data[at0001]/origin/_type":"DV_DATE_TIME","/data[at0001]/origin/value":"2021-12-03T17:34:06.849379+01:00","/data[at0001]/origin/magnitude":63774146046,"/data[at0001]/name/_type":"DV_TEXT","/data[at0001]/name/value":"history","/archetype_node_id":"openEHR-EHR-OBSERVATION.body_mass_index.v2","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"en","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-OBSERVATION.body_mass_index.v2","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/name/_type":"DV_TEXT","/name/value":"Body mass index","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,109, 'openEHR-EHR-OBSERVATION.body_mass_index.v2', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Vital Signs'']/items[openEHR-EHR-OBSERVATION.body_mass_index.v2]', '{}', '{0}', 1, '{"/data[at0001]/events[at0002]/_type":"POINT_EVENT","/data[at0001]/events[at0002]/data[at0003]/_type":"ITEM_TREE","/data[at0001]/events[at0002]/data[at0003]/items[at0004]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[at0004]/value/_type":"DV_QUANTITY","/data[at0001]/events[at0002]/data[at0003]/items[at0004]/value/precision":1,"/data[at0001]/events[at0002]/data[at0003]/items[at0004]/value/units":"kg/m2","/data[at0001]/events[at0002]/data[at0003]/items[at0004]/value/magnitude":864.9,"/data[at0001]/events[at0002]/data[at0003]/archetype_node_id":"at0003","/data[at0001]/events[at0002]/data[at0003]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/name/value":"Single","/data[at0001]/events[at0002]/archetype_node_id":"at0002","/data[at0001]/events[at0002]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/name/value":"Any event","/data[at0001]/events[at0002]/time/_type":"DV_DATE_TIME","/data[at0001]/events[at0002]/time/value":"2021-12-03T17:34:06.849379+01:00","/data[at0001]/events[at0002]/time/magnitude":63774146046}'),
+ (eid,cid,110, 'openEHR-EHR-OBSERVATION.body_mass_index.v2', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Vital Signs'']/items[openEHR-EHR-OBSERVATION.body_mass_index.v2]', '{}', '{0}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"requester","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"face-to-face communication","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"216","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"199","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Dr. Marcus Johnson"}'),
+ (eid,cid,111, 'openEHR-EHR-OBSERVATION.body_mass_index.v2', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Vital Signs'']/items[openEHR-EHR-OBSERVATION.body_mass_index.v2]', '{}', '{1}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"performer","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"not specified","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"193","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"198","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Lara Markham"}'),
+ (eid,cid,112, 'openEHR-EHR-OBSERVATION.blood_pressure.v2', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Vital Signs'']/items[openEHR-EHR-OBSERVATION.blood_pressure.v2]', '{}', '{}', 0, '{"/_type":"OBSERVATION","/data[at0001]/_type":"HISTORY","/data[at0001]/archetype_node_id":"at0001","/data[at0001]/origin/_type":"DV_DATE_TIME","/data[at0001]/origin/value":"2021-12-03T17:34:06.849379+01:00","/data[at0001]/origin/magnitude":63774146046,"/data[at0001]/name/_type":"DV_TEXT","/data[at0001]/name/value":"History","/archetype_node_id":"openEHR-EHR-OBSERVATION.blood_pressure.v2","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"en","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-OBSERVATION.blood_pressure.v2","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/name/_type":"DV_TEXT","/name/value":"Blood pressure","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,113, 'openEHR-EHR-OBSERVATION.blood_pressure.v2', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Vital Signs'']/items[openEHR-EHR-OBSERVATION.blood_pressure.v2]', '{}', '{0}', 1, '{"/data[at0001]/events[at0006]/_type":"POINT_EVENT","/data[at0001]/events[at0006]/data[at0003]/_type":"ITEM_TREE","/data[at0001]/events[at0006]/data[at0003]/items[at0004]/_type":"ELEMENT","/data[at0001]/events[at0006]/data[at0003]/items[at0004]/value/_type":"DV_QUANTITY","/data[at0001]/events[at0006]/data[at0003]/items[at0004]/value/precision":0,"/data[at0001]/events[at0006]/data[at0003]/items[at0004]/value/units":"mm[Hg]","/data[at0001]/events[at0006]/data[at0003]/items[at0004]/value/magnitude":266.0,"/data[at0001]/events[at0006]/data[at0003]/items[at0005]/_type":"ELEMENT","/data[at0001]/events[at0006]/data[at0003]/items[at0005]/value/_type":"DV_QUANTITY","/data[at0001]/events[at0006]/data[at0003]/items[at0005]/value/precision":0,"/data[at0001]/events[at0006]/data[at0003]/items[at0005]/value/units":"mm[Hg]","/data[at0001]/events[at0006]/data[at0003]/items[at0005]/value/magnitude":756.0,"/data[at0001]/events[at0006]/data[at0003]/archetype_node_id":"at0003","/data[at0001]/events[at0006]/data[at0003]/name/_type":"DV_TEXT","/data[at0001]/events[at0006]/data[at0003]/name/value":"blood pressure","/data[at0001]/events[at0006]/archetype_node_id":"at0006","/data[at0001]/events[at0006]/name/_type":"DV_TEXT","/data[at0001]/events[at0006]/name/value":"Any event","/data[at0001]/events[at0006]/time/_type":"DV_DATE_TIME","/data[at0001]/events[at0006]/time/value":"2021-12-03T17:34:06.849379+01:00","/data[at0001]/events[at0006]/time/magnitude":63774146046}'),
+ (eid,cid,114, 'openEHR-EHR-OBSERVATION.blood_pressure.v2', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Vital Signs'']/items[openEHR-EHR-OBSERVATION.blood_pressure.v2]', '{}', '{0}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"requester","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"face-to-face communication","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"216","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"199","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Dr. Marcus Johnson"}'),
+ (eid,cid,115, 'openEHR-EHR-OBSERVATION.blood_pressure.v2', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Vital Signs'']/items[openEHR-EHR-OBSERVATION.blood_pressure.v2]', '{}', '{1}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"performer","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"not specified","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"193","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"198","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Lara Markham"}'),
+ (eid,cid,116, 'openEHR-EHR-EVALUATION.problem_diagnosis.v1', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Past History of Illnesses'']/items[openEHR-EHR-EVALUATION.problem_diagnosis.v1]', '{}', '{}', 0, '{"/_type":"EVALUATION","/data[at0001]/_type":"ITEM_TREE","/data[at0001]/items[at0002]/_type":"ELEMENT","/data[at0001]/items[at0002]/value/_type":"DV_TEXT","/data[at0001]/items[at0002]/value/value":"Problem/Diagnosis name 37","/data[at0001]/items[at0077]/_type":"ELEMENT","/data[at0001]/items[at0077]/value/_type":"DV_DATE_TIME","/data[at0001]/items[at0077]/value/value":"2021-12-03T16:05:19.514663+01:00","/data[at0001]/items[at0077]/value/magnitude":63774140719,"/data[at0001]/items[at0005]/_type":"ELEMENT","/data[at0001]/items[at0005]/value/_type":"DV_CODED_TEXT","/data[at0001]/items[at0005]/value/value":"Mild","/data[at0001]/items[at0005]/value/defining_code/_type":"CODE_PHRASE","/data[at0001]/items[at0005]/value/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/items[at0005]/value/defining_code/terminology_id/value":"local","/data[at0001]/items[at0005]/value/defining_code/code_string":"at0047","/data[at0001]/items[at0030,''Date of abatement'']/_type":"ELEMENT","/data[at0001]/items[at0030,''Date of abatement'']/value/_type":"DV_DATE_TIME","/data[at0001]/items[at0030,''Date of abatement'']/value/value":"2021-12-03T16:05:19.51469+01:00","/data[at0001]/items[at0030,''Date of abatement'']/value/magnitude":63774140719,"/data[at0001]/items[at0030,''Date of abatement'']/name/_type":"DV_TEXT","/data[at0001]/items[at0030,''Date of abatement'']/name/value":"Date of abatement","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/_type":"CLUSTER","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0003]/_type":"ELEMENT","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0003]/value/_type":"DV_CODED_TEXT","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0003]/value/value":"Active","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0003]/value/defining_code/_type":"CODE_PHRASE","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0003]/value/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0003]/value/defining_code/terminology_id/value":"local","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0003]/value/defining_code/code_string":"at0026","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0083]/_type":"ELEMENT","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0083]/value/_type":"DV_CODED_TEXT","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0083]/value/value":"Resolved","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0083]/value/defining_code/_type":"CODE_PHRASE","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0083]/value/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0083]/value/defining_code/terminology_id/value":"local","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0083]/value/defining_code/code_string":"at0084","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0089]/_type":"ELEMENT","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0089]/value/_type":"DV_CODED_TEXT","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0089]/value/value":"In remission","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0089]/value/defining_code/_type":"CODE_PHRASE","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0089]/value/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0089]/value/defining_code/terminology_id/value":"local","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0089]/value/defining_code/code_string":"at0090","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0071]/_type":"ELEMENT","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0071]/value/_type":"DV_CODED_TEXT","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0071]/value/value":"Recurrence","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0071]/value/defining_code/_type":"CODE_PHRASE","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0071]/value/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0071]/value/defining_code/terminology_id/value":"local","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0071]/value/defining_code/code_string":"at0096","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/archetype_details/archetype_id/value":"openEHR-EHR-CLUSTER.problem_qualifier.v1","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/archetype_details/rm_version":"1.0.4","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/archetype_details/_type":"ARCHETYPED","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/archetype_node_id":"openEHR-EHR-CLUSTER.problem_qualifier.v1","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/name/_type":"DV_TEXT","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/name/value":"Problem/Diagnosis qualifier","/data[at0001]/items[at0073]/_type":"ELEMENT","/data[at0001]/items[at0073]/value/_type":"DV_CODED_TEXT","/data[at0001]/items[at0073]/value/value":"Suspected","/data[at0001]/items[at0073]/value/defining_code/_type":"CODE_PHRASE","/data[at0001]/items[at0073]/value/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/items[at0073]/value/defining_code/terminology_id/value":"local","/data[at0001]/items[at0073]/value/defining_code/code_string":"at0074","/data[at0001]/archetype_node_id":"at0001","/data[at0001]/name/_type":"DV_TEXT","/data[at0001]/name/value":"structure","/protocol[at0032]/_type":"ITEM_TREE","/protocol[at0032]/items[at0070]/_type":"ELEMENT","/protocol[at0032]/items[at0070]/value/_type":"DV_DATE_TIME","/protocol[at0032]/items[at0070]/value/value":"2021-12-03T16:05:19.514719+01:00","/protocol[at0032]/items[at0070]/value/magnitude":63774140719,"/protocol[at0032]/archetype_node_id":"at0032","/protocol[at0032]/name/_type":"DV_TEXT","/protocol[at0032]/name/value":"Tree","/archetype_node_id":"openEHR-EHR-EVALUATION.problem_diagnosis.v1","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"en","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-EVALUATION.problem_diagnosis.v1","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/name/_type":"DV_TEXT","/name/value":"Problem/Diagnosis","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,117, 'openEHR-EHR-EVALUATION.problem_diagnosis.v1', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Past History of Illnesses'']/items[openEHR-EHR-EVALUATION.problem_diagnosis.v1]', '{}', '{0}', 1, '{"/data[at0001]/items[at0012]/_type":"ELEMENT","/data[at0001]/items[at0012]/value/_type":"DV_TEXT","/data[at0001]/items[at0012]/value/value":"Body site 67"}'),
+ (eid,cid,118, 'openEHR-EHR-EVALUATION.problem_diagnosis.v1', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Past History of Illnesses'']/items[openEHR-EHR-EVALUATION.problem_diagnosis.v1]', '{}', '{0}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"requester","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"face-to-face communication","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"216","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"199","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Dr. Marcus Johnson"}'),
+ (eid,cid,119, 'openEHR-EHR-EVALUATION.problem_diagnosis.v1', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Past History of Illnesses'']/items[openEHR-EHR-EVALUATION.problem_diagnosis.v1]', '{}', '{1}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"performer","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"not specified","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"193","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"198","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Lara Markham"}'),
+ (eid,cid,120, 'openEHR-EHR-EVALUATION.pregnancy_summary.v0', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Pregnancy'']/items[openEHR-EHR-EVALUATION.pregnancy_summary.v0]', '{}', '{}', 0, '{"/_type":"EVALUATION","/data[at0001]/_type":"ITEM_TREE","/data[at0001]/items[at0141]/_type":"ELEMENT","/data[at0001]/items[at0141]/value/_type":"DV_CODED_TEXT","/data[at0001]/items[at0141]/value/value":"Currently pregnant","/data[at0001]/items[at0141]/value/defining_code/_type":"CODE_PHRASE","/data[at0001]/items[at0141]/value/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/items[at0141]/value/defining_code/terminology_id/value":"local","/data[at0001]/items[at0141]/value/defining_code/code_string":"at0142","/data[at0001]/items[at0145]/_type":"CLUSTER","/data[at0001]/items[at0145]/items[at0094]/_type":"ELEMENT","/data[at0001]/items[at0145]/items[at0094]/value/_type":"DV_TEXT","/data[at0001]/items[at0145]/items[at0094]/value/value":"Pregnancy outcome 79","/data[at0001]/items[at0145]/archetype_node_id":"at0145","/data[at0001]/items[at0145]/name/_type":"DV_TEXT","/data[at0001]/items[at0145]/name/value":"Per pregnancy","/data[at0001]/archetype_node_id":"at0001","/data[at0001]/name/_type":"DV_TEXT","/data[at0001]/name/value":"Tree","/archetype_node_id":"openEHR-EHR-EVALUATION.pregnancy_summary.v0","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"en","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-EVALUATION.pregnancy_summary.v0","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/name/_type":"DV_TEXT","/name/value":"Pregnancy summary","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,121, 'openEHR-EHR-EVALUATION.pregnancy_summary.v0', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Pregnancy'']/items[openEHR-EHR-EVALUATION.pregnancy_summary.v0]', '{}', '{0}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"requester","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"face-to-face communication","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"216","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"199","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Dr. Marcus Johnson"}'),
+ (eid,cid,122, 'openEHR-EHR-EVALUATION.pregnancy_summary.v0', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Pregnancy'']/items[openEHR-EHR-EVALUATION.pregnancy_summary.v0]', '{}', '{1}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"performer","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"not specified","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"193","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"198","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Lara Markham"}'),
+ (eid,cid,123, 'openEHR-EHR-EVALUATION.estimated_date_delivery.v0', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Pregnancy'']/items[openEHR-EHR-EVALUATION.estimated_date_delivery.v0]', '{}', '{}', 0, '{"/_type":"EVALUATION","/data[at0002]/_type":"ITEM_TREE","/data[at0002]/items[at0003]/_type":"ELEMENT","/data[at0002]/items[at0003]/value/_type":"DV_DATE_TIME","/data[at0002]/items[at0003]/value/value":"2021-12-03T16:05:19.514747+01:00","/data[at0002]/items[at0003]/value/magnitude":63774140719,"/data[at0002]/items[at0004]/_type":"ELEMENT","/data[at0002]/items[at0004]/value/_type":"DV_DATE_TIME","/data[at0002]/items[at0004]/value/value":"2021-12-03T16:05:19.514768+01:00","/data[at0002]/items[at0004]/value/magnitude":63774140719,"/data[at0002]/items[at0006]/_type":"CLUSTER","/data[at0002]/items[at0006]/items[at0008]/_type":"ELEMENT","/data[at0002]/items[at0006]/items[at0008]/value/_type":"DV_DATE_TIME","/data[at0002]/items[at0006]/items[at0008]/value/value":"2021-12-03T16:05:19.514787+01:00","/data[at0002]/items[at0006]/items[at0008]/value/magnitude":63774140719,"/data[at0002]/items[at0006]/archetype_node_id":"at0006","/data[at0002]/items[at0006]/name/_type":"DV_TEXT","/data[at0002]/items[at0006]/name/value":"By ultrasound","/data[at0002]/archetype_node_id":"at0002","/data[at0002]/name/_type":"DV_TEXT","/data[at0002]/name/value":"Item tree","/protocol[at0001]/_type":"ITEM_TREE","/protocol[at0001]/items[at0013]/_type":"ELEMENT","/protocol[at0001]/items[at0013]/value/_type":"DV_DATE_TIME","/protocol[at0001]/items[at0013]/value/value":"2021-12-03T16:05:19.514827+01:00","/protocol[at0001]/items[at0013]/value/magnitude":63774140719,"/protocol[at0001]/archetype_node_id":"at0001","/protocol[at0001]/name/_type":"DV_TEXT","/protocol[at0001]/name/value":"Item tree","/archetype_node_id":"openEHR-EHR-EVALUATION.estimated_date_delivery.v0","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"en","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-EVALUATION.estimated_date_delivery.v0","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/name/_type":"DV_TEXT","/name/value":"Estimated date of delivery","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,124, 'openEHR-EHR-EVALUATION.estimated_date_delivery.v0', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Pregnancy'']/items[openEHR-EHR-EVALUATION.estimated_date_delivery.v0]', '{}', '{0}', 1, '{"/data[at0002]/items[at0009]/_type":"CLUSTER","/data[at0002]/items[at0009]/items[at0010]/_type":"ELEMENT","/data[at0002]/items[at0009]/items[at0010]/value/_type":"DV_DATE_TIME","/data[at0002]/items[at0009]/items[at0010]/value/value":"2021-12-03T16:05:19.514807+01:00","/data[at0002]/items[at0009]/items[at0010]/value/magnitude":63774140719,"/data[at0002]/items[at0009]/archetype_node_id":"at0009","/data[at0002]/items[at0009]/name/_type":"DV_TEXT","/data[at0002]/items[at0009]/name/value":"Agreed EDD"}'),
+ (eid,cid,125, 'openEHR-EHR-EVALUATION.estimated_date_delivery.v0', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Pregnancy'']/items[openEHR-EHR-EVALUATION.estimated_date_delivery.v0]', '{}', '{0}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"requester","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"face-to-face communication","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"216","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"199","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Dr. Marcus Johnson"}'),
+ (eid,cid,126, 'openEHR-EHR-EVALUATION.estimated_date_delivery.v0', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Pregnancy'']/items[openEHR-EHR-EVALUATION.estimated_date_delivery.v0]', '{}', '{1}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"performer","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"not specified","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"193","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"198","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Lara Markham"}'),
+ (eid,cid,127, 'openEHR-EHR-OBSERVATION.exclusion_pregnancy.v0', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Pregnancy'']/items[openEHR-EHR-OBSERVATION.exclusion_pregnancy.v0]', '{}', '{}', 0, '{"/_type":"OBSERVATION","/data[at0001]/_type":"HISTORY","/data[at0001]/archetype_node_id":"at0001","/data[at0001]/origin/_type":"DV_DATE_TIME","/data[at0001]/origin/value":"2021-12-03T17:34:06.849379+01:00","/data[at0001]/origin/magnitude":63774146046,"/data[at0001]/name/_type":"DV_TEXT","/data[at0001]/name/value":"History","/archetype_node_id":"openEHR-EHR-OBSERVATION.exclusion_pregnancy.v0","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"en","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-OBSERVATION.exclusion_pregnancy.v0","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/name/_type":"DV_TEXT","/name/value":"Exclusion of pregnancy","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,128, 'openEHR-EHR-OBSERVATION.exclusion_pregnancy.v0', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Pregnancy'']/items[openEHR-EHR-OBSERVATION.exclusion_pregnancy.v0]', '{}', '{0}', 1, '{"/data[at0001]/events[at0002]/_type":"POINT_EVENT","/data[at0001]/events[at0002]/data[at0003]/_type":"ITEM_TREE","/data[at0001]/events[at0002]/data[at0003]/items[at0006]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[at0006]/value/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0006]/value/value":"Not pregnant","/data[at0001]/events[at0002]/data[at0003]/archetype_node_id":"at0003","/data[at0001]/events[at0002]/data[at0003]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/name/value":"Tree","/data[at0001]/events[at0002]/archetype_node_id":"at0002","/data[at0001]/events[at0002]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/name/value":"Any event","/data[at0001]/events[at0002]/time/_type":"DV_DATE_TIME","/data[at0001]/events[at0002]/time/value":"2021-12-03T17:34:06.849379+01:00","/data[at0001]/events[at0002]/time/magnitude":63774146046}'),
+ (eid,cid,129, 'openEHR-EHR-OBSERVATION.exclusion_pregnancy.v0', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Pregnancy'']/items[openEHR-EHR-OBSERVATION.exclusion_pregnancy.v0]', '{}', '{0}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"requester","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"face-to-face communication","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"216","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"199","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Dr. Marcus Johnson"}'),
+ (eid,cid,130, 'openEHR-EHR-OBSERVATION.exclusion_pregnancy.v0', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Pregnancy'']/items[openEHR-EHR-OBSERVATION.exclusion_pregnancy.v0]', '{}', '{1}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"performer","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"not specified","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"193","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"198","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Lara Markham"}'),
+ (eid,cid,131, 'openEHR-EHR-EVALUATION.tobacco_smoking_summary.v1', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Social History'']/items[openEHR-EHR-EVALUATION.tobacco_smoking_summary.v1]', '{}', '{}', 0, '{"/_type":"EVALUATION","/data[at0001]/_type":"ITEM_TREE","/data[at0001]/items[at0089]/_type":"ELEMENT","/data[at0001]/items[at0089]/value/_type":"DV_CODED_TEXT","/data[at0001]/items[at0089]/value/value":"Never smoked","/data[at0001]/items[at0089]/value/defining_code/_type":"CODE_PHRASE","/data[at0001]/items[at0089]/value/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/items[at0089]/value/defining_code/terminology_id/value":"local","/data[at0001]/items[at0089]/value/defining_code/code_string":"at0006","/data[at0001]/archetype_node_id":"at0001","/data[at0001]/name/_type":"DV_TEXT","/data[at0001]/name/value":"Tree","/archetype_node_id":"openEHR-EHR-EVALUATION.tobacco_smoking_summary.v1","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"en","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-EVALUATION.tobacco_smoking_summary.v1","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/name/_type":"DV_TEXT","/name/value":"Tobacco smoking summary","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,132, 'openEHR-EHR-EVALUATION.tobacco_smoking_summary.v1', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Social History'']/items[openEHR-EHR-EVALUATION.tobacco_smoking_summary.v1]', '{}', '{0}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"requester","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"face-to-face communication","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"216","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"199","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Dr. Marcus Johnson"}'),
+ (eid,cid,133, 'openEHR-EHR-EVALUATION.tobacco_smoking_summary.v1', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Social History'']/items[openEHR-EHR-EVALUATION.tobacco_smoking_summary.v1]', '{}', '{1}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"performer","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"not specified","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"193","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"198","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Lara Markham"}'),
+ (eid,cid,134, 'openEHR-EHR-EVALUATION.alcohol_consumption_summary.v1', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Social History'']/items[openEHR-EHR-EVALUATION.alcohol_consumption_summary.v1]', '{}', '{}', 0, '{"/_type":"EVALUATION","/data[at0001]/_type":"ITEM_TREE","/data[at0001]/items[at0089]/_type":"ELEMENT","/data[at0001]/items[at0089]/value/_type":"DV_CODED_TEXT","/data[at0001]/items[at0089]/value/value":"Lifetime non-drinker","/data[at0001]/items[at0089]/value/defining_code/_type":"CODE_PHRASE","/data[at0001]/items[at0089]/value/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/items[at0089]/value/defining_code/terminology_id/value":"local","/data[at0001]/items[at0089]/value/defining_code/code_string":"at0006","/data[at0001]/archetype_node_id":"at0001","/data[at0001]/name/_type":"DV_TEXT","/data[at0001]/name/value":"Tree","/archetype_node_id":"openEHR-EHR-EVALUATION.alcohol_consumption_summary.v1","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"en","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-EVALUATION.alcohol_consumption_summary.v1","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/name/_type":"DV_TEXT","/name/value":"Alcohol consumption summary","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,135, 'openEHR-EHR-EVALUATION.alcohol_consumption_summary.v1', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Social History'']/items[openEHR-EHR-EVALUATION.alcohol_consumption_summary.v1]', '{}', '{0}', 1, '{"/data[at0001]/items[at0064]/_type":"CLUSTER","/data[at0001]/items[at0064]/items[at0023]/_type":"ELEMENT","/data[at0001]/items[at0064]/items[at0023]/value/_type":"DV_QUANTITY","/data[at0001]/items[at0064]/items[at0023]/value/precision":1,"/data[at0001]/items[at0064]/items[at0023]/value/units":"1/d","/data[at0001]/items[at0064]/items[at0023]/value/magnitude":86.5,"/data[at0001]/items[at0064]/archetype_node_id":"at0064","/data[at0001]/items[at0064]/name/_type":"DV_TEXT","/data[at0001]/items[at0064]/name/value":"Per episode"}'),
+ (eid,cid,136, 'openEHR-EHR-EVALUATION.alcohol_consumption_summary.v1', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Social History'']/items[openEHR-EHR-EVALUATION.alcohol_consumption_summary.v1]', '{}', '{0}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"requester","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"face-to-face communication","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"216","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"199","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Dr. Marcus Johnson"}'),
+ (eid,cid,137, 'openEHR-EHR-EVALUATION.alcohol_consumption_summary.v1', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Social History'']/items[openEHR-EHR-EVALUATION.alcohol_consumption_summary.v1]', '{}', '{1}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"performer","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"not specified","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"193","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"198","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Lara Markham"}'),
+ (eid,cid,138, 'openEHR-EHR-ACTION.care_plan.v0', 'ACTION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Plan of Care'']/items[openEHR-EHR-ACTION.care_plan.v0]', '{}', '{}', 0, '{"/_type":"ACTION","/description[at0019]/_type":"ITEM_TREE","/description[at0019]/items[at0002]/_type":"ELEMENT","/description[at0019]/items[at0002]/value/_type":"DV_TEXT","/description[at0019]/items[at0002]/value/value":"Care Plan Name 53","/description[at0019]/items[at0021]/_type":"ELEMENT","/description[at0019]/items[at0021]/value/_type":"DV_TEXT","/description[at0019]/items[at0021]/value/value":"Description 15","/description[at0019]/items[at0025]/_type":"ELEMENT","/description[at0019]/items[at0025]/value/_type":"DV_TEXT","/description[at0019]/items[at0025]/value/value":"Reason 5","/description[at0019]/archetype_node_id":"at0019","/description[at0019]/name/_type":"DV_TEXT","/description[at0019]/name/value":"Tree","/protocol[at0015]/_type":"ITEM_TREE","/protocol[at0015]/items[at0016]/_type":"ELEMENT","/protocol[at0015]/items[at0016]/value/_type":"DV_IDENTIFIER","/protocol[at0015]/items[at0016]/value/issuer":"Issuer","/protocol[at0015]/items[at0016]/value/assigner":"Assigner","/protocol[at0015]/items[at0016]/value/id":"0942fb74-27f8-48c6-869e-10192740c371","/protocol[at0015]/items[at0016]/value/type":"Prescription","/protocol[at0015]/items[at0017]/_type":"ELEMENT","/protocol[at0015]/items[at0017]/value/_type":"DV_DATE_TIME","/protocol[at0015]/items[at0017]/value/value":"2021-12-03T16:05:19.514877+01:00","/protocol[at0015]/items[at0017]/value/magnitude":63774140719,"/protocol[at0015]/archetype_node_id":"at0015","/protocol[at0015]/name/_type":"DV_TEXT","/protocol[at0015]/name/value":"Tree","/archetype_node_id":"openEHR-EHR-ACTION.care_plan.v0","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"en","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-ACTION.care_plan.v0","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/name/_type":"DV_TEXT","/name/value":"Care Plan","/time/_type":"DV_DATE_TIME","/time/value":"2021-12-03T16:05:19.514899+01:00","/time/magnitude":63774140719,"/ism_transition/_type":"ISM_TRANSITION","/ism_transition/current_state/_type":"DV_CODED_TEXT","/ism_transition/current_state/value":"suspended","/ism_transition/current_state/defining_code/_type":"CODE_PHRASE","/ism_transition/current_state/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/ism_transition/current_state/defining_code/terminology_id/value":"openehr","/ism_transition/current_state/defining_code/code_string":"530","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,139, 'openEHR-EHR-ACTION.care_plan.v0', 'ACTION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Plan of Care'']/items[openEHR-EHR-ACTION.care_plan.v0]', '{}', '{0}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"requester","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"face-to-face communication","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"216","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"199","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Dr. Marcus Johnson"}'),
+ (eid,cid,140, 'openEHR-EHR-ACTION.care_plan.v0', 'ACTION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Plan of Care'']/items[openEHR-EHR-ACTION.care_plan.v0]', '{}', '{1}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"performer","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"not specified","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"193","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"198","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Lara Markham"}'),
+ (eid,cid,141, 'openEHR-EHR-INSTRUCTION.service_request.v1', 'INSTRUCTION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Plan of Care'']/items[openEHR-EHR-INSTRUCTION.service_request.v1]', '{}', '{}', 0, '{"/_type":"INSTRUCTION","/protocol[at0008]/_type":"ITEM_TREE","/protocol[at0008]/items[at0010]/_type":"ELEMENT","/protocol[at0008]/items[at0010]/value/_type":"DV_TEXT","/protocol[at0008]/items[at0010]/value/value":"Requester order identifier 77","/protocol[at0008]/items[at0011]/_type":"ELEMENT","/protocol[at0008]/items[at0011]/value/_type":"DV_TEXT","/protocol[at0008]/items[at0011]/value/value":"Receiver order identifier 84","/protocol[at0008]/items[at0127]/_type":"ELEMENT","/protocol[at0008]/items[at0127]/value/_type":"DV_TEXT","/protocol[at0008]/items[at0127]/value/value":"Request status 67","/protocol[at0008]/archetype_node_id":"at0008","/protocol[at0008]/name/_type":"DV_TEXT","/protocol[at0008]/name/value":"Tree","/archetype_node_id":"openEHR-EHR-INSTRUCTION.service_request.v1","/narrative/_type":"DV_TEXT","/narrative/value":"Human readable instruction narrative","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"en","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/uid/_type":"HIER_OBJECT_ID","/uid/value":"30d4c457-09ad-451b-abb0-45e0f7c6aa58","/archetype_details/archetype_id/value":"openEHR-EHR-INSTRUCTION.service_request.v1","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/name/_type":"DV_TEXT","/name/value":"Service request","/expiry_time/_type":"DV_DATE_TIME","/expiry_time/value":"2021-12-03T16:05:19.515085+01:00","/expiry_time/magnitude":63774140719,"/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,142, 'openEHR-EHR-INSTRUCTION.service_request.v1', 'INSTRUCTION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Plan of Care'']/items[openEHR-EHR-INSTRUCTION.service_request.v1]', '{}', '{0}', 1, '{"/activities[at0001]/_type":"ACTIVITY","/activities[at0001]/description[at0009]/_type":"ITEM_TREE","/activities[at0001]/description[at0009]/items[at0121]/_type":"ELEMENT","/activities[at0001]/description[at0009]/items[at0121]/value/_type":"DV_TEXT","/activities[at0001]/description[at0009]/items[at0121]/value/value":"Service name 99","/activities[at0001]/description[at0009]/items[at0148]/_type":"ELEMENT","/activities[at0001]/description[at0009]/items[at0148]/value/_type":"DV_TEXT","/activities[at0001]/description[at0009]/items[at0148]/value/value":"Service type 78","/activities[at0001]/description[at0009]/items[at0135]/_type":"ELEMENT","/activities[at0001]/description[at0009]/items[at0135]/value/_type":"DV_TEXT","/activities[at0001]/description[at0009]/items[at0135]/value/value":"Description 60","/activities[at0001]/description[at0009]/items[at0064]/_type":"ELEMENT","/activities[at0001]/description[at0009]/items[at0064]/value/_type":"DV_TEXT","/activities[at0001]/description[at0009]/items[at0064]/value/value":"Reason description 72","/activities[at0001]/description[at0009]/items[at0068]/_type":"ELEMENT","/activities[at0001]/description[at0009]/items[at0068]/value/_type":"DV_CODED_TEXT","/activities[at0001]/description[at0009]/items[at0068]/value/value":"Routine","/activities[at0001]/description[at0009]/items[at0068]/value/defining_code/_type":"CODE_PHRASE","/activities[at0001]/description[at0009]/items[at0068]/value/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/activities[at0001]/description[at0009]/items[at0068]/value/defining_code/terminology_id/value":"local","/activities[at0001]/description[at0009]/items[at0068]/value/defining_code/code_string":"at0138","/activities[at0001]/description[at0009]/items[at0040]/_type":"ELEMENT","/activities[at0001]/description[at0009]/items[at0040]/value/_type":"DV_DATE_TIME","/activities[at0001]/description[at0009]/items[at0040]/value/value":"2021-12-03T16:05:19.51495+01:00","/activities[at0001]/description[at0009]/items[at0040]/value/magnitude":63774140719,"/activities[at0001]/description[at0009]/items[at0145]/_type":"ELEMENT","/activities[at0001]/description[at0009]/items[at0145]/value/_type":"DV_DATE_TIME","/activities[at0001]/description[at0009]/items[at0145]/value/value":"2021-12-03T16:05:19.514985+01:00","/activities[at0001]/description[at0009]/items[at0145]/value/magnitude":63774140719,"/activities[at0001]/description[at0009]/items[at0144]/_type":"ELEMENT","/activities[at0001]/description[at0009]/items[at0144]/value/_type":"DV_DATE_TIME","/activities[at0001]/description[at0009]/items[at0144]/value/value":"2021-12-03T16:05:19.515006+01:00","/activities[at0001]/description[at0009]/items[at0144]/value/magnitude":63774140719,"/activities[at0001]/description[at0009]/items[at0147]/_type":"ELEMENT","/activities[at0001]/description[at0009]/items[at0147]/value/_type":"DV_BOOLEAN","/activities[at0001]/description[at0009]/items[at0147]/value/value":true,"/activities[at0001]/description[at0009]/items[at0076]/_type":"ELEMENT","/activities[at0001]/description[at0009]/items[at0076]/value/_type":"DV_BOOLEAN","/activities[at0001]/description[at0009]/items[at0076]/value/value":true,"/activities[at0001]/description[at0009]/items[at0078]/_type":"ELEMENT","/activities[at0001]/description[at0009]/items[at0078]/value/_type":"DV_TEXT","/activities[at0001]/description[at0009]/items[at0078]/value/value":"Information description 91","/activities[at0001]/description[at0009]/items[at0150]/_type":"ELEMENT","/activities[at0001]/description[at0009]/items[at0150]/value/_type":"DV_TEXT","/activities[at0001]/description[at0009]/items[at0150]/value/value":"Comment 26","/activities[at0001]/description[at0009]/archetype_node_id":"at0009","/activities[at0001]/description[at0009]/name/_type":"DV_TEXT","/activities[at0001]/description[at0009]/name/value":"Tree","/activities[at0001]/archetype_node_id":"at0001","/activities[at0001]/timing/_type":"DV_PARSABLE","/activities[at0001]/timing/value":"R3/2021-12-03T16:00:00+01:00/P1M","/activities[at0001]/timing/formalism":"timing","/activities[at0001]/action_archetype_id":"/.*/","/activities[at0001]/name/_type":"DV_TEXT","/activities[at0001]/name/value":"Current Activity"}'),
+ (eid,cid,143, 'openEHR-EHR-INSTRUCTION.service_request.v1', 'INSTRUCTION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Plan of Care'']/items[openEHR-EHR-INSTRUCTION.service_request.v1]', '{}', '{0,0}', 2, '{"/activities[at0001]/description[at0009]/items[at0062]/_type":"ELEMENT","/activities[at0001]/description[at0009]/items[at0062]/value/_type":"DV_TEXT","/activities[at0001]/description[at0009]/items[at0062]/value/value":"Reason for request 32"}'),
+ (eid,cid,144, 'openEHR-EHR-INSTRUCTION.service_request.v1', 'INSTRUCTION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Plan of Care'']/items[openEHR-EHR-INSTRUCTION.service_request.v1]', '{}', '{0,0}', 2, '{"/activities[at0001]/description[at0009]/items[at0152]/_type":"ELEMENT","/activities[at0001]/description[at0009]/items[at0152]/value/_type":"DV_TEXT","/activities[at0001]/description[at0009]/items[at0152]/value/value":"Clinical indication 44"}'),
+ (eid,cid,145, 'openEHR-EHR-INSTRUCTION.service_request.v1', 'INSTRUCTION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Plan of Care'']/items[openEHR-EHR-INSTRUCTION.service_request.v1]', '{}', '{0,0}', 2, '{"/activities[at0001]/description[at0009]/items[at0065]/_type":"ELEMENT","/activities[at0001]/description[at0009]/items[at0065]/value/_type":"DV_TEXT","/activities[at0001]/description[at0009]/items[at0065]/value/value":"Intent 67"}'),
+ (eid,cid,146, 'openEHR-EHR-INSTRUCTION.service_request.v1', 'INSTRUCTION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Plan of Care'']/items[openEHR-EHR-INSTRUCTION.service_request.v1]', '{}', '{0}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"requester","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"face-to-face communication","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"216","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"199","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Dr. Marcus Johnson"}'),
+ (eid,cid,147, 'openEHR-EHR-INSTRUCTION.service_request.v1', 'INSTRUCTION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Plan of Care'']/items[openEHR-EHR-INSTRUCTION.service_request.v1]', '{}', '{1}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"performer","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"not specified","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"193","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"198","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Lara Markham"}'),
+ (eid,cid,148, 'openEHR-EHR-EVALUATION.problem_diagnosis.v1', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Functional Status'']/items[openEHR-EHR-EVALUATION.problem_diagnosis.v1]', '{}', '{}', 0, '{"/_type":"EVALUATION","/data[at0001]/_type":"ITEM_TREE","/data[at0001]/items[at0002]/_type":"ELEMENT","/data[at0001]/items[at0002]/value/_type":"DV_TEXT","/data[at0001]/items[at0002]/value/value":"Problem/Diagnosis name 10","/data[at0001]/items[at0077]/_type":"ELEMENT","/data[at0001]/items[at0077]/value/_type":"DV_DATE_TIME","/data[at0001]/items[at0077]/value/value":"2021-12-03T16:05:19.515116+01:00","/data[at0001]/items[at0077]/value/magnitude":63774140719,"/data[at0001]/items[at0005]/_type":"ELEMENT","/data[at0001]/items[at0005]/value/_type":"DV_CODED_TEXT","/data[at0001]/items[at0005]/value/value":"Severe","/data[at0001]/items[at0005]/value/defining_code/_type":"CODE_PHRASE","/data[at0001]/items[at0005]/value/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/items[at0005]/value/defining_code/terminology_id/value":"local","/data[at0001]/items[at0005]/value/defining_code/code_string":"at0049","/data[at0001]/items[at0030,''Date of abatement'']/_type":"ELEMENT","/data[at0001]/items[at0030,''Date of abatement'']/value/_type":"DV_DATE_TIME","/data[at0001]/items[at0030,''Date of abatement'']/value/value":"2021-12-03T16:05:19.515138+01:00","/data[at0001]/items[at0030,''Date of abatement'']/value/magnitude":63774140719,"/data[at0001]/items[at0030,''Date of abatement'']/name/_type":"DV_TEXT","/data[at0001]/items[at0030,''Date of abatement'']/name/value":"Date of abatement","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/_type":"CLUSTER","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0003]/_type":"ELEMENT","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0003]/value/_type":"DV_CODED_TEXT","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0003]/value/value":"Active","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0003]/value/defining_code/_type":"CODE_PHRASE","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0003]/value/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0003]/value/defining_code/terminology_id/value":"local","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0003]/value/defining_code/code_string":"at0026","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0083]/_type":"ELEMENT","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0083]/value/_type":"DV_CODED_TEXT","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0083]/value/value":"Resolved","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0083]/value/defining_code/_type":"CODE_PHRASE","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0083]/value/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0083]/value/defining_code/terminology_id/value":"local","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0083]/value/defining_code/code_string":"at0084","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0089]/_type":"ELEMENT","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0089]/value/_type":"DV_CODED_TEXT","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0089]/value/value":"In remission","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0089]/value/defining_code/_type":"CODE_PHRASE","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0089]/value/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0089]/value/defining_code/terminology_id/value":"local","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0089]/value/defining_code/code_string":"at0090","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0071]/_type":"ELEMENT","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0071]/value/_type":"DV_CODED_TEXT","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0071]/value/value":"Recurrence","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0071]/value/defining_code/_type":"CODE_PHRASE","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0071]/value/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0071]/value/defining_code/terminology_id/value":"local","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0071]/value/defining_code/code_string":"at0096","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/archetype_details/archetype_id/value":"openEHR-EHR-CLUSTER.problem_qualifier.v1","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/archetype_details/rm_version":"1.0.4","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/archetype_details/_type":"ARCHETYPED","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/archetype_node_id":"openEHR-EHR-CLUSTER.problem_qualifier.v1","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/name/_type":"DV_TEXT","/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/name/value":"Problem/Diagnosis qualifier","/data[at0001]/items[at0073]/_type":"ELEMENT","/data[at0001]/items[at0073]/value/_type":"DV_CODED_TEXT","/data[at0001]/items[at0073]/value/value":"Probable","/data[at0001]/items[at0073]/value/defining_code/_type":"CODE_PHRASE","/data[at0001]/items[at0073]/value/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/items[at0073]/value/defining_code/terminology_id/value":"local","/data[at0001]/items[at0073]/value/defining_code/code_string":"at0075","/data[at0001]/archetype_node_id":"at0001","/data[at0001]/name/_type":"DV_TEXT","/data[at0001]/name/value":"structure","/protocol[at0032]/_type":"ITEM_TREE","/protocol[at0032]/items[at0070]/_type":"ELEMENT","/protocol[at0032]/items[at0070]/value/_type":"DV_DATE_TIME","/protocol[at0032]/items[at0070]/value/value":"2021-12-03T16:05:19.515165+01:00","/protocol[at0032]/items[at0070]/value/magnitude":63774140719,"/protocol[at0032]/archetype_node_id":"at0032","/protocol[at0032]/name/_type":"DV_TEXT","/protocol[at0032]/name/value":"Tree","/archetype_node_id":"openEHR-EHR-EVALUATION.problem_diagnosis.v1","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"en","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-EVALUATION.problem_diagnosis.v1","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/name/_type":"DV_TEXT","/name/value":"Problem/Diagnosis","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,149, 'openEHR-EHR-EVALUATION.problem_diagnosis.v1', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Functional Status'']/items[openEHR-EHR-EVALUATION.problem_diagnosis.v1]', '{}', '{0}', 1, '{"/data[at0001]/items[at0012]/_type":"ELEMENT","/data[at0001]/items[at0012]/value/_type":"DV_TEXT","/data[at0001]/items[at0012]/value/value":"Body site 88"}'),
+ (eid,cid,150, 'openEHR-EHR-EVALUATION.problem_diagnosis.v1', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Functional Status'']/items[openEHR-EHR-EVALUATION.problem_diagnosis.v1]', '{}', '{0}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"requester","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"face-to-face communication","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"216","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"199","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Dr. Marcus Johnson"}'),
+ (eid,cid,151, 'openEHR-EHR-EVALUATION.problem_diagnosis.v1', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Functional Status'']/items[openEHR-EHR-EVALUATION.problem_diagnosis.v1]', '{}', '{1}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"performer","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"not specified","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"193","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"198","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Lara Markham"}'),
+ (eid,cid,152, 'openEHR-EHR-EVALUATION.clinical_synopsis.v1', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Functional Status'']/items[openEHR-EHR-EVALUATION.clinical_synopsis.v1,''Clinical impression'']', '{}', '{}', 0, '{"/_type":"EVALUATION","/data[at0001]/_type":"ITEM_TREE","/data[at0001]/items[at0002,''Impression'']/_type":"ELEMENT","/data[at0001]/items[at0002,''Impression'']/value/_type":"DV_TEXT","/data[at0001]/items[at0002,''Impression'']/value/value":"Impression 51","/data[at0001]/items[at0002,''Impression'']/name/_type":"DV_TEXT","/data[at0001]/items[at0002,''Impression'']/name/value":"Impression","/data[at0001]/archetype_node_id":"at0001","/data[at0001]/name/_type":"DV_TEXT","/data[at0001]/name/value":"List","/name/_type":"DV_TEXT","/name/value":"Clinical impression","/archetype_node_id":"openEHR-EHR-EVALUATION.clinical_synopsis.v1","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"en","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-EVALUATION.clinical_synopsis.v1","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,153, 'openEHR-EHR-EVALUATION.clinical_synopsis.v1', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Functional Status'']/items[openEHR-EHR-EVALUATION.clinical_synopsis.v1,''Clinical impression'']', '{}', '{0}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"requester","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"face-to-face communication","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"216","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"199","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Dr. Marcus Johnson"}'),
+ (eid,cid,154, 'openEHR-EHR-EVALUATION.clinical_synopsis.v1', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Functional Status'']/items[openEHR-EHR-EVALUATION.clinical_synopsis.v1,''Clinical impression'']', '{}', '{1}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"performer","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"not specified","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"193","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"198","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Lara Markham"}'),
+ (eid,cid,155, 'openEHR-EHR-EVALUATION.advance_care_directive.v1', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Advanced Directives'']/items[openEHR-EHR-EVALUATION.advance_care_directive.v1]', '{}', '{}', 0, '{"/_type":"EVALUATION","/data[at0001]/_type":"ITEM_TREE","/data[at0001]/items[at0005]/_type":"ELEMENT","/data[at0001]/items[at0005]/value/_type":"DV_TEXT","/data[at0001]/items[at0005]/value/value":"Type of directive 83","/data[at0001]/items[at0004]/_type":"ELEMENT","/data[at0001]/items[at0004]/value/_type":"DV_CODED_TEXT","/data[at0001]/items[at0004]/value/value":"Present","/data[at0001]/items[at0004]/value/defining_code/_type":"CODE_PHRASE","/data[at0001]/items[at0004]/value/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/items[at0004]/value/defining_code/terminology_id/value":"local","/data[at0001]/items[at0004]/value/defining_code/code_string":"at0044","/data[at0001]/items[at0006]/_type":"ELEMENT","/data[at0001]/items[at0006]/value/_type":"DV_TEXT","/data[at0001]/items[at0006]/value/value":"Description 26","/data[at0001]/items[at0038]/_type":"ELEMENT","/data[at0001]/items[at0038]/value/_type":"DV_TEXT","/data[at0001]/items[at0038]/value/value":"Comment 85","/data[at0001]/archetype_node_id":"at0001","/data[at0001]/name/_type":"DV_TEXT","/data[at0001]/name/value":"Item tree","/protocol[at0010]/_type":"ITEM_TREE","/protocol[at0010]/items[at0053]/_type":"ELEMENT","/protocol[at0010]/items[at0053]/value/_type":"DV_DATE_TIME","/protocol[at0010]/items[at0053]/value/value":"2021-12-03T16:05:19.5152+01:00","/protocol[at0010]/items[at0053]/value/magnitude":63774140719,"/protocol[at0010]/items[at0054]/_type":"ELEMENT","/protocol[at0010]/items[at0054]/value/_type":"DV_DATE_TIME","/protocol[at0010]/items[at0054]/value/value":"2021-12-03T16:05:19.515221+01:00","/protocol[at0010]/items[at0054]/value/magnitude":63774140719,"/protocol[at0010]/items[at0056]/_type":"ELEMENT","/protocol[at0010]/items[at0056]/value/_type":"DV_DATE_TIME","/protocol[at0010]/items[at0056]/value/value":"2021-12-03T16:05:19.51524+01:00","/protocol[at0010]/items[at0056]/value/magnitude":63774140719,"/protocol[at0010]/items[at0055]/_type":"ELEMENT","/protocol[at0010]/items[at0055]/value/_type":"DV_DATE_TIME","/protocol[at0010]/items[at0055]/value/value":"2021-12-03T16:05:19.515259+01:00","/protocol[at0010]/items[at0055]/value/magnitude":63774140719,"/protocol[at0010]/archetype_node_id":"at0010","/protocol[at0010]/name/_type":"DV_TEXT","/protocol[at0010]/name/value":"Item tree","/archetype_node_id":"openEHR-EHR-EVALUATION.advance_care_directive.v1","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"en","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-EVALUATION.advance_care_directive.v1","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/name/_type":"DV_TEXT","/name/value":"Advance care directive","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,156, 'openEHR-EHR-EVALUATION.advance_care_directive.v1', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Advanced Directives'']/items[openEHR-EHR-EVALUATION.advance_care_directive.v1]', '{}', '{0}', 1, '{"/data[at0001]/items[at0007]/_type":"ELEMENT","/data[at0001]/items[at0007]/value/_type":"DV_TEXT","/data[at0001]/items[at0007]/value/value":"Condition 81"}'),
+ (eid,cid,157, 'openEHR-EHR-EVALUATION.advance_care_directive.v1', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Advanced Directives'']/items[openEHR-EHR-EVALUATION.advance_care_directive.v1]', '{}', '{0}', 1, '{"/data[at0001]/items[at0058]/_type":"CLUSTER","/data[at0001]/items[at0058]/items[at0030]/_type":"ELEMENT","/data[at0001]/items[at0058]/items[at0030]/value/_type":"DV_TEXT","/data[at0001]/items[at0058]/items[at0030]/value/value":"Location 48","/data[at0001]/items[at0058]/archetype_node_id":"at0058","/data[at0001]/items[at0058]/name/_type":"DV_TEXT","/data[at0001]/items[at0058]/name/value":"Directive location"}'),
+ (eid,cid,158, 'openEHR-EHR-EVALUATION.advance_care_directive.v1', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Advanced Directives'']/items[openEHR-EHR-EVALUATION.advance_care_directive.v1]', '{}', '{0}', 1, '{"/protocol[at0010]/items[at0027]/_type":"ELEMENT","/protocol[at0010]/items[at0027]/value/_type":"DV_TEXT","/protocol[at0010]/items[at0027]/value/value":"Mandate 2"}'),
+ (eid,cid,159, 'openEHR-EHR-EVALUATION.advance_care_directive.v1', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Advanced Directives'']/items[openEHR-EHR-EVALUATION.advance_care_directive.v1]', '{}', '{0}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"requester","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"face-to-face communication","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"216","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"199","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Dr. Marcus Johnson"}'),
+ (eid,cid,160, 'openEHR-EHR-EVALUATION.advance_care_directive.v1', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Advanced Directives'']/items[openEHR-EHR-EVALUATION.advance_care_directive.v1]', '{}', '{1}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"performer","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"not specified","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"193","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"198","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Lara Markham"}'),
+ (eid,cid,161, 'openEHR-EHR-EVALUATION.limitation_of_treatment.v0', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Advanced Directives'']/items[openEHR-EHR-EVALUATION.limitation_of_treatment.v0]', '{}', '{}', 0, '{"/_type":"EVALUATION","/data[at0001]/_type":"ITEM_TREE","/data[at0001]/items[at0002]/_type":"ELEMENT","/data[at0001]/items[at0002]/value/_type":"DV_CODED_TEXT","/data[at0001]/items[at0002]/value/value":"No limitation of treatment","/data[at0001]/items[at0002]/value/defining_code/_type":"CODE_PHRASE","/data[at0001]/items[at0002]/value/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/items[at0002]/value/defining_code/terminology_id/value":"local","/data[at0001]/items[at0002]/value/defining_code/code_string":"at0003","/data[at0001]/items[at0021]/_type":"ELEMENT","/data[at0001]/items[at0021]/value/_type":"DV_TEXT","/data[at0001]/items[at0021]/value/value":"Rationale 34","/data[at0001]/items[at0022]/_type":"ELEMENT","/data[at0001]/items[at0022]/value/_type":"DV_CODED_TEXT","/data[at0001]/items[at0022]/value/value":"Patient aware of the decision/s","/data[at0001]/items[at0022]/value/defining_code/_type":"CODE_PHRASE","/data[at0001]/items[at0022]/value/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/items[at0022]/value/defining_code/terminology_id/value":"local","/data[at0001]/items[at0022]/value/defining_code/code_string":"at0023","/data[at0001]/items[at0025]/_type":"ELEMENT","/data[at0001]/items[at0025]/value/_type":"DV_TEXT","/data[at0001]/items[at0025]/value/value":"Carer awareness 12","/data[at0001]/items[at0026]/_type":"ELEMENT","/data[at0001]/items[at0026]/value/_type":"DV_TEXT","/data[at0001]/items[at0026]/value/value":"Comment 73","/data[at0001]/archetype_node_id":"at0001","/data[at0001]/name/_type":"DV_TEXT","/data[at0001]/name/value":"Tree","/protocol[at0027]/_type":"ITEM_TREE","/protocol[at0027]/items[at029]/_type":"ELEMENT","/protocol[at0027]/items[at029]/value/_type":"DV_DATE_TIME","/protocol[at0027]/items[at029]/value/value":"2021-12-03T16:05:19.515306+01:00","/protocol[at0027]/items[at029]/value/magnitude":63774140719,"/protocol[at0027]/items[at0030]/_type":"ELEMENT","/protocol[at0027]/items[at0030]/value/_type":"DV_DATE_TIME","/protocol[at0027]/items[at0030]/value/value":"2021-12-03T16:05:19.515328+01:00","/protocol[at0027]/items[at0030]/value/magnitude":63774140719,"/protocol[at0027]/archetype_node_id":"at0027","/protocol[at0027]/name/_type":"DV_TEXT","/protocol[at0027]/name/value":"Tree","/archetype_node_id":"openEHR-EHR-EVALUATION.limitation_of_treatment.v0","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"en","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-EVALUATION.limitation_of_treatment.v0","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/name/_type":"DV_TEXT","/name/value":"Limitation of treatment","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,162, 'openEHR-EHR-EVALUATION.limitation_of_treatment.v0', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Advanced Directives'']/items[openEHR-EHR-EVALUATION.limitation_of_treatment.v0]', '{}', '{0}', 1, '{"/data[at0001]/items[at0006]/_type":"CLUSTER","/data[at0001]/items[at0006]/items[at0007]/_type":"ELEMENT","/data[at0001]/items[at0006]/items[at0007]/value/_type":"DV_CODED_TEXT","/data[at0001]/items[at0006]/items[at0007]/value/value":"Cardiopulmonary resuscitation","/data[at0001]/items[at0006]/items[at0007]/value/defining_code/_type":"CODE_PHRASE","/data[at0001]/items[at0006]/items[at0007]/value/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/items[at0006]/items[at0007]/value/defining_code/terminology_id/value":"local","/data[at0001]/items[at0006]/items[at0007]/value/defining_code/code_string":"at0008","/data[at0001]/items[at0006]/items[at0017]/_type":"ELEMENT","/data[at0001]/items[at0006]/items[at0017]/value/_type":"DV_CODED_TEXT","/data[at0001]/items[at0006]/items[at0017]/value/value":"Not permitted","/data[at0001]/items[at0006]/items[at0017]/value/defining_code/_type":"CODE_PHRASE","/data[at0001]/items[at0006]/items[at0017]/value/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/items[at0006]/items[at0017]/value/defining_code/terminology_id/value":"local","/data[at0001]/items[at0006]/items[at0017]/value/defining_code/code_string":"at0019","/data[at0001]/items[at0006]/items[at0020]/_type":"ELEMENT","/data[at0001]/items[at0006]/items[at0020]/value/_type":"DV_TEXT","/data[at0001]/items[at0006]/items[at0020]/value/value":"Qualification 27","/data[at0001]/items[at0006]/archetype_node_id":"at0006","/data[at0001]/items[at0006]/name/_type":"DV_TEXT","/data[at0001]/items[at0006]/name/value":"Per limitation"}'),
+ (eid,cid,163, 'openEHR-EHR-EVALUATION.limitation_of_treatment.v0', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Advanced Directives'']/items[openEHR-EHR-EVALUATION.limitation_of_treatment.v0]', '{}', '{0}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"requester","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"face-to-face communication","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"216","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"199","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Dr. Marcus Johnson"}'),
+ (eid,cid,164, 'openEHR-EHR-EVALUATION.limitation_of_treatment.v0', 'EVALUATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Advanced Directives'']/items[openEHR-EHR-EVALUATION.limitation_of_treatment.v0]', '{}', '{1}', 1, '{"/other_participations/_type":"PARTICIPATION","/other_participations/function/_type":"DV_TEXT","/other_participations/function/value":"performer","/other_participations/mode/_type":"DV_CODED_TEXT","/other_participations/mode/value":"not specified","/other_participations/mode/defining_code/_type":"CODE_PHRASE","/other_participations/mode/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/other_participations/mode/defining_code/terminology_id/value":"openehr","/other_participations/mode/defining_code/code_string":"193","/other_participations/performer/_type":"PARTY_IDENTIFIED","/other_participations/performer/external_ref/_type":"PARTY_REF","/other_participations/performer/external_ref/namespace":"HOSPITAL-NS","/other_participations/performer/external_ref/type":"PERSON","/other_participations/performer/external_ref/id/_type":"GENERIC_ID","/other_participations/performer/external_ref/id/value":"198","/other_participations/performer/external_ref/id/scheme":"HOSPITAL-NS","/other_participations/performer/name":"Lara Markham"}');
+ cid := uuid_generate_v4();
+ insert into ehr.entry2 (ehr_id, comp_id,num, entity_concept, rm_entity,entity_path, entity_idx, field_idx, field_idx_len, fields)
+
+
+ values (eid,cid,0, 'openEHR-EHR-COMPOSITION.report.v1', 'COMPOSITION', '/', '{}', '{}', 0, '{"/_type":"COMPOSITION","/category/_type":"DV_CODED_TEXT","/category/value":"event","/category/defining_code/_type":"CODE_PHRASE","/category/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/category/defining_code/terminology_id/value":"openehr","/category/defining_code/code_string":"433","/context/_type":"EVENT_CONTEXT","/context/start_time/_type":"DV_DATE_TIME","/context/start_time/value":"2020-05-11T22:53:12.039139+02:00","/context/start_time/magnitude":63724827192,"/context/setting/_type":"DV_CODED_TEXT","/context/setting/value":"other care","/context/setting/defining_code/_type":"CODE_PHRASE","/context/setting/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/context/setting/defining_code/terminology_id/value":"openehr","/context/setting/defining_code/code_string":"238","/content[openEHR-EHR-SECTION.adhoc.v1,''Symptome'']/_type":"SECTION","/content[openEHR-EHR-SECTION.adhoc.v1,''Symptome'']/name/_type":"DV_TEXT","/content[openEHR-EHR-SECTION.adhoc.v1,''Symptome'']/name/value":"Symptome","/content[openEHR-EHR-SECTION.adhoc.v1,''Symptome'']/archetype_details/archetype_id/value":"openEHR-EHR-SECTION.adhoc.v1","/content[openEHR-EHR-SECTION.adhoc.v1,''Symptome'']/archetype_details/rm_version":"1.0.4","/content[openEHR-EHR-SECTION.adhoc.v1,''Symptome'']/archetype_details/_type":"ARCHETYPED","/content[openEHR-EHR-SECTION.adhoc.v1,''Symptome'']/archetype_node_id":"openEHR-EHR-SECTION.adhoc.v1","/content[openEHR-EHR-SECTION.adhoc.v1,''Risikogebiet'']/_type":"SECTION","/content[openEHR-EHR-SECTION.adhoc.v1,''Risikogebiet'']/name/_type":"DV_TEXT","/content[openEHR-EHR-SECTION.adhoc.v1,''Risikogebiet'']/name/value":"Risikogebiet","/content[openEHR-EHR-SECTION.adhoc.v1,''Risikogebiet'']/archetype_details/archetype_id/value":"openEHR-EHR-SECTION.adhoc.v1","/content[openEHR-EHR-SECTION.adhoc.v1,''Risikogebiet'']/archetype_details/rm_version":"1.0.4","/content[openEHR-EHR-SECTION.adhoc.v1,''Risikogebiet'']/archetype_details/_type":"ARCHETYPED","/content[openEHR-EHR-SECTION.adhoc.v1,''Risikogebiet'']/archetype_node_id":"openEHR-EHR-SECTION.adhoc.v1","/archetype_node_id":"openEHR-EHR-COMPOSITION.report.v1","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"de","/uid/_type":"OBJECT_VERSION_ID","/uid/value":"93a018f1-ad95-4d52-bb8f-0f64d7f7cce6::ehrbase.org::1","/archetype_details/archetype_id/value":"openEHR-EHR-COMPOSITION.report.v1","/archetype_details/template_id/value":"Corona_Anamnese","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/name/_type":"DV_TEXT","/name/value":"Bericht","/territory/_type":"CODE_PHRASE","/territory/terminology_id/_type":"TERMINOLOGY_ID","/territory/terminology_id/value":"ISO_3166-1","/territory/code_string":"DE","/composer/_type":"PARTY_IDENTIFIED","/composer/name":"birger.haarbrandt@plri.de"}'),
+ (eid,cid,1, 'openEHR-EHR-OBSERVATION.story.v1', 'OBSERVATION', '/content[openEHR-EHR-OBSERVATION.story.v1]', '{0}', '{}', 0, '{"/_type":"OBSERVATION","/data[at0001]/_type":"HISTORY","/data[at0001]/archetype_node_id":"at0001","/data[at0001]/origin/_type":"DV_DATE_TIME","/data[at0001]/origin/value":"2020-05-11T22:53:12.039139+02:00","/data[at0001]/origin/magnitude":63724827192,"/data[at0001]/name/_type":"DV_TEXT","/data[at0001]/name/value":"Event Series","/archetype_node_id":"openEHR-EHR-OBSERVATION.story.v1","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"de","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-OBSERVATION.story.v1","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/name/_type":"DV_TEXT","/name/value":"Geschichte/Historie","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,2, 'openEHR-EHR-OBSERVATION.story.v1', 'OBSERVATION', '/content[openEHR-EHR-OBSERVATION.story.v1]', '{0}', '{0}', 1, '{"/data[at0001]/events[at0002]/_type":"POINT_EVENT","/data[at0001]/events[at0002]/data[at0003]/_type":"ITEM_TREE","/data[at0001]/events[at0002]/data[at0003]/archetype_node_id":"at0003","/data[at0001]/events[at0002]/data[at0003]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/name/value":"Tree","/data[at0001]/events[at0002]/archetype_node_id":"at0002","/data[at0001]/events[at0002]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/name/value":"Beliebiges Ereignis","/data[at0001]/events[at0002]/time/_type":"DV_DATE_TIME","/data[at0001]/events[at0002]/time/value":"2020-05-11T22:53:12.039139+02:00","/data[at0001]/events[at0002]/time/magnitude":63724827192}'),
+ (eid,cid,3, 'openEHR-EHR-OBSERVATION.story.v1', 'OBSERVATION', '/content[openEHR-EHR-OBSERVATION.story.v1]', '{0}', '{0,0}', 2, '{"/data[at0001]/events[at0002]/data[at0003]/items[at0004]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[at0004]/value/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0004]/value/value":"War in Ischgl"}'),
+ (eid,cid,4, 'openEHR-EHR-OBSERVATION.symptom_sign_screening.v0', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Symptome'']/items[openEHR-EHR-OBSERVATION.symptom_sign_screening.v0,''Husten'']', '{}', '{}', 0, '{"/_type":"OBSERVATION","/data[at0001]/_type":"HISTORY","/data[at0001]/archetype_node_id":"at0001","/data[at0001]/origin/_type":"DV_DATE_TIME","/data[at0001]/origin/value":"2020-05-11T22:53:12.039139+02:00","/data[at0001]/origin/magnitude":63724827192,"/data[at0001]/name/_type":"DV_TEXT","/data[at0001]/name/value":"History","/data[at0001]/events[at0002]/_type":"POINT_EVENT","/data[at0001]/events[at0002]/data[at0003]/_type":"ITEM_TREE","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/_type":"CLUSTER","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0004]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0004]/value/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0004]/value/value":"Husten","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/_type":"DV_CODED_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/value":"Vorhanden","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/_type":"CODE_PHRASE","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/terminology_id/value":"local","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/code_string":"at0023","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/archetype_node_id":"at0022","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/name/value":"Spezifisches Symptom/Anzeichen","/data[at0001]/events[at0002]/data[at0003]/archetype_node_id":"at0003","/data[at0001]/events[at0002]/data[at0003]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/name/value":"Tree","/data[at0001]/events[at0002]/archetype_node_id":"at0002","/data[at0001]/events[at0002]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/name/value":"Beliebiges Ereignis","/data[at0001]/events[at0002]/time/_type":"DV_DATE_TIME","/data[at0001]/events[at0002]/time/value":"2020-05-11T22:53:12.039139+02:00","/data[at0001]/events[at0002]/time/magnitude":63724827192,"/name/_type":"DV_TEXT","/name/value":"Husten","/archetype_node_id":"openEHR-EHR-OBSERVATION.symptom_sign_screening.v0","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"de","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-OBSERVATION.symptom_sign_screening.v0","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,5, 'openEHR-EHR-OBSERVATION.symptom_sign_screening.v0', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Symptome'']/items[openEHR-EHR-OBSERVATION.symptom_sign_screening.v0,''Schnupfen'']', '{}', '{}', 0, '{"/_type":"OBSERVATION","/data[at0001]/_type":"HISTORY","/data[at0001]/archetype_node_id":"at0001","/data[at0001]/origin/_type":"DV_DATE_TIME","/data[at0001]/origin/value":"2020-05-11T22:53:12.039139+02:00","/data[at0001]/origin/magnitude":63724827192,"/data[at0001]/name/_type":"DV_TEXT","/data[at0001]/name/value":"History","/data[at0001]/events[at0002]/_type":"POINT_EVENT","/data[at0001]/events[at0002]/data[at0003]/_type":"ITEM_TREE","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/_type":"CLUSTER","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0004]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0004]/value/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0004]/value/value":"Schnupfen","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/_type":"DV_CODED_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/value":"Vorhanden","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/_type":"CODE_PHRASE","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/terminology_id/value":"local","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/code_string":"at0023","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/archetype_node_id":"at0022","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/name/value":"Spezifisches Symptom/Anzeichen","/data[at0001]/events[at0002]/data[at0003]/archetype_node_id":"at0003","/data[at0001]/events[at0002]/data[at0003]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/name/value":"Tree","/data[at0001]/events[at0002]/archetype_node_id":"at0002","/data[at0001]/events[at0002]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/name/value":"Beliebiges Ereignis","/data[at0001]/events[at0002]/time/_type":"DV_DATE_TIME","/data[at0001]/events[at0002]/time/value":"2020-05-11T22:53:12.039139+02:00","/data[at0001]/events[at0002]/time/magnitude":63724827192,"/name/_type":"DV_TEXT","/name/value":"Schnupfen","/archetype_node_id":"openEHR-EHR-OBSERVATION.symptom_sign_screening.v0","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"de","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-OBSERVATION.symptom_sign_screening.v0","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,6, 'openEHR-EHR-OBSERVATION.symptom_sign_screening.v0', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Symptome'']/items[openEHR-EHR-OBSERVATION.symptom_sign_screening.v0,''Heiserkeit'']', '{}', '{}', 0, '{"/_type":"OBSERVATION","/data[at0001]/_type":"HISTORY","/data[at0001]/archetype_node_id":"at0001","/data[at0001]/origin/_type":"DV_DATE_TIME","/data[at0001]/origin/value":"2020-05-11T22:53:12.039139+02:00","/data[at0001]/origin/magnitude":63724827192,"/data[at0001]/name/_type":"DV_TEXT","/data[at0001]/name/value":"History","/data[at0001]/events[at0002]/_type":"POINT_EVENT","/data[at0001]/events[at0002]/data[at0003]/_type":"ITEM_TREE","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/_type":"CLUSTER","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0004]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0004]/value/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0004]/value/value":"Heiserkeit","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/_type":"DV_CODED_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/value":"Nicht vorhanden","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/_type":"CODE_PHRASE","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/terminology_id/value":"local","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/code_string":"at0024","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/archetype_node_id":"at0022","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/name/value":"Spezifisches Symptom/Anzeichen","/data[at0001]/events[at0002]/data[at0003]/archetype_node_id":"at0003","/data[at0001]/events[at0002]/data[at0003]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/name/value":"Tree","/data[at0001]/events[at0002]/archetype_node_id":"at0002","/data[at0001]/events[at0002]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/name/value":"Beliebiges Ereignis","/data[at0001]/events[at0002]/time/_type":"DV_DATE_TIME","/data[at0001]/events[at0002]/time/value":"2020-05-11T22:53:12.039139+02:00","/data[at0001]/events[at0002]/time/magnitude":63724827192,"/name/_type":"DV_TEXT","/name/value":"Heiserkeit","/archetype_node_id":"openEHR-EHR-OBSERVATION.symptom_sign_screening.v0","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"de","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-OBSERVATION.symptom_sign_screening.v0","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,7, 'openEHR-EHR-OBSERVATION.symptom_sign_screening.v0', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Symptome'']/items[openEHR-EHR-OBSERVATION.symptom_sign_screening.v0,''Fieber oder erhöhte Körpertemperatur'']', '{}', '{}', 0, '{"/_type":"OBSERVATION","/data[at0001]/_type":"HISTORY","/data[at0001]/archetype_node_id":"at0001","/data[at0001]/origin/_type":"DV_DATE_TIME","/data[at0001]/origin/value":"2020-05-11T22:53:12.039139+02:00","/data[at0001]/origin/magnitude":63724827192,"/data[at0001]/name/_type":"DV_TEXT","/data[at0001]/name/value":"History","/data[at0001]/events[at0002]/_type":"POINT_EVENT","/data[at0001]/events[at0002]/data[at0003]/_type":"ITEM_TREE","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/_type":"CLUSTER","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0004]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0004]/value/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0004]/value/value":"Fieber oder erhöhte Körpertemperatur","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/_type":"DV_CODED_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/value":"Vorhanden","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/_type":"CODE_PHRASE","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/terminology_id/value":"local","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/code_string":"at0023","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/archetype_node_id":"at0022","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/name/value":"Spezifisches Symptom/Anzeichen","/data[at0001]/events[at0002]/data[at0003]/archetype_node_id":"at0003","/data[at0001]/events[at0002]/data[at0003]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/name/value":"Tree","/data[at0001]/events[at0002]/archetype_node_id":"at0002","/data[at0001]/events[at0002]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/name/value":"Beliebiges Ereignis","/data[at0001]/events[at0002]/time/_type":"DV_DATE_TIME","/data[at0001]/events[at0002]/time/value":"2020-05-11T22:53:12.039139+02:00","/data[at0001]/events[at0002]/time/magnitude":63724827192,"/name/_type":"DV_TEXT","/name/value":"Fieber oder erhöhte Körpertemperatur","/archetype_node_id":"openEHR-EHR-OBSERVATION.symptom_sign_screening.v0","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"de","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-OBSERVATION.symptom_sign_screening.v0","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,8, 'openEHR-EHR-OBSERVATION.body_temperature.v2', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Symptome'']/items[openEHR-EHR-OBSERVATION.body_temperature.v2]', '{}', '{}', 0, '{"/_type":"OBSERVATION","/data[at0002]/_type":"HISTORY","/data[at0002]/archetype_node_id":"at0002","/data[at0002]/origin/_type":"DV_DATE_TIME","/data[at0002]/origin/value":"2020-05-11T22:53:12.039139+02:00","/data[at0002]/origin/magnitude":63724827192,"/data[at0002]/name/_type":"DV_TEXT","/data[at0002]/name/value":"History","/data[at0002]/events[at0003]/_type":"POINT_EVENT","/data[at0002]/events[at0003]/data[at0001]/_type":"ITEM_TREE","/data[at0002]/events[at0003]/data[at0001]/items[at0004]/_type":"ELEMENT","/data[at0002]/events[at0003]/data[at0001]/items[at0004]/value/_type":"DV_QUANTITY","/data[at0002]/events[at0003]/data[at0001]/items[at0004]/value/units":"°C","/data[at0002]/events[at0003]/data[at0001]/items[at0004]/value/magnitude":39.0,"/data[at0002]/events[at0003]/data[at0001]/archetype_node_id":"at0001","/data[at0002]/events[at0003]/data[at0001]/name/_type":"DV_TEXT","/data[at0002]/events[at0003]/data[at0001]/name/value":"Single","/data[at0002]/events[at0003]/archetype_node_id":"at0003","/data[at0002]/events[at0003]/name/_type":"DV_TEXT","/data[at0002]/events[at0003]/name/value":"Beliebiges Ereignis","/data[at0002]/events[at0003]/time/_type":"DV_DATE_TIME","/data[at0002]/events[at0003]/time/value":"2020-05-11T22:53:12.039139+02:00","/data[at0002]/events[at0003]/time/magnitude":63724827192,"/archetype_node_id":"openEHR-EHR-OBSERVATION.body_temperature.v2","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"de","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-OBSERVATION.body_temperature.v2","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/name/_type":"DV_TEXT","/name/value":"Körpertemperatur","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,9, 'openEHR-EHR-OBSERVATION.symptom_sign_screening.v0', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Symptome'']/items[openEHR-EHR-OBSERVATION.symptom_sign_screening.v0,''Gestörter Geruchssinn'']', '{}', '{}', 0, '{"/_type":"OBSERVATION","/data[at0001]/_type":"HISTORY","/data[at0001]/archetype_node_id":"at0001","/data[at0001]/origin/_type":"DV_DATE_TIME","/data[at0001]/origin/value":"2020-05-11T22:53:12.039139+02:00","/data[at0001]/origin/magnitude":63724827192,"/data[at0001]/name/_type":"DV_TEXT","/data[at0001]/name/value":"History","/data[at0001]/events[at0002]/_type":"POINT_EVENT","/data[at0001]/events[at0002]/data[at0003]/_type":"ITEM_TREE","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/_type":"CLUSTER","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0004]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0004]/value/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0004]/value/value":"gestörter Geruchssinn","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/_type":"DV_CODED_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/value":"Nicht vorhanden","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/_type":"CODE_PHRASE","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/terminology_id/value":"local","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/code_string":"at0024","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/archetype_node_id":"at0022","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/name/value":"Spezifisches Symptom/Anzeichen","/data[at0001]/events[at0002]/data[at0003]/archetype_node_id":"at0003","/data[at0001]/events[at0002]/data[at0003]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/name/value":"Tree","/data[at0001]/events[at0002]/archetype_node_id":"at0002","/data[at0001]/events[at0002]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/name/value":"Beliebiges Ereignis","/data[at0001]/events[at0002]/time/_type":"DV_DATE_TIME","/data[at0001]/events[at0002]/time/value":"2020-05-11T22:53:12.039139+02:00","/data[at0001]/events[at0002]/time/magnitude":63724827192,"/name/_type":"DV_TEXT","/name/value":"Gestörter Geruchssinn","/archetype_node_id":"openEHR-EHR-OBSERVATION.symptom_sign_screening.v0","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"de","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-OBSERVATION.symptom_sign_screening.v0","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,10, 'openEHR-EHR-OBSERVATION.symptom_sign_screening.v0', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Symptome'']/items[openEHR-EHR-OBSERVATION.symptom_sign_screening.v0,''Gestörter Geschmackssinn'']', '{}', '{}', 0, '{"/_type":"OBSERVATION","/data[at0001]/_type":"HISTORY","/data[at0001]/archetype_node_id":"at0001","/data[at0001]/origin/_type":"DV_DATE_TIME","/data[at0001]/origin/value":"2020-05-11T22:53:12.039139+02:00","/data[at0001]/origin/magnitude":63724827192,"/data[at0001]/name/_type":"DV_TEXT","/data[at0001]/name/value":"History","/data[at0001]/events[at0002]/_type":"POINT_EVENT","/data[at0001]/events[at0002]/data[at0003]/_type":"ITEM_TREE","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/_type":"CLUSTER","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0004]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0004]/value/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0004]/value/value":"gestörter Geschmackssinn","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/_type":"DV_CODED_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/value":"Nicht vorhanden","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/_type":"CODE_PHRASE","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/terminology_id/value":"local","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/code_string":"at0024","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/archetype_node_id":"at0022","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/name/value":"Spezifisches Symptom/Anzeichen","/data[at0001]/events[at0002]/data[at0003]/archetype_node_id":"at0003","/data[at0001]/events[at0002]/data[at0003]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/name/value":"Tree","/data[at0001]/events[at0002]/archetype_node_id":"at0002","/data[at0001]/events[at0002]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/name/value":"Beliebiges Ereignis","/data[at0001]/events[at0002]/time/_type":"DV_DATE_TIME","/data[at0001]/events[at0002]/time/value":"2020-05-11T22:53:12.039139+02:00","/data[at0001]/events[at0002]/time/magnitude":63724827192,"/name/_type":"DV_TEXT","/name/value":"Gestörter Geschmackssinn","/archetype_node_id":"openEHR-EHR-OBSERVATION.symptom_sign_screening.v0","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"de","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-OBSERVATION.symptom_sign_screening.v0","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,11, 'openEHR-EHR-OBSERVATION.symptom_sign_screening.v0', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Symptome'']/items[openEHR-EHR-OBSERVATION.symptom_sign_screening.v0,''Durchfall'']', '{}', '{}', 0, '{"/_type":"OBSERVATION","/data[at0001]/_type":"HISTORY","/data[at0001]/archetype_node_id":"at0001","/data[at0001]/origin/_type":"DV_DATE_TIME","/data[at0001]/origin/value":"2020-05-11T22:53:12.039139+02:00","/data[at0001]/origin/magnitude":63724827192,"/data[at0001]/name/_type":"DV_TEXT","/data[at0001]/name/value":"History","/data[at0001]/events[at0002]/_type":"POINT_EVENT","/data[at0001]/events[at0002]/data[at0003]/_type":"ITEM_TREE","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/_type":"CLUSTER","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0004]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0004]/value/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0004]/value/value":"Durchfall","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/_type":"DV_CODED_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/value":"Nicht vorhanden","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/_type":"CODE_PHRASE","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/terminology_id/value":"local","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/code_string":"at0024","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/archetype_node_id":"at0022","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0022]/name/value":"Spezifisches Symptom/Anzeichen","/data[at0001]/events[at0002]/data[at0003]/archetype_node_id":"at0003","/data[at0001]/events[at0002]/data[at0003]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/name/value":"Tree","/data[at0001]/events[at0002]/archetype_node_id":"at0002","/data[at0001]/events[at0002]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/name/value":"Beliebiges Ereignis","/data[at0001]/events[at0002]/time/_type":"DV_DATE_TIME","/data[at0001]/events[at0002]/time/value":"2020-05-11T22:53:12.039139+02:00","/data[at0001]/events[at0002]/time/magnitude":63724827192,"/name/_type":"DV_TEXT","/name/value":"Durchfall","/archetype_node_id":"openEHR-EHR-OBSERVATION.symptom_sign_screening.v0","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"de","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-OBSERVATION.symptom_sign_screening.v0","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,12, 'openEHR-EHR-OBSERVATION.travel_history.v0', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Risikogebiet'']/items[openEHR-EHR-OBSERVATION.travel_history.v0]', '{0}', '{}', 0, '{"/_type":"OBSERVATION","/data[at0001]/_type":"HISTORY","/data[at0001]/archetype_node_id":"at0001","/data[at0001]/origin/_type":"DV_DATE_TIME","/data[at0001]/origin/value":"2020-05-11T22:53:12.039139+02:00","/data[at0001]/origin/magnitude":63724827192,"/data[at0001]/name/_type":"DV_TEXT","/data[at0001]/name/value":"History","/data[at0001]/events[at0002]/_type":"POINT_EVENT","/data[at0001]/events[at0002]/data[at0003]/_type":"ITEM_TREE","/data[at0001]/events[at0002]/data[at0003]/items[at0111,''Aufenthalt in den letzten 14 Tage in einem der Risikogebiete für Coronainfektion oder Kontakt zu Menschen, die dort waren'']/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[at0111,''Aufenthalt in den letzten 14 Tage in einem der Risikogebiete für Coronainfektion oder Kontakt zu Menschen, die dort waren'']/value/_type":"DV_CODED_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0111,''Aufenthalt in den letzten 14 Tage in einem der Risikogebiete für Coronainfektion oder Kontakt zu Menschen, die dort waren'']/value/value":"Ja","/data[at0001]/events[at0002]/data[at0003]/items[at0111,''Aufenthalt in den letzten 14 Tage in einem der Risikogebiete für Coronainfektion oder Kontakt zu Menschen, die dort waren'']/value/defining_code/_type":"CODE_PHRASE","/data[at0001]/events[at0002]/data[at0003]/items[at0111,''Aufenthalt in den letzten 14 Tage in einem der Risikogebiete für Coronainfektion oder Kontakt zu Menschen, die dort waren'']/value/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/events[at0002]/data[at0003]/items[at0111,''Aufenthalt in den letzten 14 Tage in einem der Risikogebiete für Coronainfektion oder Kontakt zu Menschen, die dort waren'']/value/defining_code/terminology_id/value":"local","/data[at0001]/events[at0002]/data[at0003]/items[at0111,''Aufenthalt in den letzten 14 Tage in einem der Risikogebiete für Coronainfektion oder Kontakt zu Menschen, die dort waren'']/value/defining_code/code_string":"at0112","/data[at0001]/events[at0002]/data[at0003]/items[at0111,''Aufenthalt in den letzten 14 Tage in einem der Risikogebiete für Coronainfektion oder Kontakt zu Menschen, die dort waren'']/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0111,''Aufenthalt in den letzten 14 Tage in einem der Risikogebiete für Coronainfektion oder Kontakt zu Menschen, die dort waren'']/name/value":"Aufenthalt in den letzten 14 Tage in einem der Risikogebiete für Coronainfektion oder Kontakt zu Menschen, die dort waren","/data[at0001]/events[at0002]/data[at0003]/items[at0134]/_type":"CLUSTER","/data[at0001]/events[at0002]/data[at0003]/items[at0134]/items[openEHR-EHR-CLUSTER.location.v1]/_type":"CLUSTER","/data[at0001]/events[at0002]/data[at0003]/items[at0134]/items[openEHR-EHR-CLUSTER.location.v1]/items[at0046]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[at0134]/items[openEHR-EHR-CLUSTER.location.v1]/items[at0046]/value/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0134]/items[openEHR-EHR-CLUSTER.location.v1]/items[at0046]/value/value":"Norditalien","/data[at0001]/events[at0002]/data[at0003]/items[at0134]/items[openEHR-EHR-CLUSTER.location.v1]/archetype_details/archetype_id/value":"openEHR-EHR-CLUSTER.location.v1","/data[at0001]/events[at0002]/data[at0003]/items[at0134]/items[openEHR-EHR-CLUSTER.location.v1]/archetype_details/rm_version":"1.0.4","/data[at0001]/events[at0002]/data[at0003]/items[at0134]/items[openEHR-EHR-CLUSTER.location.v1]/archetype_details/_type":"ARCHETYPED","/data[at0001]/events[at0002]/data[at0003]/items[at0134]/items[openEHR-EHR-CLUSTER.location.v1]/archetype_node_id":"openEHR-EHR-CLUSTER.location.v1","/data[at0001]/events[at0002]/data[at0003]/items[at0134]/items[openEHR-EHR-CLUSTER.location.v1]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0134]/items[openEHR-EHR-CLUSTER.location.v1]/name/value":"Standort","/data[at0001]/events[at0002]/data[at0003]/items[at0134]/archetype_node_id":"at0134","/data[at0001]/events[at0002]/data[at0003]/items[at0134]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0134]/name/value":"Ortsbeschreibung","/data[at0001]/events[at0002]/data[at0003]/archetype_node_id":"at0003","/data[at0001]/events[at0002]/data[at0003]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/name/value":"Tree","/data[at0001]/events[at0002]/archetype_node_id":"at0002","/data[at0001]/events[at0002]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/name/value":"Jedes Ereignis","/data[at0001]/events[at0002]/time/_type":"DV_DATE_TIME","/data[at0001]/events[at0002]/time/value":"2020-05-11T22:53:12.039139+02:00","/data[at0001]/events[at0002]/time/magnitude":63724827192,"/archetype_node_id":"openEHR-EHR-OBSERVATION.travel_history.v0","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"de","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-OBSERVATION.travel_history.v0","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/name/_type":"DV_TEXT","/name/value":"Historie der Reise","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,13, 'openEHR-EHR-OBSERVATION.travel_event.v0', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Risikogebiet'']/items[openEHR-EHR-OBSERVATION.travel_event.v0]', '{0}', '{}', 0, '{"/_type":"OBSERVATION","/data[at0001]/_type":"HISTORY","/data[at0001]/archetype_node_id":"at0001","/data[at0001]/origin/_type":"DV_DATE_TIME","/data[at0001]/origin/value":"2020-05-11T22:53:12.039139+02:00","/data[at0001]/origin/magnitude":63724827192,"/data[at0001]/name/_type":"DV_TEXT","/data[at0001]/name/value":"History","/archetype_node_id":"openEHR-EHR-OBSERVATION.travel_event.v0","/language/_type":"CODE_PHRASE","/language/terminology_id/_type":"TERMINOLOGY_ID","/language/terminology_id/value":"ISO_639-1","/language/code_string":"de","/encoding/_type":"CODE_PHRASE","/encoding/terminology_id/_type":"TERMINOLOGY_ID","/encoding/terminology_id/value":"IANA_character-sets","/encoding/code_string":"UTF-8","/archetype_details/archetype_id/value":"openEHR-EHR-OBSERVATION.travel_event.v0","/archetype_details/rm_version":"1.0.4","/archetype_details/_type":"ARCHETYPED","/name/_type":"DV_TEXT","/name/value":"Reisefall","/subject/_type":"PARTY_SELF"}'),
+ (eid,cid,14, 'openEHR-EHR-OBSERVATION.travel_event.v0', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Risikogebiet'']/items[openEHR-EHR-OBSERVATION.travel_event.v0]', '{0}', '{0}', 1, '{"/data[at0001]/events[at0002]/_type":"INTERVAL_EVENT","/data[at0001]/events[at0002]/data[at0003]/_type":"ITEM_TREE","/data[at0001]/events[at0002]/data[at0003]/items[at0004,''Letzte Reise?'']/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[at0004,''Letzte Reise?'']/value/_type":"DV_CODED_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0004,''Letzte Reise?'']/value/value":"Ja - national","/data[at0001]/events[at0002]/data[at0003]/items[at0004,''Letzte Reise?'']/value/defining_code/_type":"CODE_PHRASE","/data[at0001]/events[at0002]/data[at0003]/items[at0004,''Letzte Reise?'']/value/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/events[at0002]/data[at0003]/items[at0004,''Letzte Reise?'']/value/defining_code/terminology_id/value":"local","/data[at0001]/events[at0002]/data[at0003]/items[at0004,''Letzte Reise?'']/value/defining_code/code_string":"at0006","/data[at0001]/events[at0002]/data[at0003]/items[at0004,''Letzte Reise?'']/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0004,''Letzte Reise?'']/name/value":"Letzte Reise?","/data[at0001]/events[at0002]/data[at0003]/archetype_node_id":"at0003","/data[at0001]/events[at0002]/data[at0003]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/name/value":"Tree","/data[at0001]/events[at0002]/archetype_node_id":"at0002","/data[at0001]/events[at0002]/math_function/_type":"DV_CODED_TEXT","/data[at0001]/events[at0002]/math_function/value":"mean","/data[at0001]/events[at0002]/math_function/defining_code/_type":"CODE_PHRASE","/data[at0001]/events[at0002]/math_function/defining_code/terminology_id/_type":"TERMINOLOGY_ID","/data[at0001]/events[at0002]/math_function/defining_code/terminology_id/value":"openehr","/data[at0001]/events[at0002]/math_function/defining_code/code_string":"146","/data[at0001]/events[at0002]/width/_type":"DV_DURATION","/data[at0001]/events[at0002]/width/value":"P0D","/data[at0001]/events[at0002]/width/magnitude":0.0,"/data[at0001]/events[at0002]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/name/value":"Beliebiges Intervallereignis","/data[at0001]/events[at0002]/time/_type":"DV_DATE_TIME","/data[at0001]/events[at0002]/time/value":"2020-05-11T22:53:12.039139+02:00","/data[at0001]/events[at0002]/time/magnitude":63724827192}'),
+ (eid,cid,15, 'openEHR-EHR-OBSERVATION.travel_event.v0', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Risikogebiet'']/items[openEHR-EHR-OBSERVATION.travel_event.v0]', '{0}', '{0,0}', 2, '{"/data[at0001]/events[at0002]/data[at0003]/items[at0008]/_type":"CLUSTER","/data[at0001]/events[at0002]/data[at0003]/items[at0008]/archetype_node_id":"at0008","/data[at0001]/events[at0002]/data[at0003]/items[at0008]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0008]/name/value":"Bestimmte Reise"}'),
+ (eid,cid,16, 'openEHR-EHR-OBSERVATION.travel_event.v0', 'OBSERVATION', '/content[openEHR-EHR-SECTION.adhoc.v1,''Risikogebiet'']/items[openEHR-EHR-OBSERVATION.travel_event.v0]', '{0}', '{0,0,0}', 3, '{"/data[at0001]/events[at0002]/data[at0003]/items[at0008]/items[at0010]/_type":"CLUSTER","/data[at0001]/events[at0002]/data[at0003]/items[at0008]/items[at0010]/items[at0011]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[at0008]/items[at0010]/items[at0011]/value/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0008]/items[at0010]/items[at0011]/value/value":"Deutschland","/data[at0001]/events[at0002]/data[at0003]/items[at0008]/items[at0010]/items[at0012]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[at0008]/items[at0010]/items[at0012]/value/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0008]/items[at0010]/items[at0012]/value/value":"Baden-Württemberg","/data[at0001]/events[at0002]/data[at0003]/items[at0008]/items[at0010]/items[at0013]/_type":"ELEMENT","/data[at0001]/events[at0002]/data[at0003]/items[at0008]/items[at0010]/items[at0013]/value/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0008]/items[at0010]/items[at0013]/value/value":"Mannheim","/data[at0001]/events[at0002]/data[at0003]/items[at0008]/items[at0010]/archetype_node_id":"at0010","/data[at0001]/events[at0002]/data[at0003]/items[at0008]/items[at0010]/name/_type":"DV_TEXT","/data[at0001]/events[at0002]/data[at0003]/items[at0008]/items[at0010]/name/value":"Bestimmtes Reiseziel"}');
+ END LOOP;
+ END LOOP;
+ END;
+$$;
+
+commit;
+
+set yb_enable_expression_pushdown = on;
+
+-- select example ehrId;
+select distinct ehr_id
+from ehr.entry2
+where (rm_entity = 'COMPOSITION')
+ and field_idx_len = 0
+limit 2;
+
+-- set example ehrId
+SET ehr.id = '159dcd5f-a2cb-4c1a-9a55-626f823baa44';
+-- SET ehr.id = '0119934e-b2d9-447a-ad38-67dfb47b5d01';
+
+-- get patient count
+select count(distinct ehr_id)
+from ehr.entry2
+where (rm_entity = 'COMPOSITION')
+ and field_idx_len = 0;
+
+-- get document count
+select count(comp_id)
+from ehr.entry2
+where (rm_entity = 'COMPOSITION')
+ and field_idx_len = 0;
+
+
+-- Get second page of measurements with page size 10 which indicated high temperature and their time
+set enable_hashjoin = on;
+set enable_nestloop = on;
+explain analyse
+select "array_599434088_1".*, "array_599434088_2".*
+from (select e2.ehr_id, e2.comp_id, fields ->> '/context/start_time/value'::text as "time",(fields -> '/context/start_time/magnitude')::numeric as "time_magnitude"
+ from ehr.entry2 e2
+ where (rm_entity = 'COMPOSITION')
+ and field_idx_len = 0
+ and ehr_id = current_setting('ehr.id')::uuid) as "array_599434088_1"
+ join lateral ( select (fields -> '/data[at0002]/events[at0003]/data[at0001]/items[at0004]/value/magnitude')::numeric
+ from ehr.entry2 e3
+ where (entity_concept = 'openEHR-EHR-OBSERVATION.body_temperature.v2')
+ and field_idx_len = 0
+ and ehr_id = current_setting('ehr.id')::uuid
+ and (fields ->
+ '/data[at0002]/events[at0003]/data[at0001]/items[at0004]/value/magnitude')::numeric >
+ 37.5
+ and array_599434088_1.comp_id = e3.comp_id ) as "array_599434088_2" on true
+order by "array_599434088_1"."time_magnitude"
+limit 10 offset 10
+;
+-- Get latest 'Corona_Anamnese' document for a specific patient
+set enable_hashjoin = on;
+set enable_nestloop = on;
+explain analyse
+select array_599434088_2.*
+from (select e2.comp_id, fields ->> '/archetype_details/template_id/value'
+ from ehr.entry2 e2
+ where (rm_entity = 'COMPOSITION')
+ and field_idx_len = 0
+ and fields ->> '/archetype_details/template_id/value' = 'Corona_Anamnese'
+ and ehr_id = current_setting('ehr.id')::uuid
+ limit 1) as "array_599434088_1"
+ join lateral ( select * from ehr.entry2 e3 where e3.comp_id = array_599434088_1.comp_id ) as "array_599434088_2"
+ on true;
+
+
+
+--Get all patients which have a specific diagnosis for a specific health care facility
+-- To big for hash join
+set enable_hashjoin = off;
+set enable_nestloop = on;
+explain analyse
+select distinct array_599434088_2.ehr_id
+from (select e2.comp_id, e2.entity_concept, fields ->> '/composer/name' as "composer"
+ from ehr.entry2 e2
+ where (rm_entity = 'COMPOSITION')
+ and field_idx_len = 0
+ and fields ->> '/composer/name' = 'Silvia Blake'
+ ) as "array_599434088_1"
+ join lateral ( select ehr_id
+ from ehr.entry2 e3
+ where entity_concept = 'openEHR-EHR-EVALUATION.problem_diagnosis.v1'
+ and field_idx_len = 0
+ and fields ->> '/data[at0001]/items[at0002]/value/value' = 'Problem/Diagnosis name 10'
+ and e3.comp_id = array_599434088_1.comp_id ) as "array_599434088_2" on true;
+
+
+
+-- deep select
+
+-- the default just uses hash on the first join
+set enable_nestloop = off;
+set enable_hashjoin = on;
+
+explain analyse
+select array_599434088_1.comp_id,
+ array_599434088_1.composer,
+ array_599434088_2.subject,
+ array_599434088_3.time,
+ array_599434088_4.art,
+ array_599434088_5.ziel
+from (select e2.comp_id, e2.entity_concept, fields ->> '/composer/name' as "composer"
+ from ehr.entry2 e2
+ where (rm_entity = 'COMPOSITION')
+ and field_idx_len = 0
+ and ehr_id = current_setting('ehr.id')::uuid) as "array_599434088_1"
+ join lateral ( select e3.comp_id, fields ->> '/subject/_type' as "subject"
+ from ehr.entry2 e3
+ where entity_concept = 'openEHR-EHR-OBSERVATION.travel_event.v0'
+ and field_idx_len = 0
+ and ehr_id = current_setting('ehr.id')::uuid
+ and e3.comp_id = array_599434088_1.comp_id ) as "array_599434088_2" on true
+ join lateral ( select e4.comp_id,
+ e4.field_idx[1] as "R0",
+ fields ->> '/data[at0001]/events[at0002]/time/value' as "time"
+ from ehr.entry2 e4
+ where entity_concept = 'openEHR-EHR-OBSERVATION.travel_event.v0'
+ and field_idx_len = 1
+ and ehr_id = current_setting('ehr.id')::uuid
+ and e4.comp_id = array_599434088_2.comp_id ) as "array_599434088_3" on true
+ join lateral ( select e5.comp_id,
+ e5.field_idx[1] as "R0",
+ e5.field_idx[2] as "R1",
+ fields ->> '/data[at0001]/events[at0002]/data[at0003]/items[at0008]/name/value' as "art"
+ from ehr.entry2 e5
+ where entity_concept = 'openEHR-EHR-OBSERVATION.travel_event.v0'
+ and field_idx_len = 2
+ and ehr_id = current_setting('ehr.id')::uuid
+ and e5.comp_id = array_599434088_3.comp_id
+ and e5.field_idx[1] = array_599434088_3."R0") as "array_599434088_4" on true
+ join lateral ( select fields ->>
+ '/data[at0001]/events[at0002]/data[at0003]/items[at0008]/items[at0010]/items[at0011]/value/value' as "ziel"
+ from ehr.entry2 e6
+ where entity_concept = 'openEHR-EHR-OBSERVATION.travel_event.v0'
+ and field_idx_len = 3
+ and ehr_id = current_setting('ehr.id')::uuid
+ and e6.comp_id = array_599434088_3.comp_id
+ and e6.field_idx[1] = array_599434088_4."R0"
+ and e6.field_idx[2] = array_599434088_4."R1") as "array_599434088_5" on true;
+
+
+
+
+
+
diff --git a/bom/pom.xml b/bom/pom.xml
index 2d7e870e2..bd563be9e 100644
--- a/bom/pom.xml
+++ b/bom/pom.xml
@@ -228,6 +228,11 @@
commons-io
${commons-io.version}
+
+ org.apache.commons
+ commons-csv
+ 1.9.0
+
org.apache.commons
commons-text
diff --git a/serialisation/src/main/java/org/ehrbase/serialisation/jsonencoding/CanonicalJson.java b/serialisation/src/main/java/org/ehrbase/serialisation/jsonencoding/CanonicalJson.java
index 8595ebc4c..1d30fd32f 100644
--- a/serialisation/src/main/java/org/ehrbase/serialisation/jsonencoding/CanonicalJson.java
+++ b/serialisation/src/main/java/org/ehrbase/serialisation/jsonencoding/CanonicalJson.java
@@ -58,7 +58,7 @@
public class CanonicalJson implements RMDataFormat {
- private static final ObjectMapper MARSHAL_OM =
+ public static final ObjectMapper MARSHAL_OM =
ArchieObjectMapperProvider.getObjectMapper().copy();
static {
diff --git a/serialisation/src/main/java/org/ehrbase/serialisation/matrixencoding/CodeGenerator.java b/serialisation/src/main/java/org/ehrbase/serialisation/matrixencoding/CodeGenerator.java
new file mode 100644
index 000000000..25f4e490b
--- /dev/null
+++ b/serialisation/src/main/java/org/ehrbase/serialisation/matrixencoding/CodeGenerator.java
@@ -0,0 +1,55 @@
+/*
+ * Copyright (c) 2022 vitasystems GmbH and Hannover Medical School.
+ *
+ * This file is part of project openEHR_SDK
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * https://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.ehrbase.serialisation.matrixencoding;
+
+import java.util.Arrays;
+import java.util.List;
+import java.util.stream.Collectors;
+import org.apache.commons.lang3.ArrayUtils;
+
+/**
+ * @author Stefan Spiska
+ */
+public class CodeGenerator {
+
+ private static List code = List.of(
+ "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "y", "z", "1",
+ "2", "3", "4", "5", "6", "7", "8", "9", "0");
+
+ int current = 0;
+
+ public String next() {
+
+ String collect = Arrays.stream(split(current)).map(code::get).collect(Collectors.joining());
+ current++;
+ return collect;
+ }
+
+ private Integer[] split(int i) {
+
+ Integer[] result = new Integer[1];
+
+ result[0] = i % code.size();
+
+ if (i / code.size() > 0) {
+ return ArrayUtils.addAll(split(i / code.size()), result);
+ }
+
+ return result;
+ }
+}
diff --git a/serialisation/src/main/java/org/ehrbase/serialisation/matrixencoding/CompositionToMatrixWalker.java b/serialisation/src/main/java/org/ehrbase/serialisation/matrixencoding/CompositionToMatrixWalker.java
new file mode 100644
index 000000000..750bbcb96
--- /dev/null
+++ b/serialisation/src/main/java/org/ehrbase/serialisation/matrixencoding/CompositionToMatrixWalker.java
@@ -0,0 +1,305 @@
+/*
+ * Copyright (c) 2022 vitasystems GmbH and Hannover Medical School.
+ *
+ * This file is part of project openEHR_SDK
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * https://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.ehrbase.serialisation.matrixencoding;
+
+import static org.ehrbase.serialisation.jsonencoding.CanonicalJson.MARSHAL_OM;
+import static org.ehrbase.serialisation.matrixencoding.MatrixUtil.addMissingChildren;
+
+import com.fasterxml.jackson.core.JsonProcessingException;
+import com.fasterxml.jackson.databind.JsonNode;
+import com.fasterxml.jackson.databind.node.ArrayNode;
+import com.fasterxml.jackson.databind.node.BooleanNode;
+import com.fasterxml.jackson.databind.node.NumericNode;
+import com.fasterxml.jackson.databind.node.ObjectNode;
+import com.fasterxml.jackson.databind.node.POJONode;
+import com.fasterxml.jackson.databind.node.ValueNode;
+import com.nedap.archie.rm.RMObject;
+import com.nedap.archie.rm.archetyped.Archetyped;
+import com.nedap.archie.rm.archetyped.Locatable;
+import com.nedap.archie.rm.composition.Activity;
+import com.nedap.archie.rm.composition.EventContext;
+import com.nedap.archie.rm.datastructures.Element;
+import com.nedap.archie.rm.datastructures.IntervalEvent;
+import com.nedap.archie.rm.datavalues.quantity.DvInterval;
+import com.nedap.archie.rm.datavalues.quantity.datetime.DvDate;
+import com.nedap.archie.rm.datavalues.quantity.datetime.DvDateTime;
+import com.nedap.archie.rm.datavalues.quantity.datetime.DvDuration;
+import com.nedap.archie.rm.datavalues.quantity.datetime.DvTime;
+import java.util.Iterator;
+import java.util.LinkedHashMap;
+import java.util.List;
+import java.util.Map;
+import org.apache.commons.lang3.StringUtils;
+import org.ehrbase.aql.dto.path.AqlPath;
+import org.ehrbase.serialisation.walker.Context;
+import org.ehrbase.serialisation.walker.FromCompositionWalker;
+import org.ehrbase.serialisation.walker.RmPrimitive;
+import org.ehrbase.util.exception.SdkException;
+import org.ehrbase.webtemplate.model.WebTemplateNode;
+
+/**
+ * @author Stefan Spiska
+ */
+public class CompositionToMatrixWalker extends FromCompositionWalker {
+
+ public static final String MAGNITUDE = "/magnitude";
+ private List resolveTo = List.of("OBSERVATION", "EVALUATION", "INSTRUCTION", "ACTION", "ADMIN_ENTRY");
+
+ @Override
+ protected FromWalkerDto extract(
+ Context context, WebTemplateNode child, boolean isChoice, Integer i) {
+
+ FromWalkerDto next = new FromWalkerDto(context.getObjectDeque().peek());
+
+ // this belongs to composition thus COMPOSITION is the root
+ if (List.of("context", "links", "feeder_audit").contains(child.getId())
+ && context.getNodeDeque().peek().getRmType().equals("COMPOSITION")) {
+ next.setRootFound(true);
+ }
+
+ // Is this a RM type to which we resolve to, then add a new Entity
+ if (child.getNodeId() != null
+ && findTypeName(child.getNodeId()) != null
+ && resolveTo.contains(findTypeName(child.getNodeId()))) {
+
+ Entity nextEntity = new Entity(next.getCurrentEntity());
+ nextEntity.setArchetypeId(child.getNodeId());
+ nextEntity.setPathFromRoot(
+ child.getAqlPathDto().removeStart(next.getCurrentEntity().getPathFromRoot()));
+ if (i != null) {
+ nextEntity.getEntityIdx().add(child.getAqlPath(), i);
+ }
+ next.updateEntity(nextEntity);
+ next.setRootFound(true);
+ // increment index
+ } else {
+
+ if (i != null) {
+
+ if (next.isRootFound()) {
+ next.getCurrentFieldIndex().add(child.getAqlPath(), i);
+ next.getMatrix()
+ .get(next.getCurrentEntity())
+ .put(next.getCurrentFieldIndex(), new LinkedHashMap<>());
+ } else {
+ next.getCurrentEntity().getEntityIdx().add(child.getAqlPath(), i);
+ if (!next.getMatrix().containsKey(next.getCurrentEntity())) {
+ next.getMatrix().put(next.getCurrentEntity(), new LinkedHashMap<>());
+ }
+ next.getMatrix()
+ .get(next.getCurrentEntity())
+ .put(next.getCurrentFieldIndex(), new LinkedHashMap<>());
+ }
+ }
+ }
+
+ addMissingChildren(child);
+
+ return next;
+ }
+
+ @Override
+ protected void preHandle(Context context) {
+
+ WebTemplateNode node = context.getNodeDeque().peek();
+ FromWalkerDto fromWalkerDto = context.getObjectDeque().peek();
+ RMObject rmObject = context.getRmObjectDeque().peek();
+ AqlPath relativ = node.getAqlPathDto()
+ .removeStart(fromWalkerDto.getCurrentEntity().getPathFromRoot());
+ if (!visitChildren(node)) {
+
+ if (rmObject instanceof RmPrimitive) {
+ fromWalkerDto
+ .getMatrix()
+ .get(fromWalkerDto.getCurrentEntity())
+ .get(fromWalkerDto.getCurrentFieldIndex())
+ .put(relativ, ((RmPrimitive>) rmObject).getValue());
+ } else {
+ fromWalkerDto
+ .getMatrix()
+ .get(fromWalkerDto.getCurrentEntity())
+ .get(fromWalkerDto.getCurrentFieldIndex())
+ .putAll(flatten(relativ, MARSHAL_OM.valueToTree(rmObject)));
+ }
+
+ if (rmObject instanceof Archetyped) {
+ fromWalkerDto
+ .getMatrix()
+ .get(fromWalkerDto.getCurrentEntity())
+ .get(fromWalkerDto.getCurrentFieldIndex())
+ .put(relativ.addEnd("/_type"), "ARCHETYPED");
+ }
+
+ addMagnitude(fromWalkerDto, rmObject, relativ);
+
+ } else {
+ // add the type
+ fromWalkerDto
+ .getMatrix()
+ .get(fromWalkerDto.getCurrentEntity())
+ .get(fromWalkerDto.getCurrentFieldIndex())
+ .put(relativ.addEnd("/_type"), node.getRmType());
+ }
+ }
+
+ /**
+ * Add the magnitude field to be used for comparison in the db.
+ * @param fromWalkerDto
+ * @param rmObject
+ * @param relativ
+ */
+ private static void addMagnitude(FromWalkerDto fromWalkerDto, RMObject rmObject, AqlPath relativ) {
+ if (rmObject instanceof DvTime) {
+ fromWalkerDto
+ .getMatrix()
+ .get(fromWalkerDto.getCurrentEntity())
+ .get(fromWalkerDto.getCurrentFieldIndex())
+ .put(relativ.addEnd(MAGNITUDE), ((DvTime) rmObject).getMagnitude());
+ }
+ if (rmObject instanceof DvDate) {
+ fromWalkerDto
+ .getMatrix()
+ .get(fromWalkerDto.getCurrentEntity())
+ .get(fromWalkerDto.getCurrentFieldIndex())
+ .put(relativ.addEnd(MAGNITUDE), ((DvDate) rmObject).getMagnitude());
+ }
+ if (rmObject instanceof DvDateTime) {
+ fromWalkerDto
+ .getMatrix()
+ .get(fromWalkerDto.getCurrentEntity())
+ .get(fromWalkerDto.getCurrentFieldIndex())
+ .put(relativ.addEnd(MAGNITUDE), ((DvDateTime) rmObject).getMagnitude());
+ }
+ if (rmObject instanceof DvDuration) {
+ fromWalkerDto
+ .getMatrix()
+ .get(fromWalkerDto.getCurrentEntity())
+ .get(fromWalkerDto.getCurrentFieldIndex())
+ .put(relativ.addEnd(MAGNITUDE), ((DvDuration) rmObject).getMagnitude());
+ }
+ }
+
+ /**
+ * Transform a {@link JsonNode} representing a subtree in a flat map;
+ * @param prefix
+ * @param node
+ * @return
+ */
+ private Map flatten(AqlPath prefix, JsonNode node) {
+
+ LinkedHashMap result = new LinkedHashMap<>();
+ if (node instanceof ObjectNode) {
+
+ for (Iterator> it = node.fields(); it.hasNext(); ) {
+ Map.Entry child = it.next();
+
+ result.putAll(flatten(prefix.addEnd("/" + child.getKey()), child.getValue()));
+ }
+
+ } else if (node instanceof POJONode) {
+ try {
+ result.putAll(flatten(prefix, MARSHAL_OM.readTree((node).toString())));
+ } catch (JsonProcessingException e) {
+ throw new SdkException(e.getMessage());
+ }
+ } else if (node instanceof ValueNode) {
+ if (node instanceof NumericNode) {
+ result.put(prefix, node.numberValue());
+ } else if (node instanceof BooleanNode) {
+ result.put(prefix, node.booleanValue());
+ } else {
+ result.put(prefix, node.asText());
+ }
+ } else if (node instanceof ArrayNode) {
+ try {
+ result.put(prefix, MARSHAL_OM.writeValueAsString(node));
+ } catch (JsonProcessingException e) {
+ throw new SdkException(e.getMessage());
+ }
+ }
+
+ return result;
+ }
+
+ @Override
+ protected void postHandle(Context context) {
+
+ WebTemplateNode node = context.getNodeDeque().peek();
+ FromWalkerDto fromWalkerDto = context.getObjectDeque().peek();
+ RMObject rmObject = context.getRmObjectDeque().peek();
+ AqlPath relativ = node.getAqlPathDto()
+ .removeStart(fromWalkerDto.getCurrentEntity().getPathFromRoot());
+
+ // missing in the webtemplate and thus have to be handled manually
+ if (rmObject instanceof Locatable) {
+
+ add(fromWalkerDto, relativ.addEnd("/uid"), ((Locatable) rmObject).getUid());
+ }
+
+ if (rmObject instanceof Element) {
+
+ add(fromWalkerDto, relativ.addEnd("/null_reason"), ((Element) rmObject).getNullReason());
+ }
+
+ if (rmObject instanceof IntervalEvent) {
+
+ add(fromWalkerDto, relativ.addEnd("/sample_count"), ((IntervalEvent) rmObject).getSampleCount());
+ }
+
+ if (rmObject instanceof EventContext) {
+
+ add(fromWalkerDto, relativ.addEnd("/location"), ((EventContext) rmObject).getLocation());
+ }
+
+ if (rmObject instanceof Activity) {
+
+ add(fromWalkerDto, relativ.addEnd("/action_archetype_id"), ((Activity) rmObject).getActionArchetypeId());
+ }
+
+ if (rmObject instanceof DvInterval) {
+ add(fromWalkerDto, relativ.addEnd("/lower_included"), ((DvInterval) rmObject).isLowerIncluded());
+ add(fromWalkerDto, relativ.addEnd("/upper_included"), ((DvInterval) rmObject).isUpperIncluded());
+ add(fromWalkerDto, relativ.addEnd("/lower_unbounded"), ((DvInterval) rmObject).isLowerUnbounded());
+ add(fromWalkerDto, relativ.addEnd("/upper_unbounded"), ((DvInterval) rmObject).isUpperUnbounded());
+ }
+ }
+
+ private void add(FromWalkerDto fromWalkerDto, AqlPath relativ, Object o) {
+ if (o != null) {
+ fromWalkerDto
+ .getMatrix()
+ .get(fromWalkerDto.getCurrentEntity())
+ .get(fromWalkerDto.getCurrentFieldIndex())
+ .putAll(flatten(relativ, MARSHAL_OM.valueToTree(o)));
+ }
+ }
+
+ static String findTypeName(String atCode) {
+ String typeName = null;
+
+ if (atCode.contains("openEHR-EHR-")) {
+
+ typeName = StringUtils.substringBetween(atCode, "openEHR-EHR-", ".");
+ } else if (atCode.startsWith("at")) {
+ typeName = null;
+ } else {
+ typeName = atCode;
+ }
+ return typeName;
+ }
+}
diff --git a/serialisation/src/main/java/org/ehrbase/serialisation/matrixencoding/Encoder.java b/serialisation/src/main/java/org/ehrbase/serialisation/matrixencoding/Encoder.java
new file mode 100644
index 000000000..48f3069b8
--- /dev/null
+++ b/serialisation/src/main/java/org/ehrbase/serialisation/matrixencoding/Encoder.java
@@ -0,0 +1,29 @@
+/*
+ * Copyright (c) 2022 vitasystems GmbH and Hannover Medical School.
+ *
+ * This file is part of project openEHR_SDK
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * https://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.ehrbase.serialisation.matrixencoding;
+
+import org.ehrbase.aql.dto.path.AqlPath;
+
+/**
+ * @author Stefan Spiska
+ */
+public interface Encoder {
+ AqlPath encode(AqlPath path);
+
+ AqlPath decode(AqlPath path);
+}
diff --git a/serialisation/src/main/java/org/ehrbase/serialisation/matrixencoding/EncoderTool.java b/serialisation/src/main/java/org/ehrbase/serialisation/matrixencoding/EncoderTool.java
new file mode 100644
index 000000000..6ee5c3ad8
--- /dev/null
+++ b/serialisation/src/main/java/org/ehrbase/serialisation/matrixencoding/EncoderTool.java
@@ -0,0 +1,90 @@
+/*
+ * Copyright (c) 2022 vitasystems GmbH and Hannover Medical School.
+ *
+ * This file is part of project openEHR_SDK
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * https://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.ehrbase.serialisation.matrixencoding;
+
+import static org.ehrbase.aql.dto.path.predicate.PredicateHelper.NAME_VALUE;
+
+import java.util.Comparator;
+import java.util.LinkedHashMap;
+import java.util.List;
+import java.util.Map;
+import java.util.function.Function;
+import java.util.stream.Collectors;
+import java.util.stream.Stream;
+import org.ehrbase.aql.dto.path.AqlPath;
+
+/**
+ * Helper class to build the encoding csv for {@link FixedCodeSetEncoder}
+ * @author Stefan Spiska
+ */
+class EncoderTool {
+
+ private final CodeGenerator totalHelper = new CodeGenerator();
+ private final CodeGenerator pathHelper = new CodeGenerator();
+
+ Map buildTotalEncodingMap(List seed) {
+
+ Map encodingMap = new LinkedHashMap<>();
+
+ Comparator> comparator = Map.Entry.comparingByValue();
+
+ seed.stream()
+ .flatMap(r -> Stream.concat(Stream.of(r.getEntityPath()), r.getFields().keySet().stream()))
+ .filter(p -> isSimple(p.getNodes()))
+ .filter(p -> !p.getPath().equals("/"))
+ .collect(Collectors.groupingBy(Function.identity(), Collectors.counting()))
+ .entrySet()
+ .stream()
+ .sorted(comparator.reversed())
+ .map(Map.Entry::getKey)
+ .forEach(p -> encodingMap.computeIfAbsent(p.getPath(), k -> "!" + totalHelper.next()));
+
+ return encodingMap;
+ }
+
+ Map buildPathEncodingMap(List seed) {
+
+ Map encodingMap = new LinkedHashMap<>();
+
+ Comparator> comparator = Map.Entry.comparingByValue();
+
+ seed.stream()
+ .flatMap(r -> Stream.concat(Stream.of(r.getEntityPath()), r.getFields().keySet().stream()))
+ .filter(p -> !p.getPath().equals("/"))
+ .filter(p -> !isSimple(p.getNodes()))
+ .flatMap(p -> p.getNodes().stream())
+ .map(AqlPath.AqlNode::getName)
+ .collect(Collectors.groupingBy(Function.identity(), Collectors.counting()))
+ .entrySet()
+ .stream()
+ .sorted(comparator.reversed())
+ .map(Map.Entry::getKey)
+ .forEach(n -> encodingMap.computeIfAbsent(n, k -> pathHelper.next()));
+
+ return encodingMap;
+ }
+
+ private boolean isSimple(List nodes) {
+ return nodes.stream().allMatch(this::isSimple);
+ }
+
+ private boolean isSimple(AqlPath.AqlNode node) {
+
+ return node.getAtCode() == null && node.findOtherPredicate(NAME_VALUE) == null;
+ }
+}
diff --git a/serialisation/src/main/java/org/ehrbase/serialisation/matrixencoding/Entity.java b/serialisation/src/main/java/org/ehrbase/serialisation/matrixencoding/Entity.java
new file mode 100644
index 000000000..9dfc9fda6
--- /dev/null
+++ b/serialisation/src/main/java/org/ehrbase/serialisation/matrixencoding/Entity.java
@@ -0,0 +1,91 @@
+/*
+ * Copyright (c) 2022 vitasystems GmbH and Hannover Medical School.
+ *
+ * This file is part of project openEHR_SDK
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * https://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.ehrbase.serialisation.matrixencoding;
+
+import java.util.Objects;
+import org.ehrbase.aql.dto.path.AqlPath;
+
+/**
+ * @author Stefan Spiska
+ */
+class Entity {
+
+ private AqlPath pathFromRoot;
+ private String archetypeId;
+
+ private Index entityIdx = new Index();
+
+ public Entity() {}
+
+ public Entity(Entity other) {
+ this.pathFromRoot = AqlPath.parse(other.pathFromRoot.getPath());
+ this.archetypeId = other.archetypeId;
+ this.entityIdx = new Index(other.entityIdx);
+ }
+
+ public AqlPath getPathFromRoot() {
+ return pathFromRoot;
+ }
+
+ public void setPathFromRoot(AqlPath pathFromRoot) {
+ this.pathFromRoot = pathFromRoot;
+ }
+
+ public String getArchetypeId() {
+ return archetypeId;
+ }
+
+ public void setArchetypeId(String archetypeId) {
+ this.archetypeId = archetypeId;
+ }
+
+ public Index getEntityIdx() {
+ return entityIdx;
+ }
+
+ public void setEntityIdx(Index entityIdx) {
+ this.entityIdx = entityIdx;
+ }
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ Entity entity = (Entity) o;
+ return Objects.equals(pathFromRoot, entity.pathFromRoot)
+ && Objects.equals(archetypeId, entity.archetypeId)
+ && Objects.equals(entityIdx, entity.entityIdx);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(pathFromRoot, archetypeId, entityIdx);
+ }
+
+ @Override
+ public String toString() {
+ return "Resolve{" + "pathFromRoot="
+ + pathFromRoot + ", archetypeId='"
+ + archetypeId + '\'' + ", count="
+ + entityIdx + '}';
+ }
+}
diff --git a/serialisation/src/main/java/org/ehrbase/serialisation/matrixencoding/FixedCodeSetEncoder.java b/serialisation/src/main/java/org/ehrbase/serialisation/matrixencoding/FixedCodeSetEncoder.java
new file mode 100644
index 000000000..9fee9e0b6
--- /dev/null
+++ b/serialisation/src/main/java/org/ehrbase/serialisation/matrixencoding/FixedCodeSetEncoder.java
@@ -0,0 +1,113 @@
+/*
+ * Copyright (c) 2022 vitasystems GmbH and Hannover Medical School.
+ *
+ * This file is part of project openEHR_SDK
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * https://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.ehrbase.serialisation.matrixencoding;
+
+import com.google.common.collect.BiMap;
+import com.google.common.collect.HashBiMap;
+import java.io.IOException;
+import java.io.InputStreamReader;
+import org.apache.commons.csv.CSVFormat;
+import org.apache.commons.csv.CSVParser;
+import org.apache.commons.lang3.StringUtils;
+import org.ehrbase.aql.dto.path.AqlPath;
+import org.ehrbase.util.exception.SdkException;
+
+/**
+ * @author Stefan Spiska
+ */
+public class FixedCodeSetEncoder implements Encoder {
+
+ private final BiMap totalEncoding = HashBiMap.create();
+ private final BiMap pathEncoding = HashBiMap.create();
+
+ public FixedCodeSetEncoder() {
+
+ try (CSVParser csv = new CSVParser(
+ new InputStreamReader(FixedCodeSetEncoder.class.getResourceAsStream("/encoder/totalpathencoding.csv")),
+ CSVFormat.DEFAULT.builder().setHeader("path", "code").build())) {
+ csv.stream().forEach(c -> totalEncoding.put(c.get(0), c.get(1)));
+ } catch (IOException e) {
+ throw new SdkException(e.getMessage(), e);
+ }
+
+ try (CSVParser csv = new CSVParser(
+ new InputStreamReader(FixedCodeSetEncoder.class.getResourceAsStream("/encoder/pathencoding.csv")),
+ CSVFormat.DEFAULT.builder().setHeader("path", "code").build())) {
+ csv.stream().forEach(c -> pathEncoding.put(c.get(0), c.get(1)));
+ } catch (IOException e) {
+ throw new SdkException(e.getMessage(), e);
+ }
+ }
+
+ @Override
+ public AqlPath encode(AqlPath path) {
+
+ if (totalEncoding.containsKey(path.getPath())) {
+ return AqlPath.parse(totalEncoding.get(path.getPath()));
+ }
+
+ AqlPath rootPath = AqlPath.ROOT_PATH;
+
+ for (AqlPath.AqlNode aqlNode : path.getNodes()) {
+ AqlPath.AqlNode n = encode(aqlNode);
+ rootPath = rootPath.addEnd(n);
+ }
+
+ return rootPath;
+ }
+
+ private AqlPath.AqlNode encode(AqlPath.AqlNode node) {
+
+ if (pathEncoding.containsKey(node.getName())) {
+
+ return new AqlPath.AqlNode(pathEncoding.get(node.getName()), node.getAtCode(), node.getOtherPredicate());
+ }
+
+ return node;
+ }
+
+ @Override
+ public AqlPath decode(AqlPath path) {
+
+ String key = StringUtils.removeStart(path.getPath(), "/");
+
+ if (totalEncoding.containsValue(key)) {
+ return AqlPath.parse(totalEncoding.inverse().get(key));
+ }
+
+ AqlPath rootPath = AqlPath.ROOT_PATH;
+
+ for (AqlPath.AqlNode aqlNode : path.getNodes()) {
+ AqlPath.AqlNode n = decode(aqlNode);
+ rootPath = rootPath.addEnd(n);
+ }
+
+ return rootPath;
+ }
+
+ private AqlPath.AqlNode decode(AqlPath.AqlNode node) {
+
+ if (pathEncoding.containsValue(node.getName())) {
+
+ return new AqlPath.AqlNode(
+ pathEncoding.inverse().get(node.getName()), node.getAtCode(), node.getOtherPredicate());
+ }
+
+ return node;
+ }
+}
diff --git a/serialisation/src/main/java/org/ehrbase/serialisation/matrixencoding/FromWalkerDto.java b/serialisation/src/main/java/org/ehrbase/serialisation/matrixencoding/FromWalkerDto.java
new file mode 100644
index 000000000..16cfb84e7
--- /dev/null
+++ b/serialisation/src/main/java/org/ehrbase/serialisation/matrixencoding/FromWalkerDto.java
@@ -0,0 +1,79 @@
+/*
+ * Copyright (c) 2022 vitasystems GmbH and Hannover Medical School.
+ *
+ * This file is part of project openEHR_SDK
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * https://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.ehrbase.serialisation.matrixencoding;
+
+import java.util.LinkedHashMap;
+import java.util.Map;
+import org.ehrbase.aql.dto.path.AqlPath;
+
+/**
+ * @author Stefan Spiska
+ */
+class FromWalkerDto {
+
+ private final Map>> matrix;
+
+ private Entity currentEntity;
+ private Index currentFieldIndex;
+
+ private boolean rootFound = false;
+
+ public FromWalkerDto() {
+
+ this.matrix = new LinkedHashMap<>();
+ }
+
+ public FromWalkerDto(FromWalkerDto other) {
+ this.currentEntity = new Entity(other.currentEntity);
+ this.currentFieldIndex = new Index(other.currentFieldIndex);
+ this.matrix = other.matrix;
+ this.rootFound = other.rootFound;
+ }
+
+ public boolean isRootFound() {
+ return rootFound;
+ }
+
+ public void setRootFound(boolean rootFound) {
+ this.rootFound = rootFound;
+ }
+
+ public Map>> getMatrix() {
+ return matrix;
+ }
+
+ public Entity getCurrentEntity() {
+ return currentEntity;
+ }
+
+ public void updateEntity(Entity currentEntity) {
+ this.currentEntity = currentEntity;
+ matrix.put(currentEntity, new LinkedHashMap<>());
+ Index key = new Index();
+ matrix.get(currentEntity).put(key, new LinkedHashMap<>());
+ currentFieldIndex = key;
+ }
+
+ public Index getCurrentFieldIndex() {
+ return currentFieldIndex;
+ }
+
+ public void setCurrentFieldIndex(Index currentFieldIndex) {
+ this.currentFieldIndex = currentFieldIndex;
+ }
+}
diff --git a/serialisation/src/main/java/org/ehrbase/serialisation/matrixencoding/Index.java b/serialisation/src/main/java/org/ehrbase/serialisation/matrixencoding/Index.java
new file mode 100644
index 000000000..544c1ad65
--- /dev/null
+++ b/serialisation/src/main/java/org/ehrbase/serialisation/matrixencoding/Index.java
@@ -0,0 +1,67 @@
+/*
+ * Copyright (c) 2022 vitasystems GmbH and Hannover Medical School.
+ *
+ * This file is part of project openEHR_SDK
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * https://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.ehrbase.serialisation.matrixencoding;
+
+import java.util.LinkedHashMap;
+import java.util.Objects;
+
+/**
+ * @author Stefan Spiska
+ */
+class Index {
+
+ private final LinkedHashMap indexMap = new LinkedHashMap<>();
+
+ public Index() {}
+
+ public Index(Index other) {
+
+ indexMap.putAll(other.indexMap);
+ }
+
+ public void add(String key, Integer value) {
+ indexMap.put(key, value);
+ }
+
+ Integer[] getRepetitions() {
+
+ return indexMap.values().toArray(new Integer[0]);
+ }
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ Index index = (Index) o;
+ return Objects.equals(indexMap, index.indexMap);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(indexMap);
+ }
+
+ @Override
+ public String toString() {
+ return "Index{" + "indexMap=" + indexMap + '}';
+ }
+}
diff --git a/serialisation/src/main/java/org/ehrbase/serialisation/matrixencoding/MatrixFormat.java b/serialisation/src/main/java/org/ehrbase/serialisation/matrixencoding/MatrixFormat.java
new file mode 100644
index 000000000..223fa590a
--- /dev/null
+++ b/serialisation/src/main/java/org/ehrbase/serialisation/matrixencoding/MatrixFormat.java
@@ -0,0 +1,325 @@
+/*
+ * Copyright (c) 2022 vitasystems GmbH and Hannover Medical School.
+ *
+ * This file is part of project openEHR_SDK
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * https://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.ehrbase.serialisation.matrixencoding;
+
+import static org.ehrbase.serialisation.matrixencoding.CompositionToMatrixWalker.findTypeName;
+
+import com.fasterxml.jackson.core.JsonGenerator;
+import com.fasterxml.jackson.core.JsonProcessingException;
+import com.fasterxml.jackson.databind.ObjectMapper;
+import com.fasterxml.jackson.databind.SerializerProvider;
+import com.fasterxml.jackson.databind.module.SimpleModule;
+import com.fasterxml.jackson.databind.ser.std.StdSerializer;
+import com.nedap.archie.rm.RMObject;
+import com.nedap.archie.rm.composition.Composition;
+import java.io.IOException;
+import java.io.StringReader;
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.Collection;
+import java.util.LinkedHashMap;
+import java.util.List;
+import java.util.Map;
+import java.util.Objects;
+import java.util.stream.Collectors;
+import java.util.stream.IntStream;
+import org.apache.commons.csv.CSVFormat;
+import org.apache.commons.csv.CSVPrinter;
+import org.apache.commons.csv.CSVRecord;
+import org.apache.commons.lang3.ArrayUtils;
+import org.apache.commons.lang3.StringUtils;
+import org.ehrbase.aql.dto.path.AqlPath;
+import org.ehrbase.serialisation.RMDataFormat;
+import org.ehrbase.util.exception.SdkException;
+import org.ehrbase.webtemplate.templateprovider.TemplateProvider;
+
+/**
+ * @author Stefan Spiska
+ */
+public class MatrixFormat implements RMDataFormat {
+
+ private enum HEADERS {
+ NUM,
+ ENTITY_CONCEPT,
+ RM_ENTITY,
+ ENTITY_PATH,
+ ENTITY_IDX,
+ FIELD_IDX,
+ FIELD_IDX_LEN,
+ FIELDS
+ }
+
+ public static final CSVFormat CSV_FORMAT =
+ CSVFormat.DEFAULT.builder().setHeader(HEADERS.class).build();
+
+ public static final ObjectMapper MAPPER;
+
+ static {
+ MAPPER = new ObjectMapper();
+ SimpleModule module = new SimpleModule();
+ module.addKeySerializer(AqlPath.class, new AqlPathKeyStdSerializer());
+
+ MAPPER.registerModule(module);
+ }
+
+ private final Encoder encoder;
+ private final TemplateProvider templateProvider;
+
+ public MatrixFormat(TemplateProvider templateProvider) {
+ this.templateProvider = templateProvider;
+
+ encoder = null;
+ }
+
+ public MatrixFormat(TemplateProvider templateProvider, Encoder encoder) {
+ this.templateProvider = templateProvider;
+ this.encoder = encoder;
+ }
+
+ public Encoder getEncoder() {
+ return encoder;
+ }
+
+ Map>> toMatrix(Composition composition) {
+ String templateId = composition.getArchetypeDetails().getTemplateId().getValue();
+ Entity currentEntity = new Entity();
+ currentEntity.setPathFromRoot(AqlPath.ROOT_PATH);
+ currentEntity.setArchetypeId(composition.getArchetypeNodeId());
+ FromWalkerDto fromWalkerDto = new FromWalkerDto();
+ fromWalkerDto.updateEntity(currentEntity);
+ new CompositionToMatrixWalker()
+ .walk(
+ composition,
+ fromWalkerDto,
+ templateProvider
+ .buildIntrospect(templateId)
+ .orElseThrow(() -> new SdkException(String.format("Unknown template %s", templateId)))
+ .getTree(),
+ templateId);
+
+ return fromWalkerDto.getMatrix();
+ }
+
+ public List toTable(Composition composition) {
+
+ List flatten = flatten(toMatrix(composition));
+
+ if (encoder != null) {
+ flatten.forEach(this::encode);
+ }
+
+ return flatten;
+ }
+
+ private List flatten(Map>> map) {
+
+ List collect = map.entrySet().stream()
+ .map(e -> toRows(e.getKey(), e.getValue()))
+ .flatMap(Collection::stream)
+ .collect(Collectors.toList());
+ IntStream.range(0, collect.size()).forEach(i -> collect.get(i).setNum(i));
+ return collect;
+ }
+
+ private List toRows(Entity entity, Map> map) {
+
+ return map.entrySet().stream().map(e -> toRow(entity, e)).collect(Collectors.toList());
+ }
+
+ private Row toRow(Entity entity, Map.Entry> e) {
+ Row row = new Row();
+ row.setEntityIdx(entity.getEntityIdx().getRepetitions());
+ row.setArchetypeId(entity.getArchetypeId());
+ row.setEntityPath(entity.getPathFromRoot());
+ row.setFields(e.getValue());
+ row.setFieldIdx(e.getKey().getRepetitions());
+ return row;
+ }
+
+ private List toEntryList(String csv) {
+
+ try {
+ return CSV_FORMAT.parse(new StringReader(csv)).stream()
+ .skip(1)
+ .map(this::toRow)
+ .map(this::toEntryList)
+ .flatMap(Collection::stream)
+ .collect(Collectors.toList());
+ } catch (IOException e) {
+ throw new SdkException(e.getMessage(), e);
+ }
+ }
+
+ private List toEntryList(Row row) {
+
+ return row.getFields().entrySet().stream()
+ .map(e -> {
+ ToWalkerDto toWalkerDto = new ToWalkerDto();
+
+ toWalkerDto.path = row.getEntityPath().addEnd(e.getKey());
+ toWalkerDto.index = new ArrayList<>(Arrays.asList(row.getEntityIdx()));
+ toWalkerDto.index.addAll(Arrays.asList(row.getFieldIdx()));
+ toWalkerDto.value = e.getValue();
+ return toWalkerDto;
+ })
+ .collect(Collectors.toList());
+ }
+
+ private Row toRow(CSVRecord csvRecord) {
+
+ Row row = new Row();
+ row.setNum(Integer.parseInt(csvRecord.get(HEADERS.NUM)));
+ row.setEntityIdx(buildArray(csvRecord.get(HEADERS.ENTITY_IDX)));
+ row.setFieldIdx(buildArray(csvRecord.get(HEADERS.FIELD_IDX)));
+ row.setArchetypeId(csvRecord.get(HEADERS.ENTITY_CONCEPT));
+ row.setEntityPath(AqlPath.parse(csvRecord.get(HEADERS.ENTITY_PATH)));
+ try {
+ Map map = MAPPER.readValue(
+ csvRecord.get(HEADERS.FIELDS),
+ MAPPER.getTypeFactory().constructMapType(LinkedHashMap.class, String.class, Object.class));
+ row.setFields(map.entrySet().stream()
+ .collect(Collectors.toMap(e -> AqlPath.parse(e.getKey()), Map.Entry::getValue)));
+ } catch (JsonProcessingException e) {
+ throw new SdkException(e.getMessage(), e);
+ }
+
+ if (encoder != null) {
+ decode(row);
+ }
+
+ return row;
+ }
+
+ private static Integer[] buildArray(String s) {
+
+ String s1 = StringUtils.substringBetween(s, "{", "}");
+
+ if (StringUtils.isEmpty(s1)) {
+ return new Integer[] {};
+ }
+
+ return Arrays.stream(s1.split(",")).map(Integer::parseInt).toArray(Integer[]::new);
+ }
+
+ @Override
+ public String marshal(RMObject rmObject) {
+ if (rmObject instanceof Composition) {
+
+ StringBuilder sb = new StringBuilder();
+ try (CSVPrinter printer = new CSVPrinter(sb, CSV_FORMAT)) {
+ for (Row r : toTable((Composition) rmObject)) {
+ printRow(printer, r);
+ }
+ } catch (IOException e) {
+ throw new SdkException(e.getMessage(), e);
+ }
+
+ return sb.toString();
+ } else {
+ throw new UnsupportedOperationException();
+ }
+ }
+
+ private static void printRow(CSVPrinter printer, Row r) {
+ try {
+ printer.printRecord(
+ r.getNum(),
+ r.getArchetypeId(),
+ findTypeName(r.getArchetypeId()),
+ r.getEntityPath().format(AqlPath.OtherPredicatesFormat.SHORTED, true),
+ printArray(r.getEntityIdx()),
+ printArray(r.getFieldIdx()),
+ ArrayUtils.isEmpty(r.getFieldIdx()) ? 0 : r.getFieldIdx().length,
+ MAPPER.writerFor(MAPPER.getTypeFactory().constructMapType(Map.class, AqlPath.class, Object.class))
+ .writeValueAsString(r.getFields()));
+ } catch (IOException e) {
+ throw new SdkException(e.getMessage());
+ }
+ }
+
+ private static String printArray(Integer[] index) {
+ return ArrayUtils.isEmpty(index)
+ ? "{}"
+ : "{" + Arrays.stream(index).map(Objects::toString).collect(Collectors.joining(",")) + "}";
+ }
+
+ @Override
+ public T unmarshal(String value, Class clazz) {
+
+ List entries = toEntryList(value);
+
+ String templateId =
+ MatrixToCompositionWalker.filter(
+ entries, AqlPath.parse("/archetype_details/template_id/value"), false, null)
+ .stream()
+ .findAny()
+ .orElseThrow()
+ .value
+ .toString();
+
+ MatrixToCompositionWalker matrixToCompositionWalker = new MatrixToCompositionWalker();
+
+ Composition composition = new Composition();
+ matrixToCompositionWalker.walk(
+ composition,
+ entries,
+ templateProvider.buildIntrospect(templateId).orElseThrow(),
+ null,
+ templateId);
+
+ return (T) composition;
+ }
+
+ private void encode(Row row) {
+
+ row.setEntityPath(encoder.encode(row.getEntityPath()));
+ row.setFields(row.getFields().entrySet().stream()
+ .collect(Collectors.toMap(
+ e -> encoder.encode(e.getKey()),
+ Map.Entry::getValue,
+ (u, v) -> {
+ throw new IllegalStateException(String.format("Duplicate key %s", u));
+ },
+ LinkedHashMap::new)));
+ }
+
+ private void decode(Row row) {
+
+ row.setEntityPath(encoder.decode(row.getEntityPath()));
+ row.setFields(row.getFields().entrySet().stream()
+ .collect(Collectors.toMap(
+ e -> encoder.decode(e.getKey()),
+ Map.Entry::getValue,
+ (u, v) -> {
+ throw new IllegalStateException(String.format("Duplicate key %s", u));
+ },
+ LinkedHashMap::new)));
+ }
+
+ private static class AqlPathKeyStdSerializer extends StdSerializer {
+
+ public AqlPathKeyStdSerializer() {
+ super((Class) null);
+ }
+
+ @Override
+ public void serialize(AqlPath value, JsonGenerator gen, SerializerProvider provider) throws IOException {
+ gen.writeFieldName(value.format(AqlPath.OtherPredicatesFormat.SHORTED, true));
+ }
+ }
+}
diff --git a/serialisation/src/main/java/org/ehrbase/serialisation/matrixencoding/MatrixToCompositionWalker.java b/serialisation/src/main/java/org/ehrbase/serialisation/matrixencoding/MatrixToCompositionWalker.java
new file mode 100644
index 000000000..03b1f0267
--- /dev/null
+++ b/serialisation/src/main/java/org/ehrbase/serialisation/matrixencoding/MatrixToCompositionWalker.java
@@ -0,0 +1,349 @@
+/*
+ * Copyright (c) 2022 vitasystems GmbH and Hannover Medical School.
+ *
+ * This file is part of project openEHR_SDK
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * https://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.ehrbase.serialisation.matrixencoding;
+
+import static org.ehrbase.serialisation.jsonencoding.CanonicalJson.MARSHAL_OM;
+import static org.ehrbase.util.rmconstants.RmConstants.DV_TEXT;
+import static org.ehrbase.util.rmconstants.RmConstants.FEEDER_AUDIT;
+
+import com.fasterxml.jackson.core.JsonProcessingException;
+import com.nedap.archie.rm.RMObject;
+import com.nedap.archie.rm.archetyped.Archetyped;
+import com.nedap.archie.rm.archetyped.Link;
+import com.nedap.archie.rm.archetyped.Locatable;
+import com.nedap.archie.rm.archetyped.TemplateId;
+import com.nedap.archie.rm.composition.Activity;
+import com.nedap.archie.rm.composition.EventContext;
+import com.nedap.archie.rm.datastructures.Element;
+import com.nedap.archie.rm.datastructures.IntervalEvent;
+import com.nedap.archie.rm.datavalues.quantity.DvInterval;
+import com.nedap.archie.rm.support.identification.ArchetypeID;
+import java.util.List;
+import java.util.Map;
+import java.util.function.Consumer;
+import java.util.stream.Collectors;
+import org.apache.commons.lang3.tuple.Pair;
+import org.ehrbase.aql.dto.path.AqlPath;
+import org.ehrbase.building.webtemplateskeletnbuilder.WebTemplateSkeletonBuilder;
+import org.ehrbase.serialisation.walker.Context;
+import org.ehrbase.serialisation.walker.ToCompositionWalker;
+import org.ehrbase.util.exception.SdkException;
+import org.ehrbase.webtemplate.model.WebTemplateNode;
+
+/**
+ * @author Stefan Spiska
+ */
+public class MatrixToCompositionWalker extends ToCompositionWalker> {
+
+ public static final String OTHER_REFERENCE_RANGES = "other_reference_ranges";
+ // These subparts are saved as arrays.
+ public static final List> ARRAY_ELEMENTS = List.of(
+ Pair.of(AqlPath.parse("mappings"), DV_TEXT),
+ Pair.of(AqlPath.parse("mappings"), "DV_CODED_TEXT"),
+ Pair.of(AqlPath.parse(OTHER_REFERENCE_RANGES), "DV_QUANTITY"),
+ Pair.of(AqlPath.parse(OTHER_REFERENCE_RANGES), "DV_DURATION"),
+ Pair.of(AqlPath.parse(OTHER_REFERENCE_RANGES), "DV_ORDINAL"),
+ Pair.of(AqlPath.parse(OTHER_REFERENCE_RANGES), "DV_PROPORTION"),
+ Pair.of(AqlPath.parse(OTHER_REFERENCE_RANGES), "DV_COUNT"),
+ Pair.of(AqlPath.parse(OTHER_REFERENCE_RANGES), "DV_DATE"),
+ Pair.of(AqlPath.parse(OTHER_REFERENCE_RANGES), "DV_DATE_TIME"),
+ Pair.of(AqlPath.parse(OTHER_REFERENCE_RANGES), "DV_TIME"),
+ Pair.of(AqlPath.parse(OTHER_REFERENCE_RANGES), "DV_CODED_TEXT"),
+ Pair.of(AqlPath.parse("feeder_system_item_ids"), FEEDER_AUDIT),
+ Pair.of(AqlPath.parse("originating_system_item_ids"), FEEDER_AUDIT),
+ Pair.of(AqlPath.parse("performer/identifiers"), "PARTICIPATION"),
+ Pair.of(AqlPath.parse("identifiers"), "PARTY_IDENTIFIED"),
+ Pair.of(AqlPath.parse("identifiers"), "PARTY_RELATED"),
+ Pair.of(AqlPath.parse("originating_system_audit/provider/identifiers"), FEEDER_AUDIT),
+ Pair.of(AqlPath.parse("originating_system_audit/subject/identifiers"), FEEDER_AUDIT),
+ Pair.of(AqlPath.parse("feeder_system_audit/provider/identifiers"), FEEDER_AUDIT),
+ Pair.of(AqlPath.parse("feeder_system_audit/subject/identifiers"), FEEDER_AUDIT),
+ Pair.of(AqlPath.parse(""), "LINK"));
+ public static final String STRING = "STRING";
+ public static final String BOOLEAN = "BOOLEAN";
+
+ @Override
+ protected List extract(
+ Context> context, WebTemplateNode child, boolean isChoice, Integer i) {
+
+ // If primitive return null
+ if (List.of(STRING, "LONG", BOOLEAN).contains(child.getRmType())) {
+
+ return null;
+ }
+
+ List filter = filter(context.getObjectDeque().peek(), child.getAqlPathDto(), i != null, i);
+
+ // Check that the type is correct
+ if (isChoice
+ && filter(filter, child.getAqlPathDto().addEnd("/_type"), false, null).stream()
+ .noneMatch(e -> e.value.equals(child.getRmType()))) {
+ return null;
+ }
+
+ MatrixUtil.addMissingChildren(child);
+
+ if (filter.isEmpty()) {
+ return null;
+ }
+ return filter;
+ }
+
+ @Override
+ protected void preHandle(Context> context) {
+
+ WebTemplateNode node = context.getNodeDeque().peek();
+
+ if (!visitChildren(node)) {
+
+ Map unflatten = unflatten(
+ node.getRmType(),
+ node.getAqlPathDto(),
+ context.getObjectDeque().peek());
+
+ RMObject peek = context.getRmObjectDeque().peek();
+
+ // We do not correctly serialise Link and Archetyped and thus have to do that manually. (see
+ // https://github.com/ehrbase/ehrbase/issues/924)
+ if (peek instanceof Link) {
+ unflatten.put("_type", "LINK");
+ }
+ if (peek instanceof Archetyped) {
+
+ ((Archetyped) peek).setRmVersion(unflatten.get("rm_version").toString());
+
+ ((Archetyped) peek)
+ .setArchetypeId(
+ new ArchetypeID(unflatten.get("archetype_id").toString()));
+ if (unflatten.containsKey("template_id")) {
+
+ TemplateId templateId = new TemplateId();
+ templateId.setValue(unflatten.get("template_id").toString());
+ ((Archetyped) peek).setTemplateId(templateId);
+ }
+ } else {
+
+ Object newRmObject;
+ newRmObject = buildObject(unflatten);
+
+ RMObject oldRM = context.getRmObjectDeque().poll();
+ RMObject parentRM = context.getRmObjectDeque().peek();
+ WebTemplateNode currentNode = context.getNodeDeque().poll();
+ WebTemplateNode parentNode = context.getNodeDeque().peek();
+
+ WebTemplateSkeletonBuilder.remove(parentNode, parentRM, currentNode, oldRM);
+ WebTemplateSkeletonBuilder.insert(parentNode, parentRM, currentNode, newRmObject);
+ context.getRmObjectDeque().push((RMObject) wrap(newRmObject));
+ context.getNodeDeque().push(currentNode);
+ }
+ }
+ }
+
+ private static Object buildObject(Map unflatten) {
+
+ Object newRmObject;
+ if (unflatten.size() > 1 || unflatten.containsKey("_type")) {
+ newRmObject = MARSHAL_OM.convertValue(unflatten, RMObject.class);
+ } else {
+ newRmObject = unflatten.values().stream().findAny().orElseThrow();
+ }
+ return newRmObject;
+ }
+
+ private static Map unflatten(String rmType, AqlPath aqlPath, List entries) {
+ List collect = entries.stream()
+ .map(o -> {
+ ToWalkerDto toWalkerDto = new ToWalkerDto();
+ toWalkerDto.path = o.path.removeStart(aqlPath);
+ if (isJsonArray(toWalkerDto, rmType)) {
+ try {
+ toWalkerDto.value = MARSHAL_OM.readValue(o.value.toString(), List.class);
+ } catch (JsonProcessingException e) {
+ throw new SdkException(e.getMessage());
+ }
+ } else {
+ toWalkerDto.value = o.value;
+ }
+
+ toWalkerDto.index = o.index;
+ return toWalkerDto;
+ })
+ .collect(Collectors.toList());
+ return unflatten(collect);
+ }
+
+ private static boolean isJsonArray(ToWalkerDto toWalkerDto, String rmType) {
+
+ return ARRAY_ELEMENTS.stream()
+ .anyMatch(p -> p.getRight().equals(rmType) && toWalkerDto.path.equals(p.getLeft()));
+ }
+
+ private static Map unflatten(List entries) {
+
+ Map> collect = entries.stream()
+ .collect(Collectors.groupingBy(e -> e.path.getBaseNode().getName()));
+
+ return collect.entrySet().stream().collect(Collectors.toMap(Map.Entry::getKey, e -> {
+ // Elementar Value found
+ if (e.getValue().size() == 1 && e.getValue().get(0).path.getNodeCount() <= 1) {
+ return e.getValue().get(0).value;
+ }
+ // unfaltten sub-values
+ else {
+ return unflatten(e.getValue().stream()
+ .map(o -> {
+ ToWalkerDto toWalkerDto = new ToWalkerDto();
+ toWalkerDto.value = o.value;
+ toWalkerDto.path = o.path.removeStart(1);
+ toWalkerDto.index = o.index;
+ return toWalkerDto;
+ })
+ .collect(Collectors.toList()));
+ }
+ }));
+ }
+
+ @Override
+ protected void postHandle(Context> context) {
+ super.postHandle(context);
+
+ RMObject rmObject = context.getRmObjectDeque().peek();
+
+ // missing in the webtemplate and thus have to be handled manually
+ if (rmObject instanceof Locatable) {
+
+ add(
+ ((Locatable) rmObject)::setUid,
+ context.getObjectDeque().peek(),
+ "HIER_OBJECT_ID",
+ context.getNodeDeque().peek().getAqlPathDto().addEnd("/uid"));
+ }
+
+ if (rmObject instanceof Element) {
+
+ add(
+ ((Element) rmObject)::setNullReason,
+ context.getObjectDeque().peek(),
+ DV_TEXT,
+ context.getNodeDeque().peek().getAqlPathDto().addEnd("/null_reason"));
+ }
+
+ if (rmObject instanceof IntervalEvent) {
+
+ add(
+ ((IntervalEvent) rmObject)::setSampleCount,
+ context.getObjectDeque().peek(),
+ "LONG",
+ context.getNodeDeque().peek().getAqlPathDto().addEnd("/sample_count"));
+ }
+
+ if (rmObject instanceof EventContext) {
+
+ add(
+ ((EventContext) rmObject)::setLocation,
+ context.getObjectDeque().peek(),
+ STRING,
+ context.getNodeDeque().peek().getAqlPathDto().addEnd("/location"));
+ }
+
+ if (rmObject instanceof Activity) {
+
+ add(
+ ((Activity) rmObject)::setActionArchetypeId,
+ context.getObjectDeque().peek(),
+ STRING,
+ context.getNodeDeque().peek().getAqlPathDto().addEnd("/action_archetype_id"));
+ }
+
+ if (rmObject instanceof DvInterval) {
+
+ add(
+ ((DvInterval) rmObject)::setLowerIncluded,
+ context.getObjectDeque().peek(),
+ BOOLEAN,
+ context.getNodeDeque().peek().getAqlPathDto().addEnd("/lower_included"));
+ add(
+ ((DvInterval) rmObject)::setUpperIncluded,
+ context.getObjectDeque().peek(),
+ BOOLEAN,
+ context.getNodeDeque().peek().getAqlPathDto().addEnd("/upper_included"));
+ add(
+ ((DvInterval) rmObject)::setLowerUnbounded,
+ context.getObjectDeque().peek(),
+ BOOLEAN,
+ context.getNodeDeque().peek().getAqlPathDto().addEnd("/lower_unbounded"));
+ add(
+ ((DvInterval) rmObject)::setUpperUnbounded,
+ context.getObjectDeque().peek(),
+ BOOLEAN,
+ context.getNodeDeque().peek().getAqlPathDto().addEnd("/upper_unbounded"));
+ }
+ }
+
+ @Override
+ protected int calculateSize(Context> context, WebTemplateNode childNode) {
+
+ return filter(context.getObjectDeque().peek(), childNode.getAqlPathDto(), true, null).stream()
+ .mapToInt(e -> e.index.get(0) + 1)
+ .max()
+ .orElse(0);
+ }
+
+ private static void add(Consumer setter, List toWalkerDtoList, String rmType, AqlPath aqlPath) {
+
+ List filter = filter(toWalkerDtoList, aqlPath, false, null);
+
+ if (!filter.isEmpty()) {
+ Map unflaten = unflatten(rmType, aqlPath, filter);
+
+ Object object = buildObject(unflaten);
+
+ if (object instanceof Integer && rmType.equals("LONG")) {
+ object = ((Integer) object).longValue();
+ }
+
+ setter.accept((T) object);
+ }
+ }
+
+ /**
+ * Return
+ * @param list
+ * @param path
+ * @param checkIndex
+ * @param index
+ * @return
+ */
+ static List filter(List list, AqlPath path, boolean checkIndex, Integer index) {
+
+ return list.stream().filter(e -> matches(e, path, checkIndex, index)).collect(Collectors.toList());
+ }
+
+ private static boolean matches(ToWalkerDto toWalkerDto, AqlPath path, boolean checkIndex, Integer index) {
+
+ if (!toWalkerDto.path.startsWith(path)) {
+ return false;
+ }
+
+ if (checkIndex && toWalkerDto.index.isEmpty()) {
+ return false;
+ }
+
+ return index == null || toWalkerDto.index.get(0).equals(index);
+ }
+}
diff --git a/serialisation/src/main/java/org/ehrbase/serialisation/matrixencoding/MatrixUtil.java b/serialisation/src/main/java/org/ehrbase/serialisation/matrixencoding/MatrixUtil.java
new file mode 100644
index 000000000..427e38e59
--- /dev/null
+++ b/serialisation/src/main/java/org/ehrbase/serialisation/matrixencoding/MatrixUtil.java
@@ -0,0 +1,60 @@
+/*
+ * Copyright (c) 2022 vitasystems GmbH and Hannover Medical School.
+ *
+ * This file is part of project openEHR_SDK
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * https://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.ehrbase.serialisation.matrixencoding;
+
+import static org.ehrbase.util.rmconstants.RmConstants.DV_TEXT;
+
+import org.ehrbase.util.rmconstants.RmConstants;
+import org.ehrbase.webtemplate.model.WebTemplateNode;
+
+/**
+ * @author Stefan Spiska
+ */
+class MatrixUtil {
+
+ private MatrixUtil() {
+ // util class
+ }
+
+ static void addMissingChildren(WebTemplateNode child) {
+ // Webtemplate is missing "link" for Element thus we add it here
+ if (child.getRmType().equals(RmConstants.ELEMENT)) {
+
+ WebTemplateNode links = new WebTemplateNode();
+
+ links.setRmType("LINK");
+ links.setAqlPath(child.getAqlPathDto().addEnd("/links"));
+ links.setId("links");
+ child.getChildren().add(links);
+ child.setMax(1);
+ child.setMin(0);
+ }
+ // Webtemplate is missing "reason" for ISM_TRANSITION thus we add it here
+ if (child.getRmType().equals(RmConstants.ISM_TRANSITION)) {
+
+ WebTemplateNode reason = new WebTemplateNode();
+
+ reason.setRmType(DV_TEXT);
+ reason.setAqlPath(child.getAqlPathDto().addEnd("/reason"));
+ reason.setId("reason");
+ child.getChildren().add(reason);
+ child.setMax(1);
+ child.setMin(0);
+ }
+ }
+}
diff --git a/serialisation/src/main/java/org/ehrbase/serialisation/matrixencoding/Row.java b/serialisation/src/main/java/org/ehrbase/serialisation/matrixencoding/Row.java
new file mode 100644
index 000000000..c408dfc7d
--- /dev/null
+++ b/serialisation/src/main/java/org/ehrbase/serialisation/matrixencoding/Row.java
@@ -0,0 +1,122 @@
+/*
+ * Copyright (c) 2022 vitasystems GmbH and Hannover Medical School.
+ *
+ * This file is part of project openEHR_SDK
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * https://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.ehrbase.serialisation.matrixencoding;
+
+import java.util.Arrays;
+import java.util.Map;
+import java.util.Objects;
+import org.ehrbase.aql.dto.path.AqlPath;
+
+/**
+ * @author Stefan Spiska
+ */
+public class Row {
+
+ private int num;
+ private AqlPath entityPath;
+ private String archetypeId;
+
+ private Integer[] entityIdx;
+
+ private Integer[] fieldIdx;
+ private Map fields;
+
+ public AqlPath getEntityPath() {
+ return entityPath;
+ }
+
+ public void setEntityPath(AqlPath entityPath) {
+ this.entityPath = entityPath;
+ }
+
+ public String getArchetypeId() {
+ return archetypeId;
+ }
+
+ public void setArchetypeId(String archetypeId) {
+ this.archetypeId = archetypeId;
+ }
+
+ public Integer[] getEntityIdx() {
+ return entityIdx;
+ }
+
+ public void setEntityIdx(Integer[] entityIdx) {
+ this.entityIdx = entityIdx;
+ }
+
+ public Integer[] getFieldIdx() {
+ return fieldIdx;
+ }
+
+ public void setFieldIdx(Integer[] fieldIdx) {
+ this.fieldIdx = fieldIdx;
+ }
+
+ public Map getFields() {
+ return fields;
+ }
+
+ public void setFields(Map fields) {
+ this.fields = fields;
+ }
+
+ public int getNum() {
+ return num;
+ }
+
+ public void setNum(int num) {
+ this.num = num;
+ }
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ Row row = (Row) o;
+ return num == row.num
+ && Objects.equals(entityPath, row.entityPath)
+ && Objects.equals(archetypeId, row.archetypeId)
+ && Arrays.equals(entityIdx, row.entityIdx)
+ && Arrays.equals(fieldIdx, row.fieldIdx)
+ && Objects.equals(fields, row.fields);
+ }
+
+ @Override
+ public int hashCode() {
+ int result = Objects.hash(num, entityPath, archetypeId, fields);
+ result = 31 * result + Arrays.hashCode(entityIdx);
+ result = 31 * result + Arrays.hashCode(fieldIdx);
+ return result;
+ }
+
+ @Override
+ public String toString() {
+ return "Row{" + "num="
+ + num + ", pathFromRoot="
+ + entityPath + ", archetypeId='"
+ + archetypeId + '\'' + ", count="
+ + Arrays.toString(entityIdx) + ", index="
+ + Arrays.toString(fieldIdx) + ", other="
+ + fields + '}';
+ }
+}
diff --git a/serialisation/src/main/java/org/ehrbase/serialisation/matrixencoding/ToWalkerDto.java b/serialisation/src/main/java/org/ehrbase/serialisation/matrixencoding/ToWalkerDto.java
new file mode 100644
index 000000000..ea52cb3e2
--- /dev/null
+++ b/serialisation/src/main/java/org/ehrbase/serialisation/matrixencoding/ToWalkerDto.java
@@ -0,0 +1,31 @@
+/*
+ * Copyright (c) 2022 vitasystems GmbH and Hannover Medical School.
+ *
+ * This file is part of project openEHR_SDK
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * https://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.ehrbase.serialisation.matrixencoding;
+
+import java.util.List;
+import org.ehrbase.aql.dto.path.AqlPath;
+
+/**
+ * @author Stefan Spiska
+ */
+class ToWalkerDto {
+
+ AqlPath path;
+ List index;
+ Object value;
+}
diff --git a/serialisation/src/main/java/org/ehrbase/serialisation/walker/ItemExtractor.java b/serialisation/src/main/java/org/ehrbase/serialisation/walker/ItemExtractor.java
index 30cf396c1..7097155e1 100644
--- a/serialisation/src/main/java/org/ehrbase/serialisation/walker/ItemExtractor.java
+++ b/serialisation/src/main/java/org/ehrbase/serialisation/walker/ItemExtractor.java
@@ -122,7 +122,7 @@ public ItemExtractor invoke() {
}
}
- if ((childNode.getMax() == 1 || currentNode.getRmType().equals(RmConstants.ELEMENT)) && child instanceof List) {
+ if (!RMHelper.isMulti(currentNode, childNode) && child instanceof List) {
child = ((List>) child).stream().findFirst().orElse(null);
}
diff --git a/serialisation/src/main/java/org/ehrbase/serialisation/walker/RMHelper.java b/serialisation/src/main/java/org/ehrbase/serialisation/walker/RMHelper.java
index 3ec0cb504..e4bff32b1 100644
--- a/serialisation/src/main/java/org/ehrbase/serialisation/walker/RMHelper.java
+++ b/serialisation/src/main/java/org/ehrbase/serialisation/walker/RMHelper.java
@@ -17,6 +17,8 @@
*/
package org.ehrbase.serialisation.walker;
+import static org.ehrbase.util.rmconstants.RmConstants.ELEMENT;
+
import com.nedap.archie.rm.archetyped.FeederAudit;
import com.nedap.archie.rm.archetyped.FeederAuditDetails;
import com.nedap.archie.rm.composition.IsmTransition;
@@ -31,6 +33,7 @@
import java.util.Collection;
import org.apache.commons.collections4.CollectionUtils;
import org.apache.commons.lang3.StringUtils;
+import org.ehrbase.webtemplate.model.WebTemplateNode;
public class RMHelper {
@@ -93,4 +96,15 @@ public static boolean isEmpty(Object rmObject) {
}
return false;
}
+
+ /**
+ * Do to historic Reasons, the value for max (and min) are pushed down from Element to value. Thus, checken the max of a child gives the wrong result. A child of Element is multivalued if and only if it is 'link'
+ * @param parent
+ * @param child
+ * @return
+ */
+ static boolean isMulti(WebTemplateNode parent, WebTemplateNode child) {
+
+ return parent.getRmType().equals(ELEMENT) ? child.getId().equals("link") : child.isMulti();
+ }
}
diff --git a/serialisation/src/main/java/org/ehrbase/serialisation/walker/Walker.java b/serialisation/src/main/java/org/ehrbase/serialisation/walker/Walker.java
index edaf10ef7..d00bc5019 100644
--- a/serialisation/src/main/java/org/ehrbase/serialisation/walker/Walker.java
+++ b/serialisation/src/main/java/org/ehrbase/serialisation/walker/Walker.java
@@ -102,8 +102,7 @@ private void handle(Context context) {
for (List childrenForPath : childrenByPath.values()) {
- boolean isMulti = !currentNode.getRmType().equals(ELEMENT)
- && childrenForPath.stream().anyMatch(WebTemplateNode::isMulti);
+ boolean isMulti = childrenForPath.stream().anyMatch(n -> RMHelper.isMulti(currentNode, n));
Stream childConstellations;
if (!isMulti) {
diff --git a/serialisation/src/main/java/org/ehrbase/serialisation/walker/defaultvalues/defaultinserter/EntryDefaultValueInserter.java b/serialisation/src/main/java/org/ehrbase/serialisation/walker/defaultvalues/defaultinserter/EntryDefaultValueInserter.java
index 6c4b9f7ad..49a0228bd 100644
--- a/serialisation/src/main/java/org/ehrbase/serialisation/walker/defaultvalues/defaultinserter/EntryDefaultValueInserter.java
+++ b/serialisation/src/main/java/org/ehrbase/serialisation/walker/defaultvalues/defaultinserter/EntryDefaultValueInserter.java
@@ -56,6 +56,7 @@ public void insert(Entry rmObject, DefaultValues defaultValues, WebTemplateNode
if (rmObject.getOtherParticipations() != null) {
rmObject.getOtherParticipations().stream()
.map(Participation::getPerformer)
+ .filter(Objects::nonNull)
.map(PartyProxy::getExternalRef)
.filter(Objects::nonNull)
.filter(ref -> ref.getId() != null)
diff --git a/serialisation/src/main/resources/encoder/pathencoding.csv b/serialisation/src/main/resources/encoder/pathencoding.csv
new file mode 100644
index 000000000..fa2a5f84b
--- /dev/null
+++ b/serialisation/src/main/resources/encoder/pathencoding.csv
@@ -0,0 +1,38 @@
+path,code
+items,a
+data,b
+value,c
+_type,d
+events,e
+name,f
+description,g
+content,h
+protocol,i
+defining_code,j
+archetype_node_id,k
+magnitude,l
+terminology_id,m
+archetype_details,n
+origin,o
+time,p
+activities,q
+code_string,r
+rm_version,y
+archetype_id,z
+units,1
+media_type,2
+type,3
+issuer,4
+id,5
+assigner,6
+precision,7
+uri,8
+math_function,9
+alternate_text,0
+size,ba
+timing,bb
+width,bc
+formalism,bd
+action_archetype_id,be
+denominator,bf
+numerator,bg
diff --git a/serialisation/src/main/resources/encoder/totalpathencoding.csv b/serialisation/src/main/resources/encoder/totalpathencoding.csv
new file mode 100644
index 000000000..7ce656a24
--- /dev/null
+++ b/serialisation/src/main/resources/encoder/totalpathencoding.csv
@@ -0,0 +1,99 @@
+path,code
+/other_participations/performer/external_ref/id/scheme,"!a"
+/other_participations/performer/_type,"!b"
+/other_participations/mode/defining_code/terminology_id/_type,"!c"
+/other_participations/mode/defining_code/terminology_id/value,"!d"
+/other_participations/_type,"!e"
+/other_participations/performer/external_ref/namespace,"!f"
+/other_participations/mode/defining_code/_type,"!g"
+/other_participations/performer/name,"!h"
+/other_participations/function/value,"!i"
+/other_participations/function/_type,"!j"
+/other_participations/performer/external_ref/type,"!k"
+/other_participations/mode/value,"!l"
+/other_participations/performer/external_ref/id/value,"!m"
+/other_participations/mode/defining_code/code_string,"!n"
+/other_participations/performer/external_ref/id/_type,"!o"
+/other_participations/mode/_type,"!p"
+/other_participations/performer/external_ref/_type,"!q"
+/name/_type,"!r"
+/language/code_string,"!y"
+/archetype_details/_type,"!z"
+/name/value,"!1"
+/archetype_node_id,"!2"
+/archetype_details/archetype_id/value,"!3"
+/language/terminology_id/_type,"!4"
+/_type,"!5"
+/language/_type,"!6"
+/language/terminology_id/value,"!7"
+/archetype_details/rm_version,"!8"
+/encoding/terminology_id/_type,"!9"
+/subject/_type,"!0"
+/encoding/_type,"!ba"
+/encoding/terminology_id/value,"!bb"
+/encoding/code_string,"!bc"
+/ism_transition/current_state/defining_code/terminology_id/_type,"!bd"
+/ism_transition/current_state/value,"!be"
+/ism_transition/current_state/_type,"!bf"
+/time/magnitude,"!bg"
+/ism_transition/_type,"!bh"
+/time/_type,"!bi"
+/ism_transition/current_state/defining_code/terminology_id/value,"!bj"
+/ism_transition/current_state/defining_code/code_string,"!bk"
+/time/value,"!bl"
+/ism_transition/current_state/defining_code/_type,"!bm"
+/uid/value,"!bn"
+/uid/_type,"!bo"
+/context/participations/mode/defining_code/terminology_id/_type,"!bp"
+/category/defining_code/terminology_id/_type,"!bq"
+/context/participations/function/value,"!br"
+/context/participations/performer/external_ref/namespace,"!by"
+/context/participations/mode/defining_code/_type,"!bz"
+/territory/terminology_id/value,"!b1"
+/archetype_details/template_id/value,"!b2"
+/territory/code_string,"!b3"
+/context/_type,"!b4"
+/context/setting/defining_code/terminology_id/_type,"!b5"
+/category/defining_code/_type,"!b6"
+/territory/_type,"!b7"
+/category/defining_code/code_string,"!b8"
+/category/_type,"!b9"
+/context/setting/value,"!b0"
+/context/participations/function/_type,"!ca"
+/context/setting/_type,"!cb"
+/context/participations/performer/external_ref/id/_type,"!cc"
+/context/setting/defining_code/terminology_id/value,"!cd"
+/context/participations/performer/external_ref/type,"!ce"
+/context/participations/performer/name,"!cf"
+/context/start_time/magnitude,"!cg"
+/context/participations/performer/_type,"!ch"
+/category/value,"!ci"
+/context/participations/performer/external_ref/id/value,"!cj"
+/context/start_time/_type,"!ck"
+/context/setting/defining_code/_type,"!cl"
+/context/participations/_type,"!cm"
+/composer/_type,"!cn"
+/context/participations/performer/external_ref/_type,"!co"
+/composer/name,"!cp"
+/context/participations/mode/defining_code/terminology_id/value,"!cq"
+/context/start_time/value,"!cr"
+/category/defining_code/terminology_id/value,"!cy"
+/context/participations/mode/value,"!cz"
+/context/participations/performer/external_ref/id/scheme,"!c1"
+/territory/terminology_id/_type,"!c2"
+/context/setting/defining_code/code_string,"!c3"
+/context/participations/mode/defining_code/code_string,"!c4"
+/context/participations/mode/_type,"!c5"
+/context/health_care_facility/external_ref/_type,"!c6"
+/context/health_care_facility/external_ref/namespace,"!c7"
+/narrative/_type,"!c8"
+/context/health_care_facility/external_ref/id/_type,"!c9"
+/narrative/value,"!c0"
+/expiry_time/magnitude,"!da"
+/expiry_time/_type,"!db"
+/context/health_care_facility/external_ref/id/value,"!dc"
+/context/health_care_facility/name,"!dd"
+/context/health_care_facility/_type,"!de"
+/context/health_care_facility/external_ref/type,"!df"
+/expiry_time/value,"!dg"
+/context/health_care_facility/external_ref/id/scheme,"!dh"
diff --git a/serialisation/src/test/java/org/ehrbase/serialisation/matrixencoding/EncoderToolTest.java b/serialisation/src/test/java/org/ehrbase/serialisation/matrixencoding/EncoderToolTest.java
new file mode 100644
index 000000000..1a222496d
--- /dev/null
+++ b/serialisation/src/test/java/org/ehrbase/serialisation/matrixencoding/EncoderToolTest.java
@@ -0,0 +1,106 @@
+/*
+ * Copyright (c) 2022 vitasystems GmbH and Hannover Medical School.
+ *
+ * This file is part of project openEHR_SDK
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * https://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.ehrbase.serialisation.matrixencoding;
+
+import java.io.IOException;
+import java.nio.charset.StandardCharsets;
+import java.util.ArrayList;
+import java.util.List;
+import java.util.Map;
+import org.apache.commons.csv.CSVFormat;
+import org.apache.commons.csv.CSVPrinter;
+import org.apache.commons.io.IOUtils;
+import org.ehrbase.serialisation.jsonencoding.CanonicalJson;
+import org.ehrbase.serialisation.templateprovider.TestDataTemplateProvider;
+import org.ehrbase.test_data.composition.CompositionTestDataCanonicalJson;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
+
+/**
+ * @author Stefan Spiska
+ */
+class EncoderToolTest {
+
+ @Test
+ @Disabled("Helper to create the mappings")
+ void createTotalMap() throws IOException {
+
+ List rowList = new ArrayList<>();
+
+ rowList.addAll(getRows(CompositionTestDataCanonicalJson.CORONA));
+ rowList.addAll(getRows(CompositionTestDataCanonicalJson.IPS));
+
+ EncoderTool encoderTool = new EncoderTool();
+
+ Map stringStringMap = encoderTool.buildTotalEncodingMap(rowList);
+
+ StringBuilder appendable = new StringBuilder();
+ try (CSVPrinter cv = new CSVPrinter(
+ appendable,
+ CSVFormat.DEFAULT.builder().setHeader("path", "code").build())) {
+
+ stringStringMap.forEach((k, v) -> {
+ try {
+ cv.printRecord(k, v);
+ } catch (IOException e) {
+ throw new RuntimeException(e);
+ }
+ });
+ }
+
+ System.out.println(appendable.toString());
+ }
+
+ @Test
+ @Disabled("Helper to create the mappings")
+ void createPathMap() throws IOException {
+
+ List rowList = new ArrayList<>();
+
+ rowList.addAll(getRows(CompositionTestDataCanonicalJson.CORONA));
+ rowList.addAll(getRows(CompositionTestDataCanonicalJson.IPS));
+
+ EncoderTool encoderTool = new EncoderTool();
+
+ Map stringStringMap = encoderTool.buildPathEncodingMap(rowList);
+
+ StringBuilder appendable = new StringBuilder();
+ try (CSVPrinter cv = new CSVPrinter(
+ appendable,
+ CSVFormat.DEFAULT.builder().setHeader("path", "code").build())) {
+
+ stringStringMap.forEach((k, v) -> {
+ try {
+ cv.printRecord(k, v);
+ } catch (IOException e) {
+ throw new RuntimeException(e);
+ }
+ });
+ }
+
+ System.out.println(appendable.toString());
+ }
+
+ private static List getRows(CompositionTestDataCanonicalJson dataCanonicalJson) throws IOException {
+ String corona = IOUtils.toString(dataCanonicalJson.getStream(), StandardCharsets.UTF_8);
+
+ MatrixFormat cut = new MatrixFormat(new TestDataTemplateProvider());
+
+ return cut.toTable(new CanonicalJson().unmarshal(corona));
+ }
+}
diff --git a/serialisation/src/test/java/org/ehrbase/serialisation/matrixencoding/MatrixFormatTest.java b/serialisation/src/test/java/org/ehrbase/serialisation/matrixencoding/MatrixFormatTest.java
new file mode 100644
index 000000000..a10fe72ab
--- /dev/null
+++ b/serialisation/src/test/java/org/ehrbase/serialisation/matrixencoding/MatrixFormatTest.java
@@ -0,0 +1,120 @@
+/*
+ * Copyright (c) 2022 vitasystems GmbH and Hannover Medical School.
+ *
+ * This file is part of project openEHR_SDK
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * https://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.ehrbase.serialisation.matrixencoding;
+
+import static org.assertj.core.api.Assertions.assertThat;
+
+import com.nedap.archie.rm.composition.Composition;
+import java.io.IOException;
+import java.nio.charset.StandardCharsets;
+import org.apache.commons.io.IOUtils;
+import org.ehrbase.serialisation.jsonencoding.CanonicalJson;
+import org.ehrbase.serialisation.templateprovider.TestDataTemplateProvider;
+import org.ehrbase.test_data.composition.CompositionTestDataCanonicalJson;
+import org.junit.jupiter.api.Test;
+
+/**
+ * @author Stefan Spiska
+ */
+class MatrixFormatTest {
+
+ @Test
+ void toMatrix() throws IOException {
+
+ String corona =
+ IOUtils.toString(CompositionTestDataCanonicalJson.MULTI_OCCURRENCE.getStream(), StandardCharsets.UTF_8);
+
+ MatrixFormat cut = new MatrixFormat(new TestDataTemplateProvider());
+
+ String actual = cut.marshal(new CanonicalJson().unmarshal(corona));
+
+ String expected = IOUtils.toString(
+ MatrixFormat.class.getResourceAsStream("/csv/MULTI_OCCURRENCE.csv"), StandardCharsets.UTF_8);
+
+ assertThat(actual).isEqualToNormalizingNewlines(expected);
+ }
+
+ @Test
+ void toMatrixCorona() throws IOException {
+
+ String corona = IOUtils.toString(CompositionTestDataCanonicalJson.CORONA.getStream(), StandardCharsets.UTF_8);
+
+ MatrixFormat cut = new MatrixFormat(new TestDataTemplateProvider());
+
+ String actual = cut.marshal(new CanonicalJson().unmarshal(corona));
+
+ String expected =
+ IOUtils.toString(MatrixFormat.class.getResourceAsStream("/csv/CORONA.csv"), StandardCharsets.UTF_8);
+
+ assertThat(actual).isEqualToNormalizingNewlines(expected);
+ }
+
+ @Test
+ void toMatrixIPS() throws IOException {
+
+ String corona = IOUtils.toString(CompositionTestDataCanonicalJson.IPS.getStream(), StandardCharsets.UTF_8);
+
+ MatrixFormat cut = new MatrixFormat(new TestDataTemplateProvider());
+
+ String actual = cut.marshal(new CanonicalJson().unmarshal(corona));
+
+ String expected =
+ IOUtils.toString(MatrixFormat.class.getResourceAsStream("/csv/IPS.csv"), StandardCharsets.UTF_8);
+
+ assertThat(actual).isEqualToNormalizingNewlines(expected);
+ }
+
+ @Test
+ void toMatrixIPSEncode() throws IOException {
+
+ String corona = IOUtils.toString(CompositionTestDataCanonicalJson.IPS.getStream(), StandardCharsets.UTF_8);
+
+ MatrixFormat cut = new MatrixFormat(new TestDataTemplateProvider(), new FixedCodeSetEncoder());
+
+ String actual = cut.marshal(new CanonicalJson().unmarshal(corona));
+
+ String expected =
+ IOUtils.toString(MatrixFormat.class.getResourceAsStream("/csv/IPSEncode.csv"), StandardCharsets.UTF_8);
+
+ assertThat(actual).isEqualToNormalizingNewlines(expected);
+ }
+
+ @Test
+ void toMatrixCoronaEncode() throws IOException {
+
+ String corona = IOUtils.toString(CompositionTestDataCanonicalJson.CORONA.getStream(), StandardCharsets.UTF_8);
+
+ MatrixFormat cut = new MatrixFormat(new TestDataTemplateProvider(), new FixedCodeSetEncoder());
+
+ String actual = cut.marshal(new CanonicalJson().unmarshal(corona));
+
+ String expected = IOUtils.toString(
+ MatrixFormat.class.getResourceAsStream("/csv/CORONAEncode.csv"), StandardCharsets.UTF_8);
+
+ assertThat(actual).isEqualToNormalizingNewlines(expected);
+ }
+
+ @Test
+ void fromMatrix() throws IOException {
+ MatrixFormat cut = new MatrixFormat(new TestDataTemplateProvider());
+ Composition actual = cut.unmarshal(
+ IOUtils.toString(MatrixFormat.class.getResourceAsStream("/csv/IPS.csv"), StandardCharsets.UTF_8));
+
+ assertThat(actual.getContent()).size().isEqualTo(14);
+ }
+}
diff --git a/serialisation/src/test/resources/csv/CORONA.csv b/serialisation/src/test/resources/csv/CORONA.csv
new file mode 100644
index 000000000..d21b53823
--- /dev/null
+++ b/serialisation/src/test/resources/csv/CORONA.csv
@@ -0,0 +1,18 @@
+NUM,ENTITY_CONCEPT,RM_ENTITY,ENTITY_PATH,ENTITY_IDX,FIELD_IDX,FIELD_IDX_LEN,FIELDS
+0,openEHR-EHR-COMPOSITION.report.v1,COMPOSITION,/,{},{},0,"{""/_type"":""COMPOSITION"",""/category/_type"":""DV_CODED_TEXT"",""/category/value"":""event"",""/category/defining_code/_type"":""CODE_PHRASE"",""/category/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/category/defining_code/terminology_id/value"":""openehr"",""/category/defining_code/code_string"":""433"",""/context/_type"":""EVENT_CONTEXT"",""/context/start_time/_type"":""DV_DATE_TIME"",""/context/start_time/value"":""2020-05-11T22:53:12.039139+02:00"",""/context/start_time/magnitude"":63724827192,""/context/setting/_type"":""DV_CODED_TEXT"",""/context/setting/value"":""other care"",""/context/setting/defining_code/_type"":""CODE_PHRASE"",""/context/setting/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/context/setting/defining_code/terminology_id/value"":""openehr"",""/context/setting/defining_code/code_string"":""238"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Symptome']/_type"":""SECTION"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Symptome']/name/_type"":""DV_TEXT"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Symptome']/name/value"":""Symptome"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Symptome']/archetype_details/archetype_id/value"":""openEHR-EHR-SECTION.adhoc.v1"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Symptome']/archetype_details/rm_version"":""1.0.4"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Symptome']/archetype_details/_type"":""ARCHETYPED"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Symptome']/archetype_node_id"":""openEHR-EHR-SECTION.adhoc.v1"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Risikogebiet']/_type"":""SECTION"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Risikogebiet']/name/_type"":""DV_TEXT"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Risikogebiet']/name/value"":""Risikogebiet"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Risikogebiet']/archetype_details/archetype_id/value"":""openEHR-EHR-SECTION.adhoc.v1"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Risikogebiet']/archetype_details/rm_version"":""1.0.4"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Risikogebiet']/archetype_details/_type"":""ARCHETYPED"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Risikogebiet']/archetype_node_id"":""openEHR-EHR-SECTION.adhoc.v1"",""/archetype_node_id"":""openEHR-EHR-COMPOSITION.report.v1"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""de"",""/uid/_type"":""OBJECT_VERSION_ID"",""/uid/value"":""93a018f1-ad95-4d52-bb8f-0f64d7f7cce6::ehrbase.org::1"",""/archetype_details/archetype_id/value"":""openEHR-EHR-COMPOSITION.report.v1"",""/archetype_details/template_id/value"":""Corona_Anamnese"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/name/_type"":""DV_TEXT"",""/name/value"":""Bericht"",""/territory/_type"":""CODE_PHRASE"",""/territory/terminology_id/_type"":""TERMINOLOGY_ID"",""/territory/terminology_id/value"":""ISO_3166-1"",""/territory/code_string"":""DE"",""/composer/_type"":""PARTY_IDENTIFIED"",""/composer/name"":""birger.haarbrandt@plri.de""}"
+1,openEHR-EHR-OBSERVATION.story.v1,OBSERVATION,/content[openEHR-EHR-OBSERVATION.story.v1],{0},{},0,"{""/_type"":""OBSERVATION"",""/data[at0001]/_type"":""HISTORY"",""/data[at0001]/archetype_node_id"":""at0001"",""/data[at0001]/origin/_type"":""DV_DATE_TIME"",""/data[at0001]/origin/value"":""2020-05-11T22:53:12.039139+02:00"",""/data[at0001]/origin/magnitude"":63724827192,""/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0001]/name/value"":""Event Series"",""/archetype_node_id"":""openEHR-EHR-OBSERVATION.story.v1"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""de"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-OBSERVATION.story.v1"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/name/_type"":""DV_TEXT"",""/name/value"":""Geschichte/Historie"",""/subject/_type"":""PARTY_SELF""}"
+2,openEHR-EHR-OBSERVATION.story.v1,OBSERVATION,/content[openEHR-EHR-OBSERVATION.story.v1],{0},{0},1,"{""/data[at0001]/events[at0002]/_type"":""POINT_EVENT"",""/data[at0001]/events[at0002]/data[at0003]/_type"":""ITEM_TREE"",""/data[at0001]/events[at0002]/data[at0003]/archetype_node_id"":""at0003"",""/data[at0001]/events[at0002]/data[at0003]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/name/value"":""Tree"",""/data[at0001]/events[at0002]/archetype_node_id"":""at0002"",""/data[at0001]/events[at0002]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/name/value"":""Beliebiges Ereignis"",""/data[at0001]/events[at0002]/time/_type"":""DV_DATE_TIME"",""/data[at0001]/events[at0002]/time/value"":""2020-05-11T22:53:12.039139+02:00"",""/data[at0001]/events[at0002]/time/magnitude"":63724827192}"
+3,openEHR-EHR-OBSERVATION.story.v1,OBSERVATION,/content[openEHR-EHR-OBSERVATION.story.v1],{0},"{0,0}",2,"{""/data[at0001]/events[at0002]/data[at0003]/items[at0004]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0004]/value/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0004]/value/value"":""War in Ischgl""}"
+4,openEHR-EHR-OBSERVATION.symptom_sign_screening.v0,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Symptome']/items[openEHR-EHR-OBSERVATION.symptom_sign_screening.v0,'Husten']",{},{},0,"{""/_type"":""OBSERVATION"",""/data[at0001]/_type"":""HISTORY"",""/data[at0001]/archetype_node_id"":""at0001"",""/data[at0001]/origin/_type"":""DV_DATE_TIME"",""/data[at0001]/origin/value"":""2020-05-11T22:53:12.039139+02:00"",""/data[at0001]/origin/magnitude"":63724827192,""/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0001]/name/value"":""History"",""/data[at0001]/events[at0002]/_type"":""POINT_EVENT"",""/data[at0001]/events[at0002]/data[at0003]/_type"":""ITEM_TREE"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/_type"":""CLUSTER"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0004]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0004]/value/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0004]/value/value"":""Husten"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/_type"":""DV_CODED_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/value"":""Vorhanden"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/terminology_id/value"":""local"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/code_string"":""at0023"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/archetype_node_id"":""at0022"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/name/value"":""Spezifisches Symptom/Anzeichen"",""/data[at0001]/events[at0002]/data[at0003]/archetype_node_id"":""at0003"",""/data[at0001]/events[at0002]/data[at0003]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/name/value"":""Tree"",""/data[at0001]/events[at0002]/archetype_node_id"":""at0002"",""/data[at0001]/events[at0002]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/name/value"":""Beliebiges Ereignis"",""/data[at0001]/events[at0002]/time/_type"":""DV_DATE_TIME"",""/data[at0001]/events[at0002]/time/value"":""2020-05-11T22:53:12.039139+02:00"",""/data[at0001]/events[at0002]/time/magnitude"":63724827192,""/name/_type"":""DV_TEXT"",""/name/value"":""Husten"",""/archetype_node_id"":""openEHR-EHR-OBSERVATION.symptom_sign_screening.v0"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""de"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-OBSERVATION.symptom_sign_screening.v0"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/subject/_type"":""PARTY_SELF""}"
+5,openEHR-EHR-OBSERVATION.symptom_sign_screening.v0,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Symptome']/items[openEHR-EHR-OBSERVATION.symptom_sign_screening.v0,'Schnupfen']",{},{},0,"{""/_type"":""OBSERVATION"",""/data[at0001]/_type"":""HISTORY"",""/data[at0001]/archetype_node_id"":""at0001"",""/data[at0001]/origin/_type"":""DV_DATE_TIME"",""/data[at0001]/origin/value"":""2020-05-11T22:53:12.039139+02:00"",""/data[at0001]/origin/magnitude"":63724827192,""/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0001]/name/value"":""History"",""/data[at0001]/events[at0002]/_type"":""POINT_EVENT"",""/data[at0001]/events[at0002]/data[at0003]/_type"":""ITEM_TREE"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/_type"":""CLUSTER"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0004]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0004]/value/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0004]/value/value"":""Schnupfen"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/_type"":""DV_CODED_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/value"":""Vorhanden"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/terminology_id/value"":""local"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/code_string"":""at0023"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/archetype_node_id"":""at0022"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/name/value"":""Spezifisches Symptom/Anzeichen"",""/data[at0001]/events[at0002]/data[at0003]/archetype_node_id"":""at0003"",""/data[at0001]/events[at0002]/data[at0003]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/name/value"":""Tree"",""/data[at0001]/events[at0002]/archetype_node_id"":""at0002"",""/data[at0001]/events[at0002]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/name/value"":""Beliebiges Ereignis"",""/data[at0001]/events[at0002]/time/_type"":""DV_DATE_TIME"",""/data[at0001]/events[at0002]/time/value"":""2020-05-11T22:53:12.039139+02:00"",""/data[at0001]/events[at0002]/time/magnitude"":63724827192,""/name/_type"":""DV_TEXT"",""/name/value"":""Schnupfen"",""/archetype_node_id"":""openEHR-EHR-OBSERVATION.symptom_sign_screening.v0"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""de"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-OBSERVATION.symptom_sign_screening.v0"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/subject/_type"":""PARTY_SELF""}"
+6,openEHR-EHR-OBSERVATION.symptom_sign_screening.v0,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Symptome']/items[openEHR-EHR-OBSERVATION.symptom_sign_screening.v0,'Heiserkeit']",{},{},0,"{""/_type"":""OBSERVATION"",""/data[at0001]/_type"":""HISTORY"",""/data[at0001]/archetype_node_id"":""at0001"",""/data[at0001]/origin/_type"":""DV_DATE_TIME"",""/data[at0001]/origin/value"":""2020-05-11T22:53:12.039139+02:00"",""/data[at0001]/origin/magnitude"":63724827192,""/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0001]/name/value"":""History"",""/data[at0001]/events[at0002]/_type"":""POINT_EVENT"",""/data[at0001]/events[at0002]/data[at0003]/_type"":""ITEM_TREE"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/_type"":""CLUSTER"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0004]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0004]/value/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0004]/value/value"":""Heiserkeit"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/_type"":""DV_CODED_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/value"":""Nicht vorhanden"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/terminology_id/value"":""local"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/code_string"":""at0024"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/archetype_node_id"":""at0022"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/name/value"":""Spezifisches Symptom/Anzeichen"",""/data[at0001]/events[at0002]/data[at0003]/archetype_node_id"":""at0003"",""/data[at0001]/events[at0002]/data[at0003]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/name/value"":""Tree"",""/data[at0001]/events[at0002]/archetype_node_id"":""at0002"",""/data[at0001]/events[at0002]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/name/value"":""Beliebiges Ereignis"",""/data[at0001]/events[at0002]/time/_type"":""DV_DATE_TIME"",""/data[at0001]/events[at0002]/time/value"":""2020-05-11T22:53:12.039139+02:00"",""/data[at0001]/events[at0002]/time/magnitude"":63724827192,""/name/_type"":""DV_TEXT"",""/name/value"":""Heiserkeit"",""/archetype_node_id"":""openEHR-EHR-OBSERVATION.symptom_sign_screening.v0"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""de"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-OBSERVATION.symptom_sign_screening.v0"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/subject/_type"":""PARTY_SELF""}"
+7,openEHR-EHR-OBSERVATION.symptom_sign_screening.v0,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Symptome']/items[openEHR-EHR-OBSERVATION.symptom_sign_screening.v0,'Fieber oder erhöhte Körpertemperatur']",{},{},0,"{""/_type"":""OBSERVATION"",""/data[at0001]/_type"":""HISTORY"",""/data[at0001]/archetype_node_id"":""at0001"",""/data[at0001]/origin/_type"":""DV_DATE_TIME"",""/data[at0001]/origin/value"":""2020-05-11T22:53:12.039139+02:00"",""/data[at0001]/origin/magnitude"":63724827192,""/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0001]/name/value"":""History"",""/data[at0001]/events[at0002]/_type"":""POINT_EVENT"",""/data[at0001]/events[at0002]/data[at0003]/_type"":""ITEM_TREE"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/_type"":""CLUSTER"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0004]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0004]/value/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0004]/value/value"":""Fieber oder erhöhte Körpertemperatur"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/_type"":""DV_CODED_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/value"":""Vorhanden"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/terminology_id/value"":""local"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/code_string"":""at0023"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/archetype_node_id"":""at0022"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/name/value"":""Spezifisches Symptom/Anzeichen"",""/data[at0001]/events[at0002]/data[at0003]/archetype_node_id"":""at0003"",""/data[at0001]/events[at0002]/data[at0003]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/name/value"":""Tree"",""/data[at0001]/events[at0002]/archetype_node_id"":""at0002"",""/data[at0001]/events[at0002]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/name/value"":""Beliebiges Ereignis"",""/data[at0001]/events[at0002]/time/_type"":""DV_DATE_TIME"",""/data[at0001]/events[at0002]/time/value"":""2020-05-11T22:53:12.039139+02:00"",""/data[at0001]/events[at0002]/time/magnitude"":63724827192,""/name/_type"":""DV_TEXT"",""/name/value"":""Fieber oder erhöhte Körpertemperatur"",""/archetype_node_id"":""openEHR-EHR-OBSERVATION.symptom_sign_screening.v0"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""de"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-OBSERVATION.symptom_sign_screening.v0"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/subject/_type"":""PARTY_SELF""}"
+8,openEHR-EHR-OBSERVATION.body_temperature.v2,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Symptome']/items[openEHR-EHR-OBSERVATION.body_temperature.v2]",{},{},0,"{""/_type"":""OBSERVATION"",""/data[at0002]/_type"":""HISTORY"",""/data[at0002]/archetype_node_id"":""at0002"",""/data[at0002]/origin/_type"":""DV_DATE_TIME"",""/data[at0002]/origin/value"":""2020-05-11T22:53:12.039139+02:00"",""/data[at0002]/origin/magnitude"":63724827192,""/data[at0002]/name/_type"":""DV_TEXT"",""/data[at0002]/name/value"":""History"",""/data[at0002]/events[at0003]/_type"":""POINT_EVENT"",""/data[at0002]/events[at0003]/data[at0001]/_type"":""ITEM_TREE"",""/data[at0002]/events[at0003]/data[at0001]/items[at0004]/_type"":""ELEMENT"",""/data[at0002]/events[at0003]/data[at0001]/items[at0004]/value/_type"":""DV_QUANTITY"",""/data[at0002]/events[at0003]/data[at0001]/items[at0004]/value/units"":""°C"",""/data[at0002]/events[at0003]/data[at0001]/items[at0004]/value/magnitude"":39.0,""/data[at0002]/events[at0003]/data[at0001]/archetype_node_id"":""at0001"",""/data[at0002]/events[at0003]/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0002]/events[at0003]/data[at0001]/name/value"":""Single"",""/data[at0002]/events[at0003]/archetype_node_id"":""at0003"",""/data[at0002]/events[at0003]/name/_type"":""DV_TEXT"",""/data[at0002]/events[at0003]/name/value"":""Beliebiges Ereignis"",""/data[at0002]/events[at0003]/time/_type"":""DV_DATE_TIME"",""/data[at0002]/events[at0003]/time/value"":""2020-05-11T22:53:12.039139+02:00"",""/data[at0002]/events[at0003]/time/magnitude"":63724827192,""/archetype_node_id"":""openEHR-EHR-OBSERVATION.body_temperature.v2"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""de"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-OBSERVATION.body_temperature.v2"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/name/_type"":""DV_TEXT"",""/name/value"":""Körpertemperatur"",""/subject/_type"":""PARTY_SELF""}"
+9,openEHR-EHR-OBSERVATION.symptom_sign_screening.v0,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Symptome']/items[openEHR-EHR-OBSERVATION.symptom_sign_screening.v0,'Gestörter Geruchssinn']",{},{},0,"{""/_type"":""OBSERVATION"",""/data[at0001]/_type"":""HISTORY"",""/data[at0001]/archetype_node_id"":""at0001"",""/data[at0001]/origin/_type"":""DV_DATE_TIME"",""/data[at0001]/origin/value"":""2020-05-11T22:53:12.039139+02:00"",""/data[at0001]/origin/magnitude"":63724827192,""/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0001]/name/value"":""History"",""/data[at0001]/events[at0002]/_type"":""POINT_EVENT"",""/data[at0001]/events[at0002]/data[at0003]/_type"":""ITEM_TREE"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/_type"":""CLUSTER"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0004]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0004]/value/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0004]/value/value"":""gestörter Geruchssinn"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/_type"":""DV_CODED_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/value"":""Nicht vorhanden"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/terminology_id/value"":""local"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/code_string"":""at0024"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/archetype_node_id"":""at0022"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/name/value"":""Spezifisches Symptom/Anzeichen"",""/data[at0001]/events[at0002]/data[at0003]/archetype_node_id"":""at0003"",""/data[at0001]/events[at0002]/data[at0003]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/name/value"":""Tree"",""/data[at0001]/events[at0002]/archetype_node_id"":""at0002"",""/data[at0001]/events[at0002]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/name/value"":""Beliebiges Ereignis"",""/data[at0001]/events[at0002]/time/_type"":""DV_DATE_TIME"",""/data[at0001]/events[at0002]/time/value"":""2020-05-11T22:53:12.039139+02:00"",""/data[at0001]/events[at0002]/time/magnitude"":63724827192,""/name/_type"":""DV_TEXT"",""/name/value"":""Gestörter Geruchssinn"",""/archetype_node_id"":""openEHR-EHR-OBSERVATION.symptom_sign_screening.v0"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""de"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-OBSERVATION.symptom_sign_screening.v0"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/subject/_type"":""PARTY_SELF""}"
+10,openEHR-EHR-OBSERVATION.symptom_sign_screening.v0,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Symptome']/items[openEHR-EHR-OBSERVATION.symptom_sign_screening.v0,'Gestörter Geschmackssinn']",{},{},0,"{""/_type"":""OBSERVATION"",""/data[at0001]/_type"":""HISTORY"",""/data[at0001]/archetype_node_id"":""at0001"",""/data[at0001]/origin/_type"":""DV_DATE_TIME"",""/data[at0001]/origin/value"":""2020-05-11T22:53:12.039139+02:00"",""/data[at0001]/origin/magnitude"":63724827192,""/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0001]/name/value"":""History"",""/data[at0001]/events[at0002]/_type"":""POINT_EVENT"",""/data[at0001]/events[at0002]/data[at0003]/_type"":""ITEM_TREE"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/_type"":""CLUSTER"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0004]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0004]/value/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0004]/value/value"":""gestörter Geschmackssinn"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/_type"":""DV_CODED_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/value"":""Nicht vorhanden"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/terminology_id/value"":""local"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/code_string"":""at0024"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/archetype_node_id"":""at0022"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/name/value"":""Spezifisches Symptom/Anzeichen"",""/data[at0001]/events[at0002]/data[at0003]/archetype_node_id"":""at0003"",""/data[at0001]/events[at0002]/data[at0003]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/name/value"":""Tree"",""/data[at0001]/events[at0002]/archetype_node_id"":""at0002"",""/data[at0001]/events[at0002]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/name/value"":""Beliebiges Ereignis"",""/data[at0001]/events[at0002]/time/_type"":""DV_DATE_TIME"",""/data[at0001]/events[at0002]/time/value"":""2020-05-11T22:53:12.039139+02:00"",""/data[at0001]/events[at0002]/time/magnitude"":63724827192,""/name/_type"":""DV_TEXT"",""/name/value"":""Gestörter Geschmackssinn"",""/archetype_node_id"":""openEHR-EHR-OBSERVATION.symptom_sign_screening.v0"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""de"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-OBSERVATION.symptom_sign_screening.v0"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/subject/_type"":""PARTY_SELF""}"
+11,openEHR-EHR-OBSERVATION.symptom_sign_screening.v0,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Symptome']/items[openEHR-EHR-OBSERVATION.symptom_sign_screening.v0,'Durchfall']",{},{},0,"{""/_type"":""OBSERVATION"",""/data[at0001]/_type"":""HISTORY"",""/data[at0001]/archetype_node_id"":""at0001"",""/data[at0001]/origin/_type"":""DV_DATE_TIME"",""/data[at0001]/origin/value"":""2020-05-11T22:53:12.039139+02:00"",""/data[at0001]/origin/magnitude"":63724827192,""/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0001]/name/value"":""History"",""/data[at0001]/events[at0002]/_type"":""POINT_EVENT"",""/data[at0001]/events[at0002]/data[at0003]/_type"":""ITEM_TREE"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/_type"":""CLUSTER"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0004]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0004]/value/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0004]/value/value"":""Durchfall"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/_type"":""DV_CODED_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/value"":""Nicht vorhanden"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/terminology_id/value"":""local"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/items[at0005]/value/defining_code/code_string"":""at0024"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/archetype_node_id"":""at0022"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0022]/name/value"":""Spezifisches Symptom/Anzeichen"",""/data[at0001]/events[at0002]/data[at0003]/archetype_node_id"":""at0003"",""/data[at0001]/events[at0002]/data[at0003]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/name/value"":""Tree"",""/data[at0001]/events[at0002]/archetype_node_id"":""at0002"",""/data[at0001]/events[at0002]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/name/value"":""Beliebiges Ereignis"",""/data[at0001]/events[at0002]/time/_type"":""DV_DATE_TIME"",""/data[at0001]/events[at0002]/time/value"":""2020-05-11T22:53:12.039139+02:00"",""/data[at0001]/events[at0002]/time/magnitude"":63724827192,""/name/_type"":""DV_TEXT"",""/name/value"":""Durchfall"",""/archetype_node_id"":""openEHR-EHR-OBSERVATION.symptom_sign_screening.v0"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""de"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-OBSERVATION.symptom_sign_screening.v0"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/subject/_type"":""PARTY_SELF""}"
+12,openEHR-EHR-OBSERVATION.travel_history.v0,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Risikogebiet']/items[openEHR-EHR-OBSERVATION.travel_history.v0]",{0},{},0,"{""/_type"":""OBSERVATION"",""/data[at0001]/_type"":""HISTORY"",""/data[at0001]/archetype_node_id"":""at0001"",""/data[at0001]/origin/_type"":""DV_DATE_TIME"",""/data[at0001]/origin/value"":""2020-05-11T22:53:12.039139+02:00"",""/data[at0001]/origin/magnitude"":63724827192,""/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0001]/name/value"":""History"",""/data[at0001]/events[at0002]/_type"":""POINT_EVENT"",""/data[at0001]/events[at0002]/data[at0003]/_type"":""ITEM_TREE"",""/data[at0001]/events[at0002]/data[at0003]/items[at0111,'Aufenthalt in den letzten 14 Tage in einem der Risikogebiete für Coronainfektion oder Kontakt zu Menschen, die dort waren']/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0111,'Aufenthalt in den letzten 14 Tage in einem der Risikogebiete für Coronainfektion oder Kontakt zu Menschen, die dort waren']/value/_type"":""DV_CODED_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0111,'Aufenthalt in den letzten 14 Tage in einem der Risikogebiete für Coronainfektion oder Kontakt zu Menschen, die dort waren']/value/value"":""Ja"",""/data[at0001]/events[at0002]/data[at0003]/items[at0111,'Aufenthalt in den letzten 14 Tage in einem der Risikogebiete für Coronainfektion oder Kontakt zu Menschen, die dort waren']/value/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/events[at0002]/data[at0003]/items[at0111,'Aufenthalt in den letzten 14 Tage in einem der Risikogebiete für Coronainfektion oder Kontakt zu Menschen, die dort waren']/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/events[at0002]/data[at0003]/items[at0111,'Aufenthalt in den letzten 14 Tage in einem der Risikogebiete für Coronainfektion oder Kontakt zu Menschen, die dort waren']/value/defining_code/terminology_id/value"":""local"",""/data[at0001]/events[at0002]/data[at0003]/items[at0111,'Aufenthalt in den letzten 14 Tage in einem der Risikogebiete für Coronainfektion oder Kontakt zu Menschen, die dort waren']/value/defining_code/code_string"":""at0112"",""/data[at0001]/events[at0002]/data[at0003]/items[at0111,'Aufenthalt in den letzten 14 Tage in einem der Risikogebiete für Coronainfektion oder Kontakt zu Menschen, die dort waren']/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0111,'Aufenthalt in den letzten 14 Tage in einem der Risikogebiete für Coronainfektion oder Kontakt zu Menschen, die dort waren']/name/value"":""Aufenthalt in den letzten 14 Tage in einem der Risikogebiete für Coronainfektion oder Kontakt zu Menschen, die dort waren"",""/data[at0001]/events[at0002]/data[at0003]/items[at0134]/_type"":""CLUSTER"",""/data[at0001]/events[at0002]/data[at0003]/items[at0134]/items[openEHR-EHR-CLUSTER.location.v1]/_type"":""CLUSTER"",""/data[at0001]/events[at0002]/data[at0003]/items[at0134]/items[openEHR-EHR-CLUSTER.location.v1]/items[at0046]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0134]/items[openEHR-EHR-CLUSTER.location.v1]/items[at0046]/value/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0134]/items[openEHR-EHR-CLUSTER.location.v1]/items[at0046]/value/value"":""Norditalien"",""/data[at0001]/events[at0002]/data[at0003]/items[at0134]/items[openEHR-EHR-CLUSTER.location.v1]/archetype_details/archetype_id/value"":""openEHR-EHR-CLUSTER.location.v1"",""/data[at0001]/events[at0002]/data[at0003]/items[at0134]/items[openEHR-EHR-CLUSTER.location.v1]/archetype_details/rm_version"":""1.0.4"",""/data[at0001]/events[at0002]/data[at0003]/items[at0134]/items[openEHR-EHR-CLUSTER.location.v1]/archetype_details/_type"":""ARCHETYPED"",""/data[at0001]/events[at0002]/data[at0003]/items[at0134]/items[openEHR-EHR-CLUSTER.location.v1]/archetype_node_id"":""openEHR-EHR-CLUSTER.location.v1"",""/data[at0001]/events[at0002]/data[at0003]/items[at0134]/items[openEHR-EHR-CLUSTER.location.v1]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0134]/items[openEHR-EHR-CLUSTER.location.v1]/name/value"":""Standort"",""/data[at0001]/events[at0002]/data[at0003]/items[at0134]/archetype_node_id"":""at0134"",""/data[at0001]/events[at0002]/data[at0003]/items[at0134]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0134]/name/value"":""Ortsbeschreibung"",""/data[at0001]/events[at0002]/data[at0003]/archetype_node_id"":""at0003"",""/data[at0001]/events[at0002]/data[at0003]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/name/value"":""Tree"",""/data[at0001]/events[at0002]/archetype_node_id"":""at0002"",""/data[at0001]/events[at0002]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/name/value"":""Jedes Ereignis"",""/data[at0001]/events[at0002]/time/_type"":""DV_DATE_TIME"",""/data[at0001]/events[at0002]/time/value"":""2020-05-11T22:53:12.039139+02:00"",""/data[at0001]/events[at0002]/time/magnitude"":63724827192,""/archetype_node_id"":""openEHR-EHR-OBSERVATION.travel_history.v0"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""de"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-OBSERVATION.travel_history.v0"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/name/_type"":""DV_TEXT"",""/name/value"":""Historie der Reise"",""/subject/_type"":""PARTY_SELF""}"
+13,openEHR-EHR-OBSERVATION.travel_event.v0,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Risikogebiet']/items[openEHR-EHR-OBSERVATION.travel_event.v0]",{0},{},0,"{""/_type"":""OBSERVATION"",""/data[at0001]/_type"":""HISTORY"",""/data[at0001]/archetype_node_id"":""at0001"",""/data[at0001]/origin/_type"":""DV_DATE_TIME"",""/data[at0001]/origin/value"":""2020-05-11T22:53:12.039139+02:00"",""/data[at0001]/origin/magnitude"":63724827192,""/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0001]/name/value"":""History"",""/archetype_node_id"":""openEHR-EHR-OBSERVATION.travel_event.v0"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""de"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-OBSERVATION.travel_event.v0"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/name/_type"":""DV_TEXT"",""/name/value"":""Reisefall"",""/subject/_type"":""PARTY_SELF""}"
+14,openEHR-EHR-OBSERVATION.travel_event.v0,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Risikogebiet']/items[openEHR-EHR-OBSERVATION.travel_event.v0]",{0},{0},1,"{""/data[at0001]/events[at0002]/_type"":""INTERVAL_EVENT"",""/data[at0001]/events[at0002]/data[at0003]/_type"":""ITEM_TREE"",""/data[at0001]/events[at0002]/data[at0003]/items[at0004,'Letzte Reise?']/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0004,'Letzte Reise?']/value/_type"":""DV_CODED_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0004,'Letzte Reise?']/value/value"":""Ja - national"",""/data[at0001]/events[at0002]/data[at0003]/items[at0004,'Letzte Reise?']/value/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/events[at0002]/data[at0003]/items[at0004,'Letzte Reise?']/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/events[at0002]/data[at0003]/items[at0004,'Letzte Reise?']/value/defining_code/terminology_id/value"":""local"",""/data[at0001]/events[at0002]/data[at0003]/items[at0004,'Letzte Reise?']/value/defining_code/code_string"":""at0006"",""/data[at0001]/events[at0002]/data[at0003]/items[at0004,'Letzte Reise?']/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0004,'Letzte Reise?']/name/value"":""Letzte Reise?"",""/data[at0001]/events[at0002]/data[at0003]/archetype_node_id"":""at0003"",""/data[at0001]/events[at0002]/data[at0003]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/name/value"":""Tree"",""/data[at0001]/events[at0002]/archetype_node_id"":""at0002"",""/data[at0001]/events[at0002]/math_function/_type"":""DV_CODED_TEXT"",""/data[at0001]/events[at0002]/math_function/value"":""mean"",""/data[at0001]/events[at0002]/math_function/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/events[at0002]/math_function/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/events[at0002]/math_function/defining_code/terminology_id/value"":""openehr"",""/data[at0001]/events[at0002]/math_function/defining_code/code_string"":""146"",""/data[at0001]/events[at0002]/width/_type"":""DV_DURATION"",""/data[at0001]/events[at0002]/width/value"":""P0D"",""/data[at0001]/events[at0002]/width/magnitude"":0.0,""/data[at0001]/events[at0002]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/name/value"":""Beliebiges Intervallereignis"",""/data[at0001]/events[at0002]/time/_type"":""DV_DATE_TIME"",""/data[at0001]/events[at0002]/time/value"":""2020-05-11T22:53:12.039139+02:00"",""/data[at0001]/events[at0002]/time/magnitude"":63724827192}"
+15,openEHR-EHR-OBSERVATION.travel_event.v0,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Risikogebiet']/items[openEHR-EHR-OBSERVATION.travel_event.v0]",{0},"{0,0}",2,"{""/data[at0001]/events[at0002]/data[at0003]/items[at0008]/_type"":""CLUSTER"",""/data[at0001]/events[at0002]/data[at0003]/items[at0008]/archetype_node_id"":""at0008"",""/data[at0001]/events[at0002]/data[at0003]/items[at0008]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0008]/name/value"":""Bestimmte Reise""}"
+16,openEHR-EHR-OBSERVATION.travel_event.v0,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Risikogebiet']/items[openEHR-EHR-OBSERVATION.travel_event.v0]",{0},"{0,0,0}",3,"{""/data[at0001]/events[at0002]/data[at0003]/items[at0008]/items[at0010]/_type"":""CLUSTER"",""/data[at0001]/events[at0002]/data[at0003]/items[at0008]/items[at0010]/items[at0011]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0008]/items[at0010]/items[at0011]/value/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0008]/items[at0010]/items[at0011]/value/value"":""Deutschland"",""/data[at0001]/events[at0002]/data[at0003]/items[at0008]/items[at0010]/items[at0012]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0008]/items[at0010]/items[at0012]/value/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0008]/items[at0010]/items[at0012]/value/value"":""Baden-Württemberg"",""/data[at0001]/events[at0002]/data[at0003]/items[at0008]/items[at0010]/items[at0013]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0008]/items[at0010]/items[at0013]/value/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0008]/items[at0010]/items[at0013]/value/value"":""Mannheim"",""/data[at0001]/events[at0002]/data[at0003]/items[at0008]/items[at0010]/archetype_node_id"":""at0010"",""/data[at0001]/events[at0002]/data[at0003]/items[at0008]/items[at0010]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0008]/items[at0010]/name/value"":""Bestimmtes Reiseziel""}"
diff --git a/serialisation/src/test/resources/csv/CORONAEncode.csv b/serialisation/src/test/resources/csv/CORONAEncode.csv
new file mode 100644
index 000000000..f4e3e241b
--- /dev/null
+++ b/serialisation/src/test/resources/csv/CORONAEncode.csv
@@ -0,0 +1,18 @@
+NUM,ENTITY_CONCEPT,RM_ENTITY,ENTITY_PATH,ENTITY_IDX,FIELD_IDX,FIELD_IDX_LEN,FIELDS
+0,openEHR-EHR-COMPOSITION.report.v1,COMPOSITION,/,{},{},0,"{""/!5"":""COMPOSITION"",""/!b9"":""DV_CODED_TEXT"",""/!ci"":""event"",""/!b6"":""CODE_PHRASE"",""/!bq"":""TERMINOLOGY_ID"",""/!cy"":""openehr"",""/!b8"":""433"",""/!b4"":""EVENT_CONTEXT"",""/!ck"":""DV_DATE_TIME"",""/!cr"":""2020-05-11T22:53:12.039139+02:00"",""/!cg"":63724827192,""/!cb"":""DV_CODED_TEXT"",""/!b0"":""other care"",""/!cl"":""CODE_PHRASE"",""/!b5"":""TERMINOLOGY_ID"",""/!cd"":""openehr"",""/!c3"":""238"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Symptome']/d"":""SECTION"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Symptome']/f/d"":""DV_TEXT"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Symptome']/f/c"":""Symptome"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Symptome']/n/z/c"":""openEHR-EHR-SECTION.adhoc.v1"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Symptome']/n/y"":""1.0.4"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Symptome']/n/d"":""ARCHETYPED"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Symptome']/k"":""openEHR-EHR-SECTION.adhoc.v1"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Risikogebiet']/d"":""SECTION"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Risikogebiet']/f/d"":""DV_TEXT"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Risikogebiet']/f/c"":""Risikogebiet"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Risikogebiet']/n/z/c"":""openEHR-EHR-SECTION.adhoc.v1"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Risikogebiet']/n/y"":""1.0.4"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Risikogebiet']/n/d"":""ARCHETYPED"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Risikogebiet']/k"":""openEHR-EHR-SECTION.adhoc.v1"",""/!2"":""openEHR-EHR-COMPOSITION.report.v1"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""de"",""/!bo"":""OBJECT_VERSION_ID"",""/!bn"":""93a018f1-ad95-4d52-bb8f-0f64d7f7cce6::ehrbase.org::1"",""/!3"":""openEHR-EHR-COMPOSITION.report.v1"",""/!b2"":""Corona_Anamnese"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!r"":""DV_TEXT"",""/!1"":""Bericht"",""/!b7"":""CODE_PHRASE"",""/!c2"":""TERMINOLOGY_ID"",""/!b1"":""ISO_3166-1"",""/!b3"":""DE"",""/!cn"":""PARTY_IDENTIFIED"",""/!cp"":""birger.haarbrandt@plri.de""}"
+1,openEHR-EHR-OBSERVATION.story.v1,OBSERVATION,/h[openEHR-EHR-OBSERVATION.story.v1],{0},{},0,"{""/!5"":""OBSERVATION"",""/b[at0001]/d"":""HISTORY"",""/b[at0001]/k"":""at0001"",""/b[at0001]/o/d"":""DV_DATE_TIME"",""/b[at0001]/o/c"":""2020-05-11T22:53:12.039139+02:00"",""/b[at0001]/o/l"":63724827192,""/b[at0001]/f/d"":""DV_TEXT"",""/b[at0001]/f/c"":""Event Series"",""/!2"":""openEHR-EHR-OBSERVATION.story.v1"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""de"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-OBSERVATION.story.v1"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!r"":""DV_TEXT"",""/!1"":""Geschichte/Historie"",""/!0"":""PARTY_SELF""}"
+2,openEHR-EHR-OBSERVATION.story.v1,OBSERVATION,/h[openEHR-EHR-OBSERVATION.story.v1],{0},{0},1,"{""/b[at0001]/e[at0002]/d"":""POINT_EVENT"",""/b[at0001]/e[at0002]/b[at0003]/d"":""ITEM_TREE"",""/b[at0001]/e[at0002]/b[at0003]/k"":""at0003"",""/b[at0001]/e[at0002]/b[at0003]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/f/c"":""Tree"",""/b[at0001]/e[at0002]/k"":""at0002"",""/b[at0001]/e[at0002]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/f/c"":""Beliebiges Ereignis"",""/b[at0001]/e[at0002]/p/d"":""DV_DATE_TIME"",""/b[at0001]/e[at0002]/p/c"":""2020-05-11T22:53:12.039139+02:00"",""/b[at0001]/e[at0002]/p/l"":63724827192}"
+3,openEHR-EHR-OBSERVATION.story.v1,OBSERVATION,/h[openEHR-EHR-OBSERVATION.story.v1],{0},"{0,0}",2,"{""/b[at0001]/e[at0002]/b[at0003]/a[at0004]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0004]/c/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0004]/c/c"":""War in Ischgl""}"
+4,openEHR-EHR-OBSERVATION.symptom_sign_screening.v0,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Symptome']/a[openEHR-EHR-OBSERVATION.symptom_sign_screening.v0,'Husten']",{},{},0,"{""/!5"":""OBSERVATION"",""/b[at0001]/d"":""HISTORY"",""/b[at0001]/k"":""at0001"",""/b[at0001]/o/d"":""DV_DATE_TIME"",""/b[at0001]/o/c"":""2020-05-11T22:53:12.039139+02:00"",""/b[at0001]/o/l"":63724827192,""/b[at0001]/f/d"":""DV_TEXT"",""/b[at0001]/f/c"":""History"",""/b[at0001]/e[at0002]/d"":""POINT_EVENT"",""/b[at0001]/e[at0002]/b[at0003]/d"":""ITEM_TREE"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/d"":""CLUSTER"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0004]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0004]/c/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0004]/c/c"":""Husten"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/c/d"":""DV_CODED_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/c/c"":""Vorhanden"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/c/j/d"":""CODE_PHRASE"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/c/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/c/j/m/c"":""local"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/c/j/r"":""at0023"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/k"":""at0022"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/f/c"":""Spezifisches Symptom/Anzeichen"",""/b[at0001]/e[at0002]/b[at0003]/k"":""at0003"",""/b[at0001]/e[at0002]/b[at0003]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/f/c"":""Tree"",""/b[at0001]/e[at0002]/k"":""at0002"",""/b[at0001]/e[at0002]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/f/c"":""Beliebiges Ereignis"",""/b[at0001]/e[at0002]/p/d"":""DV_DATE_TIME"",""/b[at0001]/e[at0002]/p/c"":""2020-05-11T22:53:12.039139+02:00"",""/b[at0001]/e[at0002]/p/l"":63724827192,""/!r"":""DV_TEXT"",""/!1"":""Husten"",""/!2"":""openEHR-EHR-OBSERVATION.symptom_sign_screening.v0"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""de"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-OBSERVATION.symptom_sign_screening.v0"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!0"":""PARTY_SELF""}"
+5,openEHR-EHR-OBSERVATION.symptom_sign_screening.v0,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Symptome']/a[openEHR-EHR-OBSERVATION.symptom_sign_screening.v0,'Schnupfen']",{},{},0,"{""/!5"":""OBSERVATION"",""/b[at0001]/d"":""HISTORY"",""/b[at0001]/k"":""at0001"",""/b[at0001]/o/d"":""DV_DATE_TIME"",""/b[at0001]/o/c"":""2020-05-11T22:53:12.039139+02:00"",""/b[at0001]/o/l"":63724827192,""/b[at0001]/f/d"":""DV_TEXT"",""/b[at0001]/f/c"":""History"",""/b[at0001]/e[at0002]/d"":""POINT_EVENT"",""/b[at0001]/e[at0002]/b[at0003]/d"":""ITEM_TREE"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/d"":""CLUSTER"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0004]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0004]/c/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0004]/c/c"":""Schnupfen"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/c/d"":""DV_CODED_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/c/c"":""Vorhanden"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/c/j/d"":""CODE_PHRASE"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/c/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/c/j/m/c"":""local"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/c/j/r"":""at0023"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/k"":""at0022"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/f/c"":""Spezifisches Symptom/Anzeichen"",""/b[at0001]/e[at0002]/b[at0003]/k"":""at0003"",""/b[at0001]/e[at0002]/b[at0003]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/f/c"":""Tree"",""/b[at0001]/e[at0002]/k"":""at0002"",""/b[at0001]/e[at0002]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/f/c"":""Beliebiges Ereignis"",""/b[at0001]/e[at0002]/p/d"":""DV_DATE_TIME"",""/b[at0001]/e[at0002]/p/c"":""2020-05-11T22:53:12.039139+02:00"",""/b[at0001]/e[at0002]/p/l"":63724827192,""/!r"":""DV_TEXT"",""/!1"":""Schnupfen"",""/!2"":""openEHR-EHR-OBSERVATION.symptom_sign_screening.v0"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""de"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-OBSERVATION.symptom_sign_screening.v0"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!0"":""PARTY_SELF""}"
+6,openEHR-EHR-OBSERVATION.symptom_sign_screening.v0,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Symptome']/a[openEHR-EHR-OBSERVATION.symptom_sign_screening.v0,'Heiserkeit']",{},{},0,"{""/!5"":""OBSERVATION"",""/b[at0001]/d"":""HISTORY"",""/b[at0001]/k"":""at0001"",""/b[at0001]/o/d"":""DV_DATE_TIME"",""/b[at0001]/o/c"":""2020-05-11T22:53:12.039139+02:00"",""/b[at0001]/o/l"":63724827192,""/b[at0001]/f/d"":""DV_TEXT"",""/b[at0001]/f/c"":""History"",""/b[at0001]/e[at0002]/d"":""POINT_EVENT"",""/b[at0001]/e[at0002]/b[at0003]/d"":""ITEM_TREE"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/d"":""CLUSTER"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0004]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0004]/c/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0004]/c/c"":""Heiserkeit"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/c/d"":""DV_CODED_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/c/c"":""Nicht vorhanden"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/c/j/d"":""CODE_PHRASE"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/c/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/c/j/m/c"":""local"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/c/j/r"":""at0024"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/k"":""at0022"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/f/c"":""Spezifisches Symptom/Anzeichen"",""/b[at0001]/e[at0002]/b[at0003]/k"":""at0003"",""/b[at0001]/e[at0002]/b[at0003]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/f/c"":""Tree"",""/b[at0001]/e[at0002]/k"":""at0002"",""/b[at0001]/e[at0002]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/f/c"":""Beliebiges Ereignis"",""/b[at0001]/e[at0002]/p/d"":""DV_DATE_TIME"",""/b[at0001]/e[at0002]/p/c"":""2020-05-11T22:53:12.039139+02:00"",""/b[at0001]/e[at0002]/p/l"":63724827192,""/!r"":""DV_TEXT"",""/!1"":""Heiserkeit"",""/!2"":""openEHR-EHR-OBSERVATION.symptom_sign_screening.v0"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""de"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-OBSERVATION.symptom_sign_screening.v0"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!0"":""PARTY_SELF""}"
+7,openEHR-EHR-OBSERVATION.symptom_sign_screening.v0,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Symptome']/a[openEHR-EHR-OBSERVATION.symptom_sign_screening.v0,'Fieber oder erhöhte Körpertemperatur']",{},{},0,"{""/!5"":""OBSERVATION"",""/b[at0001]/d"":""HISTORY"",""/b[at0001]/k"":""at0001"",""/b[at0001]/o/d"":""DV_DATE_TIME"",""/b[at0001]/o/c"":""2020-05-11T22:53:12.039139+02:00"",""/b[at0001]/o/l"":63724827192,""/b[at0001]/f/d"":""DV_TEXT"",""/b[at0001]/f/c"":""History"",""/b[at0001]/e[at0002]/d"":""POINT_EVENT"",""/b[at0001]/e[at0002]/b[at0003]/d"":""ITEM_TREE"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/d"":""CLUSTER"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0004]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0004]/c/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0004]/c/c"":""Fieber oder erhöhte Körpertemperatur"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/c/d"":""DV_CODED_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/c/c"":""Vorhanden"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/c/j/d"":""CODE_PHRASE"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/c/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/c/j/m/c"":""local"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/c/j/r"":""at0023"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/k"":""at0022"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/f/c"":""Spezifisches Symptom/Anzeichen"",""/b[at0001]/e[at0002]/b[at0003]/k"":""at0003"",""/b[at0001]/e[at0002]/b[at0003]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/f/c"":""Tree"",""/b[at0001]/e[at0002]/k"":""at0002"",""/b[at0001]/e[at0002]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/f/c"":""Beliebiges Ereignis"",""/b[at0001]/e[at0002]/p/d"":""DV_DATE_TIME"",""/b[at0001]/e[at0002]/p/c"":""2020-05-11T22:53:12.039139+02:00"",""/b[at0001]/e[at0002]/p/l"":63724827192,""/!r"":""DV_TEXT"",""/!1"":""Fieber oder erhöhte Körpertemperatur"",""/!2"":""openEHR-EHR-OBSERVATION.symptom_sign_screening.v0"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""de"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-OBSERVATION.symptom_sign_screening.v0"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!0"":""PARTY_SELF""}"
+8,openEHR-EHR-OBSERVATION.body_temperature.v2,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Symptome']/a[openEHR-EHR-OBSERVATION.body_temperature.v2]",{},{},0,"{""/!5"":""OBSERVATION"",""/b[at0002]/d"":""HISTORY"",""/b[at0002]/k"":""at0002"",""/b[at0002]/o/d"":""DV_DATE_TIME"",""/b[at0002]/o/c"":""2020-05-11T22:53:12.039139+02:00"",""/b[at0002]/o/l"":63724827192,""/b[at0002]/f/d"":""DV_TEXT"",""/b[at0002]/f/c"":""History"",""/b[at0002]/e[at0003]/d"":""POINT_EVENT"",""/b[at0002]/e[at0003]/b[at0001]/d"":""ITEM_TREE"",""/b[at0002]/e[at0003]/b[at0001]/a[at0004]/d"":""ELEMENT"",""/b[at0002]/e[at0003]/b[at0001]/a[at0004]/c/d"":""DV_QUANTITY"",""/b[at0002]/e[at0003]/b[at0001]/a[at0004]/c/1"":""°C"",""/b[at0002]/e[at0003]/b[at0001]/a[at0004]/c/l"":39.0,""/b[at0002]/e[at0003]/b[at0001]/k"":""at0001"",""/b[at0002]/e[at0003]/b[at0001]/f/d"":""DV_TEXT"",""/b[at0002]/e[at0003]/b[at0001]/f/c"":""Single"",""/b[at0002]/e[at0003]/k"":""at0003"",""/b[at0002]/e[at0003]/f/d"":""DV_TEXT"",""/b[at0002]/e[at0003]/f/c"":""Beliebiges Ereignis"",""/b[at0002]/e[at0003]/p/d"":""DV_DATE_TIME"",""/b[at0002]/e[at0003]/p/c"":""2020-05-11T22:53:12.039139+02:00"",""/b[at0002]/e[at0003]/p/l"":63724827192,""/!2"":""openEHR-EHR-OBSERVATION.body_temperature.v2"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""de"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-OBSERVATION.body_temperature.v2"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!r"":""DV_TEXT"",""/!1"":""Körpertemperatur"",""/!0"":""PARTY_SELF""}"
+9,openEHR-EHR-OBSERVATION.symptom_sign_screening.v0,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Symptome']/a[openEHR-EHR-OBSERVATION.symptom_sign_screening.v0,'Gestörter Geruchssinn']",{},{},0,"{""/!5"":""OBSERVATION"",""/b[at0001]/d"":""HISTORY"",""/b[at0001]/k"":""at0001"",""/b[at0001]/o/d"":""DV_DATE_TIME"",""/b[at0001]/o/c"":""2020-05-11T22:53:12.039139+02:00"",""/b[at0001]/o/l"":63724827192,""/b[at0001]/f/d"":""DV_TEXT"",""/b[at0001]/f/c"":""History"",""/b[at0001]/e[at0002]/d"":""POINT_EVENT"",""/b[at0001]/e[at0002]/b[at0003]/d"":""ITEM_TREE"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/d"":""CLUSTER"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0004]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0004]/c/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0004]/c/c"":""gestörter Geruchssinn"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/c/d"":""DV_CODED_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/c/c"":""Nicht vorhanden"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/c/j/d"":""CODE_PHRASE"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/c/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/c/j/m/c"":""local"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/c/j/r"":""at0024"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/k"":""at0022"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/f/c"":""Spezifisches Symptom/Anzeichen"",""/b[at0001]/e[at0002]/b[at0003]/k"":""at0003"",""/b[at0001]/e[at0002]/b[at0003]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/f/c"":""Tree"",""/b[at0001]/e[at0002]/k"":""at0002"",""/b[at0001]/e[at0002]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/f/c"":""Beliebiges Ereignis"",""/b[at0001]/e[at0002]/p/d"":""DV_DATE_TIME"",""/b[at0001]/e[at0002]/p/c"":""2020-05-11T22:53:12.039139+02:00"",""/b[at0001]/e[at0002]/p/l"":63724827192,""/!r"":""DV_TEXT"",""/!1"":""Gestörter Geruchssinn"",""/!2"":""openEHR-EHR-OBSERVATION.symptom_sign_screening.v0"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""de"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-OBSERVATION.symptom_sign_screening.v0"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!0"":""PARTY_SELF""}"
+10,openEHR-EHR-OBSERVATION.symptom_sign_screening.v0,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Symptome']/a[openEHR-EHR-OBSERVATION.symptom_sign_screening.v0,'Gestörter Geschmackssinn']",{},{},0,"{""/!5"":""OBSERVATION"",""/b[at0001]/d"":""HISTORY"",""/b[at0001]/k"":""at0001"",""/b[at0001]/o/d"":""DV_DATE_TIME"",""/b[at0001]/o/c"":""2020-05-11T22:53:12.039139+02:00"",""/b[at0001]/o/l"":63724827192,""/b[at0001]/f/d"":""DV_TEXT"",""/b[at0001]/f/c"":""History"",""/b[at0001]/e[at0002]/d"":""POINT_EVENT"",""/b[at0001]/e[at0002]/b[at0003]/d"":""ITEM_TREE"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/d"":""CLUSTER"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0004]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0004]/c/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0004]/c/c"":""gestörter Geschmackssinn"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/c/d"":""DV_CODED_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/c/c"":""Nicht vorhanden"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/c/j/d"":""CODE_PHRASE"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/c/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/c/j/m/c"":""local"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/c/j/r"":""at0024"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/k"":""at0022"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/f/c"":""Spezifisches Symptom/Anzeichen"",""/b[at0001]/e[at0002]/b[at0003]/k"":""at0003"",""/b[at0001]/e[at0002]/b[at0003]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/f/c"":""Tree"",""/b[at0001]/e[at0002]/k"":""at0002"",""/b[at0001]/e[at0002]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/f/c"":""Beliebiges Ereignis"",""/b[at0001]/e[at0002]/p/d"":""DV_DATE_TIME"",""/b[at0001]/e[at0002]/p/c"":""2020-05-11T22:53:12.039139+02:00"",""/b[at0001]/e[at0002]/p/l"":63724827192,""/!r"":""DV_TEXT"",""/!1"":""Gestörter Geschmackssinn"",""/!2"":""openEHR-EHR-OBSERVATION.symptom_sign_screening.v0"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""de"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-OBSERVATION.symptom_sign_screening.v0"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!0"":""PARTY_SELF""}"
+11,openEHR-EHR-OBSERVATION.symptom_sign_screening.v0,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Symptome']/a[openEHR-EHR-OBSERVATION.symptom_sign_screening.v0,'Durchfall']",{},{},0,"{""/!5"":""OBSERVATION"",""/b[at0001]/d"":""HISTORY"",""/b[at0001]/k"":""at0001"",""/b[at0001]/o/d"":""DV_DATE_TIME"",""/b[at0001]/o/c"":""2020-05-11T22:53:12.039139+02:00"",""/b[at0001]/o/l"":63724827192,""/b[at0001]/f/d"":""DV_TEXT"",""/b[at0001]/f/c"":""History"",""/b[at0001]/e[at0002]/d"":""POINT_EVENT"",""/b[at0001]/e[at0002]/b[at0003]/d"":""ITEM_TREE"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/d"":""CLUSTER"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0004]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0004]/c/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0004]/c/c"":""Durchfall"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/c/d"":""DV_CODED_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/c/c"":""Nicht vorhanden"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/c/j/d"":""CODE_PHRASE"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/c/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/c/j/m/c"":""local"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/a[at0005]/c/j/r"":""at0024"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/k"":""at0022"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0022]/f/c"":""Spezifisches Symptom/Anzeichen"",""/b[at0001]/e[at0002]/b[at0003]/k"":""at0003"",""/b[at0001]/e[at0002]/b[at0003]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/f/c"":""Tree"",""/b[at0001]/e[at0002]/k"":""at0002"",""/b[at0001]/e[at0002]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/f/c"":""Beliebiges Ereignis"",""/b[at0001]/e[at0002]/p/d"":""DV_DATE_TIME"",""/b[at0001]/e[at0002]/p/c"":""2020-05-11T22:53:12.039139+02:00"",""/b[at0001]/e[at0002]/p/l"":63724827192,""/!r"":""DV_TEXT"",""/!1"":""Durchfall"",""/!2"":""openEHR-EHR-OBSERVATION.symptom_sign_screening.v0"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""de"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-OBSERVATION.symptom_sign_screening.v0"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!0"":""PARTY_SELF""}"
+12,openEHR-EHR-OBSERVATION.travel_history.v0,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Risikogebiet']/a[openEHR-EHR-OBSERVATION.travel_history.v0]",{0},{},0,"{""/!5"":""OBSERVATION"",""/b[at0001]/d"":""HISTORY"",""/b[at0001]/k"":""at0001"",""/b[at0001]/o/d"":""DV_DATE_TIME"",""/b[at0001]/o/c"":""2020-05-11T22:53:12.039139+02:00"",""/b[at0001]/o/l"":63724827192,""/b[at0001]/f/d"":""DV_TEXT"",""/b[at0001]/f/c"":""History"",""/b[at0001]/e[at0002]/d"":""POINT_EVENT"",""/b[at0001]/e[at0002]/b[at0003]/d"":""ITEM_TREE"",""/b[at0001]/e[at0002]/b[at0003]/a[at0111,'Aufenthalt in den letzten 14 Tage in einem der Risikogebiete für Coronainfektion oder Kontakt zu Menschen, die dort waren']/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0111,'Aufenthalt in den letzten 14 Tage in einem der Risikogebiete für Coronainfektion oder Kontakt zu Menschen, die dort waren']/c/d"":""DV_CODED_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0111,'Aufenthalt in den letzten 14 Tage in einem der Risikogebiete für Coronainfektion oder Kontakt zu Menschen, die dort waren']/c/c"":""Ja"",""/b[at0001]/e[at0002]/b[at0003]/a[at0111,'Aufenthalt in den letzten 14 Tage in einem der Risikogebiete für Coronainfektion oder Kontakt zu Menschen, die dort waren']/c/j/d"":""CODE_PHRASE"",""/b[at0001]/e[at0002]/b[at0003]/a[at0111,'Aufenthalt in den letzten 14 Tage in einem der Risikogebiete für Coronainfektion oder Kontakt zu Menschen, die dort waren']/c/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/e[at0002]/b[at0003]/a[at0111,'Aufenthalt in den letzten 14 Tage in einem der Risikogebiete für Coronainfektion oder Kontakt zu Menschen, die dort waren']/c/j/m/c"":""local"",""/b[at0001]/e[at0002]/b[at0003]/a[at0111,'Aufenthalt in den letzten 14 Tage in einem der Risikogebiete für Coronainfektion oder Kontakt zu Menschen, die dort waren']/c/j/r"":""at0112"",""/b[at0001]/e[at0002]/b[at0003]/a[at0111,'Aufenthalt in den letzten 14 Tage in einem der Risikogebiete für Coronainfektion oder Kontakt zu Menschen, die dort waren']/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0111,'Aufenthalt in den letzten 14 Tage in einem der Risikogebiete für Coronainfektion oder Kontakt zu Menschen, die dort waren']/f/c"":""Aufenthalt in den letzten 14 Tage in einem der Risikogebiete für Coronainfektion oder Kontakt zu Menschen, die dort waren"",""/b[at0001]/e[at0002]/b[at0003]/a[at0134]/d"":""CLUSTER"",""/b[at0001]/e[at0002]/b[at0003]/a[at0134]/a[openEHR-EHR-CLUSTER.location.v1]/d"":""CLUSTER"",""/b[at0001]/e[at0002]/b[at0003]/a[at0134]/a[openEHR-EHR-CLUSTER.location.v1]/a[at0046]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0134]/a[openEHR-EHR-CLUSTER.location.v1]/a[at0046]/c/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0134]/a[openEHR-EHR-CLUSTER.location.v1]/a[at0046]/c/c"":""Norditalien"",""/b[at0001]/e[at0002]/b[at0003]/a[at0134]/a[openEHR-EHR-CLUSTER.location.v1]/n/z/c"":""openEHR-EHR-CLUSTER.location.v1"",""/b[at0001]/e[at0002]/b[at0003]/a[at0134]/a[openEHR-EHR-CLUSTER.location.v1]/n/y"":""1.0.4"",""/b[at0001]/e[at0002]/b[at0003]/a[at0134]/a[openEHR-EHR-CLUSTER.location.v1]/n/d"":""ARCHETYPED"",""/b[at0001]/e[at0002]/b[at0003]/a[at0134]/a[openEHR-EHR-CLUSTER.location.v1]/k"":""openEHR-EHR-CLUSTER.location.v1"",""/b[at0001]/e[at0002]/b[at0003]/a[at0134]/a[openEHR-EHR-CLUSTER.location.v1]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0134]/a[openEHR-EHR-CLUSTER.location.v1]/f/c"":""Standort"",""/b[at0001]/e[at0002]/b[at0003]/a[at0134]/k"":""at0134"",""/b[at0001]/e[at0002]/b[at0003]/a[at0134]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0134]/f/c"":""Ortsbeschreibung"",""/b[at0001]/e[at0002]/b[at0003]/k"":""at0003"",""/b[at0001]/e[at0002]/b[at0003]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/f/c"":""Tree"",""/b[at0001]/e[at0002]/k"":""at0002"",""/b[at0001]/e[at0002]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/f/c"":""Jedes Ereignis"",""/b[at0001]/e[at0002]/p/d"":""DV_DATE_TIME"",""/b[at0001]/e[at0002]/p/c"":""2020-05-11T22:53:12.039139+02:00"",""/b[at0001]/e[at0002]/p/l"":63724827192,""/!2"":""openEHR-EHR-OBSERVATION.travel_history.v0"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""de"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-OBSERVATION.travel_history.v0"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!r"":""DV_TEXT"",""/!1"":""Historie der Reise"",""/!0"":""PARTY_SELF""}"
+13,openEHR-EHR-OBSERVATION.travel_event.v0,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Risikogebiet']/a[openEHR-EHR-OBSERVATION.travel_event.v0]",{0},{},0,"{""/!5"":""OBSERVATION"",""/b[at0001]/d"":""HISTORY"",""/b[at0001]/k"":""at0001"",""/b[at0001]/o/d"":""DV_DATE_TIME"",""/b[at0001]/o/c"":""2020-05-11T22:53:12.039139+02:00"",""/b[at0001]/o/l"":63724827192,""/b[at0001]/f/d"":""DV_TEXT"",""/b[at0001]/f/c"":""History"",""/!2"":""openEHR-EHR-OBSERVATION.travel_event.v0"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""de"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-OBSERVATION.travel_event.v0"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!r"":""DV_TEXT"",""/!1"":""Reisefall"",""/!0"":""PARTY_SELF""}"
+14,openEHR-EHR-OBSERVATION.travel_event.v0,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Risikogebiet']/a[openEHR-EHR-OBSERVATION.travel_event.v0]",{0},{0},1,"{""/b[at0001]/e[at0002]/d"":""INTERVAL_EVENT"",""/b[at0001]/e[at0002]/b[at0003]/d"":""ITEM_TREE"",""/b[at0001]/e[at0002]/b[at0003]/a[at0004,'Letzte Reise?']/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0004,'Letzte Reise?']/c/d"":""DV_CODED_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0004,'Letzte Reise?']/c/c"":""Ja - national"",""/b[at0001]/e[at0002]/b[at0003]/a[at0004,'Letzte Reise?']/c/j/d"":""CODE_PHRASE"",""/b[at0001]/e[at0002]/b[at0003]/a[at0004,'Letzte Reise?']/c/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/e[at0002]/b[at0003]/a[at0004,'Letzte Reise?']/c/j/m/c"":""local"",""/b[at0001]/e[at0002]/b[at0003]/a[at0004,'Letzte Reise?']/c/j/r"":""at0006"",""/b[at0001]/e[at0002]/b[at0003]/a[at0004,'Letzte Reise?']/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0004,'Letzte Reise?']/f/c"":""Letzte Reise?"",""/b[at0001]/e[at0002]/b[at0003]/k"":""at0003"",""/b[at0001]/e[at0002]/b[at0003]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/f/c"":""Tree"",""/b[at0001]/e[at0002]/k"":""at0002"",""/b[at0001]/e[at0002]/9/d"":""DV_CODED_TEXT"",""/b[at0001]/e[at0002]/9/c"":""mean"",""/b[at0001]/e[at0002]/9/j/d"":""CODE_PHRASE"",""/b[at0001]/e[at0002]/9/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/e[at0002]/9/j/m/c"":""openehr"",""/b[at0001]/e[at0002]/9/j/r"":""146"",""/b[at0001]/e[at0002]/bc/d"":""DV_DURATION"",""/b[at0001]/e[at0002]/bc/c"":""P0D"",""/b[at0001]/e[at0002]/bc/l"":0.0,""/b[at0001]/e[at0002]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/f/c"":""Beliebiges Intervallereignis"",""/b[at0001]/e[at0002]/p/d"":""DV_DATE_TIME"",""/b[at0001]/e[at0002]/p/c"":""2020-05-11T22:53:12.039139+02:00"",""/b[at0001]/e[at0002]/p/l"":63724827192}"
+15,openEHR-EHR-OBSERVATION.travel_event.v0,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Risikogebiet']/a[openEHR-EHR-OBSERVATION.travel_event.v0]",{0},"{0,0}",2,"{""/b[at0001]/e[at0002]/b[at0003]/a[at0008]/d"":""CLUSTER"",""/b[at0001]/e[at0002]/b[at0003]/a[at0008]/k"":""at0008"",""/b[at0001]/e[at0002]/b[at0003]/a[at0008]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0008]/f/c"":""Bestimmte Reise""}"
+16,openEHR-EHR-OBSERVATION.travel_event.v0,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Risikogebiet']/a[openEHR-EHR-OBSERVATION.travel_event.v0]",{0},"{0,0,0}",3,"{""/b[at0001]/e[at0002]/b[at0003]/a[at0008]/a[at0010]/d"":""CLUSTER"",""/b[at0001]/e[at0002]/b[at0003]/a[at0008]/a[at0010]/a[at0011]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0008]/a[at0010]/a[at0011]/c/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0008]/a[at0010]/a[at0011]/c/c"":""Deutschland"",""/b[at0001]/e[at0002]/b[at0003]/a[at0008]/a[at0010]/a[at0012]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0008]/a[at0010]/a[at0012]/c/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0008]/a[at0010]/a[at0012]/c/c"":""Baden-Württemberg"",""/b[at0001]/e[at0002]/b[at0003]/a[at0008]/a[at0010]/a[at0013]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0008]/a[at0010]/a[at0013]/c/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0008]/a[at0010]/a[at0013]/c/c"":""Mannheim"",""/b[at0001]/e[at0002]/b[at0003]/a[at0008]/a[at0010]/k"":""at0010"",""/b[at0001]/e[at0002]/b[at0003]/a[at0008]/a[at0010]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0008]/a[at0010]/f/c"":""Bestimmtes Reiseziel""}"
diff --git a/serialisation/src/test/resources/csv/IPS.csv b/serialisation/src/test/resources/csv/IPS.csv
new file mode 100644
index 000000000..39cac8aaa
--- /dev/null
+++ b/serialisation/src/test/resources/csv/IPS.csv
@@ -0,0 +1,166 @@
+NUM,ENTITY_CONCEPT,RM_ENTITY,ENTITY_PATH,ENTITY_IDX,FIELD_IDX,FIELD_IDX_LEN,FIELDS
+0,openEHR-EHR-COMPOSITION.health_summary.v1,COMPOSITION,/,{},{},0,"{""/_type"":""COMPOSITION"",""/category/_type"":""DV_CODED_TEXT"",""/category/value"":""event"",""/category/defining_code/_type"":""CODE_PHRASE"",""/category/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/category/defining_code/terminology_id/value"":""openehr"",""/category/defining_code/code_string"":""433"",""/context/_type"":""EVENT_CONTEXT"",""/context/start_time/_type"":""DV_DATE_TIME"",""/context/start_time/value"":""2021-12-03T17:34:06.849379+01:00"",""/context/start_time/magnitude"":63774146046,""/context/health_care_facility/_type"":""PARTY_IDENTIFIED"",""/context/health_care_facility/external_ref/_type"":""PARTY_REF"",""/context/health_care_facility/external_ref/namespace"":""HOSPITAL-NS"",""/context/health_care_facility/external_ref/type"":""PARTY"",""/context/health_care_facility/external_ref/id/_type"":""GENERIC_ID"",""/context/health_care_facility/external_ref/id/value"":""9091"",""/context/health_care_facility/external_ref/id/scheme"":""HOSPITAL-NS"",""/context/health_care_facility/name"":""Hospital"",""/context/setting/_type"":""DV_CODED_TEXT"",""/context/setting/value"":""other care"",""/context/setting/defining_code/_type"":""CODE_PHRASE"",""/context/setting/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/context/setting/defining_code/terminology_id/value"":""openehr"",""/context/setting/defining_code/code_string"":""238"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/_type"":""SECTION"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/name/_type"":""DV_TEXT"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/name/value"":""Medication Summary"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/archetype_details/archetype_id/value"":""openEHR-EHR-SECTION.adhoc.v1"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/archetype_details/rm_version"":""1.0.4"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/archetype_details/_type"":""ARCHETYPED"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/archetype_node_id"":""openEHR-EHR-SECTION.adhoc.v1"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Allergies & Intolerances']/_type"":""SECTION"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Allergies & Intolerances']/name/_type"":""DV_TEXT"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Allergies & Intolerances']/name/value"":""Allergies & Intolerances"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Allergies & Intolerances']/archetype_details/archetype_id/value"":""openEHR-EHR-SECTION.adhoc.v1"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Allergies & Intolerances']/archetype_details/rm_version"":""1.0.4"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Allergies & Intolerances']/archetype_details/_type"":""ARCHETYPED"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Allergies & Intolerances']/archetype_node_id"":""openEHR-EHR-SECTION.adhoc.v1"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Problem List']/_type"":""SECTION"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Problem List']/name/_type"":""DV_TEXT"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Problem List']/name/value"":""Problem List"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Problem List']/archetype_details/archetype_id/value"":""openEHR-EHR-SECTION.adhoc.v1"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Problem List']/archetype_details/rm_version"":""1.0.4"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Problem List']/archetype_details/_type"":""ARCHETYPED"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Problem List']/archetype_node_id"":""openEHR-EHR-SECTION.adhoc.v1"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Immunizations']/_type"":""SECTION"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Immunizations']/name/_type"":""DV_TEXT"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Immunizations']/name/value"":""Immunizations"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Immunizations']/archetype_details/archetype_id/value"":""openEHR-EHR-SECTION.adhoc.v1"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Immunizations']/archetype_details/rm_version"":""1.0.4"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Immunizations']/archetype_details/_type"":""ARCHETYPED"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Immunizations']/archetype_node_id"":""openEHR-EHR-SECTION.adhoc.v1"",""/content[openEHR-EHR-SECTION.adhoc.v1,'History of Procedures']/_type"":""SECTION"",""/content[openEHR-EHR-SECTION.adhoc.v1,'History of Procedures']/name/_type"":""DV_TEXT"",""/content[openEHR-EHR-SECTION.adhoc.v1,'History of Procedures']/name/value"":""History of Procedures"",""/content[openEHR-EHR-SECTION.adhoc.v1,'History of Procedures']/archetype_details/archetype_id/value"":""openEHR-EHR-SECTION.adhoc.v1"",""/content[openEHR-EHR-SECTION.adhoc.v1,'History of Procedures']/archetype_details/rm_version"":""1.0.4"",""/content[openEHR-EHR-SECTION.adhoc.v1,'History of Procedures']/archetype_details/_type"":""ARCHETYPED"",""/content[openEHR-EHR-SECTION.adhoc.v1,'History of Procedures']/archetype_node_id"":""openEHR-EHR-SECTION.adhoc.v1"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Medical Devices']/_type"":""SECTION"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Medical Devices']/name/_type"":""DV_TEXT"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Medical Devices']/name/value"":""Medical Devices"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Medical Devices']/archetype_details/archetype_id/value"":""openEHR-EHR-SECTION.adhoc.v1"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Medical Devices']/archetype_details/rm_version"":""1.0.4"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Medical Devices']/archetype_details/_type"":""ARCHETYPED"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Medical Devices']/archetype_node_id"":""openEHR-EHR-SECTION.adhoc.v1"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/_type"":""SECTION"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/name/_type"":""DV_TEXT"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/name/value"":""Diagnostic Results"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/archetype_details/archetype_id/value"":""openEHR-EHR-SECTION.adhoc.v1"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/archetype_details/rm_version"":""1.0.4"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/archetype_details/_type"":""ARCHETYPED"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/archetype_node_id"":""openEHR-EHR-SECTION.adhoc.v1"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/_type"":""SECTION"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/name/_type"":""DV_TEXT"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/name/value"":""Vital Signs"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/archetype_details/archetype_id/value"":""openEHR-EHR-SECTION.adhoc.v1"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/archetype_details/rm_version"":""1.0.4"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/archetype_details/_type"":""ARCHETYPED"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/archetype_node_id"":""openEHR-EHR-SECTION.adhoc.v1"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Past History of Illnesses']/_type"":""SECTION"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Past History of Illnesses']/name/_type"":""DV_TEXT"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Past History of Illnesses']/name/value"":""Past History of Illnesses"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Past History of Illnesses']/archetype_details/archetype_id/value"":""openEHR-EHR-SECTION.adhoc.v1"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Past History of Illnesses']/archetype_details/rm_version"":""1.0.4"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Past History of Illnesses']/archetype_details/_type"":""ARCHETYPED"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Past History of Illnesses']/archetype_node_id"":""openEHR-EHR-SECTION.adhoc.v1"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Pregnancy']/_type"":""SECTION"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Pregnancy']/name/_type"":""DV_TEXT"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Pregnancy']/name/value"":""Pregnancy"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Pregnancy']/archetype_details/archetype_id/value"":""openEHR-EHR-SECTION.adhoc.v1"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Pregnancy']/archetype_details/rm_version"":""1.0.4"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Pregnancy']/archetype_details/_type"":""ARCHETYPED"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Pregnancy']/archetype_node_id"":""openEHR-EHR-SECTION.adhoc.v1"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Social History']/_type"":""SECTION"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Social History']/name/_type"":""DV_TEXT"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Social History']/name/value"":""Social History"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Social History']/archetype_details/archetype_id/value"":""openEHR-EHR-SECTION.adhoc.v1"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Social History']/archetype_details/rm_version"":""1.0.4"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Social History']/archetype_details/_type"":""ARCHETYPED"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Social History']/archetype_node_id"":""openEHR-EHR-SECTION.adhoc.v1"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Plan of Care']/_type"":""SECTION"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Plan of Care']/name/_type"":""DV_TEXT"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Plan of Care']/name/value"":""Plan of Care"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Plan of Care']/archetype_details/archetype_id/value"":""openEHR-EHR-SECTION.adhoc.v1"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Plan of Care']/archetype_details/rm_version"":""1.0.4"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Plan of Care']/archetype_details/_type"":""ARCHETYPED"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Plan of Care']/archetype_node_id"":""openEHR-EHR-SECTION.adhoc.v1"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Functional Status']/_type"":""SECTION"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Functional Status']/name/_type"":""DV_TEXT"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Functional Status']/name/value"":""Functional Status"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Functional Status']/archetype_details/archetype_id/value"":""openEHR-EHR-SECTION.adhoc.v1"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Functional Status']/archetype_details/rm_version"":""1.0.4"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Functional Status']/archetype_details/_type"":""ARCHETYPED"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Functional Status']/archetype_node_id"":""openEHR-EHR-SECTION.adhoc.v1"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Advanced Directives']/_type"":""SECTION"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Advanced Directives']/name/_type"":""DV_TEXT"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Advanced Directives']/name/value"":""Advanced Directives"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Advanced Directives']/archetype_details/archetype_id/value"":""openEHR-EHR-SECTION.adhoc.v1"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Advanced Directives']/archetype_details/rm_version"":""1.0.4"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Advanced Directives']/archetype_details/_type"":""ARCHETYPED"",""/content[openEHR-EHR-SECTION.adhoc.v1,'Advanced Directives']/archetype_node_id"":""openEHR-EHR-SECTION.adhoc.v1"",""/name/_type"":""DV_TEXT"",""/name/value"":""International Patient Summary"",""/archetype_node_id"":""openEHR-EHR-COMPOSITION.health_summary.v1"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""en"",""/uid/_type"":""OBJECT_VERSION_ID"",""/uid/value"":""c5db0694-5cd2-4fd1-a5bf-ed25f1c5d371::ehrbase.org::1"",""/archetype_details/archetype_id/value"":""openEHR-EHR-COMPOSITION.health_summary.v1"",""/archetype_details/template_id/value"":""International Patient Summary"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/territory/_type"":""CODE_PHRASE"",""/territory/terminology_id/_type"":""TERMINOLOGY_ID"",""/territory/terminology_id/value"":""ISO_3166-1"",""/territory/code_string"":""US"",""/composer/_type"":""PARTY_IDENTIFIED"",""/composer/name"":""Silvia Blake""}"
+1,openEHR-EHR-COMPOSITION.health_summary.v1,COMPOSITION,/,{},{0},1,"{""/context/participations/_type"":""PARTICIPATION"",""/context/participations/function/_type"":""DV_TEXT"",""/context/participations/function/value"":""requester"",""/context/participations/mode/_type"":""DV_CODED_TEXT"",""/context/participations/mode/value"":""face-to-face communication"",""/context/participations/mode/defining_code/_type"":""CODE_PHRASE"",""/context/participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/context/participations/mode/defining_code/terminology_id/value"":""openehr"",""/context/participations/mode/defining_code/code_string"":""216"",""/context/participations/performer/_type"":""PARTY_IDENTIFIED"",""/context/participations/performer/external_ref/_type"":""PARTY_REF"",""/context/participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/context/participations/performer/external_ref/type"":""PERSON"",""/context/participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/context/participations/performer/external_ref/id/value"":""199"",""/context/participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/context/participations/performer/name"":""Dr. Marcus Johnson""}"
+2,openEHR-EHR-COMPOSITION.health_summary.v1,COMPOSITION,/,{},{1},1,"{""/context/participations/_type"":""PARTICIPATION"",""/context/participations/function/_type"":""DV_TEXT"",""/context/participations/function/value"":""performer"",""/context/participations/mode/_type"":""DV_CODED_TEXT"",""/context/participations/mode/value"":""not specified"",""/context/participations/mode/defining_code/_type"":""CODE_PHRASE"",""/context/participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/context/participations/mode/defining_code/terminology_id/value"":""openehr"",""/context/participations/mode/defining_code/code_string"":""193"",""/context/participations/performer/_type"":""PARTY_IDENTIFIED"",""/context/participations/performer/external_ref/_type"":""PARTY_REF"",""/context/participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/context/participations/performer/external_ref/type"":""PERSON"",""/context/participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/context/participations/performer/external_ref/id/value"":""198"",""/context/participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/context/participations/performer/name"":""Lara Markham""}"
+3,openEHR-EHR-ACTION.medication.v1,ACTION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/items[openEHR-EHR-ACTION.medication.v1,'Medication statement']",{},{},0,"{""/_type"":""ACTION"",""/description[at0017]/_type"":""ITEM_TREE"",""/description[at0017]/items[at0020]/_type"":""ELEMENT"",""/description[at0017]/items[at0020]/value/_type"":""DV_TEXT"",""/description[at0017]/items[at0020]/value/value"":""Medication item 83"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/_type"":""CLUSTER"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0132]/_type"":""ELEMENT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0132]/value/_type"":""DV_TEXT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0132]/value/value"":""Name 5"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0142]/_type"":""ELEMENT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0142]/value/_type"":""DV_CODED_TEXT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0142]/value/value"":""Single-ingredient product"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0142]/value/defining_code/_type"":""CODE_PHRASE"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0142]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0142]/value/defining_code/terminology_id/value"":""local"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0142]/value/defining_code/code_string"":""at0145"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0152]/_type"":""CLUSTER"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0152]/items[at0153]/_type"":""ELEMENT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0152]/items[at0153]/value/_type"":""DV_QUANTITY"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0152]/items[at0153]/value/units"":""1"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0152]/items[at0153]/value/magnitude"":35.87,""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0152]/items[at0004]/_type"":""ELEMENT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0152]/items[at0004]/value/_type"":""DV_TEXT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0152]/items[at0004]/value/value"":""Strength numerator unit 70"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0152]/items[at0157]/_type"":""ELEMENT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0152]/items[at0157]/value/_type"":""DV_QUANTITY"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0152]/items[at0157]/value/units"":""1"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0152]/items[at0157]/value/magnitude"":66.71,""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0152]/items[at0005]/_type"":""ELEMENT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0152]/items[at0005]/value/_type"":""DV_TEXT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0152]/items[at0005]/value/value"":""Strength denominator unit 35"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0152]/archetype_node_id"":""at0152"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0152]/name/_type"":""DV_TEXT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0152]/name/value"":""Strength (presentation)"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0158]/_type"":""ELEMENT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0158]/value/_type"":""DV_TEXT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0158]/value/value"":""Unit of presentation 19"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0115]/_type"":""ELEMENT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0115]/value/_type"":""DV_QUANTITY"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0115]/value/units"":""?"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0115]/value/magnitude"":31.53,""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0151]/_type"":""ELEMENT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0151]/value/_type"":""DV_TEXT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0151]/value/value"":""Manufacturer 26"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0003]/_type"":""ELEMENT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0003]/value/_type"":""DV_DATE_TIME"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0003]/value/value"":""2021-12-03T16:05:19.513542+01:00"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0003]/value/magnitude"":63774140719,""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0139]/_type"":""ELEMENT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0139]/value/_type"":""DV_QUANTITY"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0139]/value/units"":""1"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0139]/value/magnitude"":74.97,""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0008]/_type"":""ELEMENT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0008]/value/_type"":""DV_TEXT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0008]/value/value"":""Amount unit 82"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0148]/_type"":""ELEMENT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0148]/value/_type"":""DV_QUANTITY"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0148]/value/units"":""1"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0148]/value/magnitude"":78.36,""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0007]/_type"":""ELEMENT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0007]/value/_type"":""DV_TEXT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0007]/value/value"":""Alternate amount unit 36"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0127]/_type"":""ELEMENT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0127]/value/_type"":""DV_CODED_TEXT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0127]/value/value"":""Excipient"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0127]/value/defining_code/_type"":""CODE_PHRASE"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0127]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0127]/value/defining_code/terminology_id/value"":""local"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0127]/value/defining_code/code_string"":""at0084"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0133]/_type"":""ELEMENT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0133]/value/_type"":""DV_TEXT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0133]/value/value"":""Description 86"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/archetype_details/archetype_id/value"":""openEHR-EHR-CLUSTER.medication.v1"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/archetype_details/rm_version"":""1.0.4"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/archetype_details/_type"":""ARCHETYPED"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/archetype_node_id"":""openEHR-EHR-CLUSTER.medication.v1"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/_type"":""CLUSTER"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[at0144]/_type"":""ELEMENT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[at0144]/value/_type"":""DV_QUANTITY"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[at0144]/value/units"":""1"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[at0144]/value/magnitude"":25.28,""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[at0145]/_type"":""ELEMENT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[at0145]/value/_type"":""DV_TEXT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[at0145]/value/value"":""Dose unit 64"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[at0135]/_type"":""ELEMENT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[at0135]/value/_type"":""DV_TEXT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[at0135]/value/value"":""Dose formula 34"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[at0178]/_type"":""ELEMENT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[at0178]/value/_type"":""DV_TEXT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[at0178]/value/value"":""Dose description 32"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/_type"":""CLUSTER"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0003]/_type"":""ELEMENT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0003]/value/_type"":""DV_QUANTITY"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0003]/value/precision"":0,""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0003]/value/units"":""1/d"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0003]/value/magnitude"":49.0,""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0014]/_type"":""ELEMENT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0014]/value/_type"":""DV_DURATION"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0014]/value/value"":""PT7H3M"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0014]/value/magnitude"":25380.0,""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0027]/_type"":""ELEMENT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0027]/value/_type"":""DV_TEXT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0027]/value/value"":""Timing description 71"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0023]/_type"":""ELEMENT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0023]/value/_type"":""DV_BOOLEAN"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0023]/value/value"":true,""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0024]/_type"":""ELEMENT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0024]/value/_type"":""DV_BOOLEAN"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0024]/value/value"":true,""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0025]/_type"":""ELEMENT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0025]/value/_type"":""DV_TEXT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0025]/value/value"":""'As required' criterion 5"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/archetype_details/archetype_id/value"":""openEHR-EHR-CLUSTER.timing_daily.v1"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/archetype_details/rm_version"":""1.0.4"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/archetype_details/_type"":""ARCHETYPED"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/archetype_node_id"":""openEHR-EHR-CLUSTER.timing_daily.v1"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/name/_type"":""DV_TEXT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/name/value"":""Timing - daily"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/archetype_details/archetype_id/value"":""openEHR-EHR-CLUSTER.dosage.v1"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/archetype_details/rm_version"":""1.0.4"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/archetype_details/_type"":""ARCHETYPED"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/archetype_node_id"":""openEHR-EHR-CLUSTER.dosage.v1"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/name/_type"":""DV_TEXT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/name/value"":""Dosage"",""/description[at0017]/items[at0140]/_type"":""CLUSTER"",""/description[at0017]/items[at0140]/items[at0147]/_type"":""ELEMENT"",""/description[at0017]/items[at0140]/items[at0147]/value/_type"":""DV_TEXT"",""/description[at0017]/items[at0140]/items[at0147]/value/value"":""Route 20"",""/description[at0017]/items[at0140]/items[at0141]/_type"":""ELEMENT"",""/description[at0017]/items[at0140]/items[at0141]/value/_type"":""DV_TEXT"",""/description[at0017]/items[at0140]/items[at0141]/value/value"":""Body site 68"",""/description[at0017]/items[at0140]/archetype_node_id"":""at0140"",""/description[at0017]/items[at0140]/name/_type"":""DV_TEXT"",""/description[at0017]/items[at0140]/name/value"":""Administration details"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/_type"":""CLUSTER"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0002]/_type"":""ELEMENT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0002]/value/_type"":""DV_DURATION"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0002]/value/value"":""P1Y3M40D"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0002]/value/magnitude"":4.28976E7,""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0014]/_type"":""ELEMENT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0014]/value/_type"":""DV_QUANTITY"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0014]/value/precision"":0,""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0014]/value/units"":""1/wk"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0014]/value/magnitude"":7.0,""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0021]/_type"":""ELEMENT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0021]/value/_type"":""DV_TEXT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0021]/value/value"":""Timing description 6"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0010]/_type"":""CLUSTER"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0010]/items[at0011]/_type"":""ELEMENT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0010]/items[at0011]/value/_type"":""DV_DURATION"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0010]/items[at0011]/value/value"":""P5Y2M39D"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0010]/items[at0011]/value/magnitude"":1.66409856E8,""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0010]/items[at0012]/_type"":""ELEMENT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0010]/items[at0012]/value/_type"":""DV_DURATION"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0010]/items[at0012]/value/value"":""P2Y3M29D"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0010]/items[at0012]/value/magnitude"":7.3503936E7,""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0010]/items[at0013]/_type"":""ELEMENT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0010]/items[at0013]/value/_type"":""DV_COUNT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0010]/items[at0013]/value/magnitude"":743,""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0010]/archetype_node_id"":""at0010"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0010]/name/_type"":""DV_TEXT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0010]/name/value"":""On / off cycle"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/archetype_details/archetype_id/value"":""openEHR-EHR-CLUSTER.timing_nondaily.v1"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/archetype_details/rm_version"":""1.0.4"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/archetype_details/_type"":""ARCHETYPED"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/archetype_node_id"":""openEHR-EHR-CLUSTER.timing_nondaily.v1"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/name/_type"":""DV_TEXT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/name/value"":""Timing - non-daily"",""/description[at0017]/archetype_node_id"":""at0017"",""/description[at0017]/name/_type"":""DV_TEXT"",""/description[at0017]/name/value"":""Tree"",""/protocol[at0030]/_type"":""ITEM_TREE"",""/protocol[at0030]/archetype_node_id"":""at0030"",""/protocol[at0030]/name/_type"":""DV_TEXT"",""/protocol[at0030]/name/value"":""Tree"",""/name/_type"":""DV_TEXT"",""/name/value"":""Medication statement"",""/archetype_node_id"":""openEHR-EHR-ACTION.medication.v1"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""en"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-ACTION.medication.v1"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/time/_type"":""DV_DATE_TIME"",""/time/value"":""2021-12-03T16:05:19.513939+01:00"",""/time/magnitude"":63774140719,""/ism_transition/_type"":""ISM_TRANSITION"",""/ism_transition/current_state/_type"":""DV_CODED_TEXT"",""/ism_transition/current_state/value"":""active"",""/ism_transition/current_state/defining_code/_type"":""CODE_PHRASE"",""/ism_transition/current_state/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/ism_transition/current_state/defining_code/terminology_id/value"":""openehr"",""/ism_transition/current_state/defining_code/code_string"":""245"",""/subject/_type"":""PARTY_SELF""}"
+4,openEHR-EHR-ACTION.medication.v1,ACTION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/items[openEHR-EHR-ACTION.medication.v1,'Medication statement']",{},{0},1,"{""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0071]/_type"":""ELEMENT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0071]/value/_type"":""DV_TEXT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0071]/value/value"":""Form 11""}"
+5,openEHR-EHR-ACTION.medication.v1,ACTION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/items[openEHR-EHR-ACTION.medication.v1,'Medication statement']",{},{0},1,"{""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0150]/_type"":""ELEMENT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0150]/value/_type"":""DV_TEXT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.medication.v1]/items[at0150]/value/value"":""Batch ID 76""}"
+6,openEHR-EHR-ACTION.medication.v1,ACTION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/items[openEHR-EHR-ACTION.medication.v1,'Medication statement']",{},{0},1,"{""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0004]/_type"":""ELEMENT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0004]/value/_type"":""DV_TIME"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0004]/value/value"":""16:05:19.513694"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0004]/value/magnitude"":57919.0}"
+7,openEHR-EHR-ACTION.medication.v1,ACTION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/items[openEHR-EHR-ACTION.medication.v1,'Medication statement']",{},{0},1,"{""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0039]/_type"":""CLUSTER"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0039]/items[at0026]/_type"":""ELEMENT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0039]/items[at0026]/value/_type"":""DV_TEXT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0039]/items[at0026]/value/value"":""Event name 29"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0039]/items[at0040]/_type"":""ELEMENT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0039]/items[at0040]/value/_type"":""DV_DURATION"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0039]/items[at0040]/value/value"":""PT2H2M4S"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0039]/items[at0040]/value/magnitude"":7324.0,""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0039]/archetype_node_id"":""at0039"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0039]/name/_type"":""DV_TEXT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0039]/name/value"":""Specific event""}"
+8,openEHR-EHR-ACTION.medication.v1,ACTION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/items[openEHR-EHR-ACTION.medication.v1,'Medication statement']",{},{0},1,"{""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0035]/_type"":""CLUSTER"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0035]/items[at0036]/_type"":""ELEMENT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0035]/items[at0036]/value/_type"":""DV_DURATION"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0035]/items[at0036]/value/value"":""PT10H1S"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0035]/items[at0036]/value/magnitude"":36001.0,""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0035]/items[at0037]/_type"":""ELEMENT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0035]/items[at0037]/value/_type"":""DV_DURATION"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0035]/items[at0037]/value/value"":""PT2H1M1S"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0035]/items[at0037]/value/magnitude"":7261.0,""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0035]/items[at0038]/_type"":""ELEMENT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0035]/items[at0038]/value/_type"":""DV_COUNT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0035]/items[at0038]/value/magnitude"":10,""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0035]/archetype_node_id"":""at0035"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0035]/name/_type"":""DV_TEXT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.dosage.v1]/items[openEHR-EHR-CLUSTER.timing_daily.v1]/items[at0035]/name/value"":""On / off cycle""}"
+9,openEHR-EHR-ACTION.medication.v1,ACTION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/items[openEHR-EHR-ACTION.medication.v1,'Medication statement']",{},{0},1,"{""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0001]/_type"":""ELEMENT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0001]/value/_type"":""DV_DATE"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0001]/value/value"":""2021-12-03"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0001]/value/magnitude"":738126}"
+10,openEHR-EHR-ACTION.medication.v1,ACTION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/items[openEHR-EHR-ACTION.medication.v1,'Medication statement']",{},{0},1,"{""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0003]/_type"":""ELEMENT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0003]/value/_type"":""DV_CODED_TEXT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0003]/value/value"":""Monday"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0003]/value/defining_code/_type"":""CODE_PHRASE"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0003]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0003]/value/defining_code/terminology_id/value"":""local"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0003]/value/defining_code/code_string"":""at0007""}"
+11,openEHR-EHR-ACTION.medication.v1,ACTION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/items[openEHR-EHR-ACTION.medication.v1,'Medication statement']",{},{0},1,"{""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0004]/_type"":""ELEMENT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0004]/value/_type"":""DV_COUNT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0004]/value/magnitude"":27}"
+12,openEHR-EHR-ACTION.medication.v1,ACTION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/items[openEHR-EHR-ACTION.medication.v1,'Medication statement']",{},{0},1,"{""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0006]/_type"":""CLUSTER"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0006]/items[at0005]/_type"":""ELEMENT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0006]/items[at0005]/value/_type"":""DV_TEXT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0006]/items[at0005]/value/value"":""Event name 15"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0006]/items[at0009]/_type"":""ELEMENT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0006]/items[at0009]/value/_type"":""DV_DURATION"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0006]/items[at0009]/value/value"":""P4Y3M21D"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0006]/items[at0009]/value/magnitude"":1.35926208E8,""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0006]/archetype_node_id"":""at0006"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0006]/name/_type"":""DV_TEXT"",""/description[at0017]/items[openEHR-EHR-CLUSTER.timing_nondaily.v1]/items[at0006]/name/value"":""Specific event""}"
+13,openEHR-EHR-ACTION.medication.v1,ACTION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/items[openEHR-EHR-ACTION.medication.v1,'Medication statement']",{},{0},1,"{""/protocol[at0030]/items[at0103]/_type"":""ELEMENT"",""/protocol[at0030]/items[at0103]/value/_type"":""DV_IDENTIFIER"",""/protocol[at0030]/items[at0103]/value/issuer"":""Issuer"",""/protocol[at0030]/items[at0103]/value/assigner"":""Assigner"",""/protocol[at0030]/items[at0103]/value/id"":""9a0e5173-07c8-443d-b414-24432b9d95ca"",""/protocol[at0030]/items[at0103]/value/type"":""Prescription""}"
+14,openEHR-EHR-ACTION.medication.v1,ACTION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/items[openEHR-EHR-ACTION.medication.v1,'Medication statement']",{},{0},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""requester"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""face-to-face communication"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""216"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""199"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Dr. Marcus Johnson""}"
+15,openEHR-EHR-ACTION.medication.v1,ACTION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/items[openEHR-EHR-ACTION.medication.v1,'Medication statement']",{},{1},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""performer"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""not specified"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""193"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""198"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Lara Markham""}"
+16,openEHR-EHR-EVALUATION.exclusion_global.v1,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/items[openEHR-EHR-EVALUATION.exclusion_global.v1]",{},{},0,"{""/_type"":""EVALUATION"",""/data[at0001]/_type"":""ITEM_TREE"",""/data[at0001]/items[at0002,'Global exclusion of medication use']/_type"":""ELEMENT"",""/data[at0001]/items[at0002,'Global exclusion of medication use']/value/_type"":""DV_TEXT"",""/data[at0001]/items[at0002,'Global exclusion of medication use']/value/value"":""No known medications"",""/data[at0001]/items[at0002,'Global exclusion of medication use']/name/_type"":""DV_CODED_TEXT"",""/data[at0001]/items[at0002,'Global exclusion of medication use']/name/value"":""Global exclusion of medication use"",""/data[at0001]/items[at0002,'Global exclusion of medication use']/name/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/items[at0002,'Global exclusion of medication use']/name/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/items[at0002,'Global exclusion of medication use']/name/defining_code/terminology_id/value"":""local"",""/data[at0001]/items[at0002,'Global exclusion of medication use']/name/defining_code/code_string"":""at0005"",""/data[at0001]/archetype_node_id"":""at0001"",""/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0001]/name/value"":""Tree"",""/archetype_node_id"":""openEHR-EHR-EVALUATION.exclusion_global.v1"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""en"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-EVALUATION.exclusion_global.v1"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/name/_type"":""DV_TEXT"",""/name/value"":""Exclusion - global"",""/subject/_type"":""PARTY_SELF""}"
+17,openEHR-EHR-EVALUATION.exclusion_global.v1,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/items[openEHR-EHR-EVALUATION.exclusion_global.v1]",{},{0},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""requester"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""face-to-face communication"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""216"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""199"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Dr. Marcus Johnson""}"
+18,openEHR-EHR-EVALUATION.exclusion_global.v1,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/items[openEHR-EHR-EVALUATION.exclusion_global.v1]",{},{1},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""performer"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""not specified"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""193"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""198"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Lara Markham""}"
+19,openEHR-EHR-EVALUATION.absence.v2,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/items[openEHR-EHR-EVALUATION.absence.v2]",{},{},0,"{""/_type"":""EVALUATION"",""/data[at0001]/_type"":""ITEM_TREE"",""/data[at0001]/items[at0002]/_type"":""ELEMENT"",""/data[at0001]/items[at0002]/value/_type"":""DV_TEXT"",""/data[at0001]/items[at0002]/value/value"":""No information about medications"",""/data[at0001]/archetype_node_id"":""at0001"",""/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0001]/name/value"":""Tree"",""/protocol[at0003]/_type"":""ITEM_TREE"",""/protocol[at0003]/items[at0004]/_type"":""ELEMENT"",""/protocol[at0003]/items[at0004]/value/_type"":""DV_DATE_TIME"",""/protocol[at0003]/items[at0004]/value/value"":""2021-12-03T16:05:19.513988+01:00"",""/protocol[at0003]/items[at0004]/value/magnitude"":63774140719,""/protocol[at0003]/archetype_node_id"":""at0003"",""/protocol[at0003]/name/_type"":""DV_TEXT"",""/protocol[at0003]/name/value"":""Tree"",""/archetype_node_id"":""openEHR-EHR-EVALUATION.absence.v2"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""en"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-EVALUATION.absence.v2"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/name/_type"":""DV_TEXT"",""/name/value"":""Absence of information"",""/subject/_type"":""PARTY_SELF""}"
+20,openEHR-EHR-EVALUATION.absence.v2,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/items[openEHR-EHR-EVALUATION.absence.v2]",{},{0},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""requester"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""face-to-face communication"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""216"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""199"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Dr. Marcus Johnson""}"
+21,openEHR-EHR-EVALUATION.absence.v2,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/items[openEHR-EHR-EVALUATION.absence.v2]",{},{1},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""performer"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""not specified"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""193"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""198"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Lara Markham""}"
+22,openEHR-EHR-EVALUATION.adverse_reaction_risk.v1,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Allergies & Intolerances']/items[openEHR-EHR-EVALUATION.adverse_reaction_risk.v1,'Allergy Intolerance']",{},{},0,"{""/_type"":""EVALUATION"",""/data[at0001]/_type"":""ITEM_TREE"",""/data[at0001]/items[at0002]/_type"":""ELEMENT"",""/data[at0001]/items[at0002]/value/_type"":""DV_TEXT"",""/data[at0001]/items[at0002]/value/value"":""Substance 64"",""/data[at0001]/items[at0063,'Verification status']/_type"":""ELEMENT"",""/data[at0001]/items[at0063,'Verification status']/value/_type"":""DV_CODED_TEXT"",""/data[at0001]/items[at0063,'Verification status']/value/value"":""Refuted"",""/data[at0001]/items[at0063,'Verification status']/value/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/items[at0063,'Verification status']/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/items[at0063,'Verification status']/value/defining_code/terminology_id/value"":""local"",""/data[at0001]/items[at0063,'Verification status']/value/defining_code/code_string"":""at0066"",""/data[at0001]/items[at0063,'Verification status']/name/_type"":""DV_TEXT"",""/data[at0001]/items[at0063,'Verification status']/name/value"":""Verification status"",""/data[at0001]/items[at0101]/_type"":""ELEMENT"",""/data[at0001]/items[at0101]/value/_type"":""DV_CODED_TEXT"",""/data[at0001]/items[at0101]/value/value"":""High"",""/data[at0001]/items[at0101]/value/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/items[at0101]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/items[at0101]/value/defining_code/terminology_id/value"":""local"",""/data[at0001]/items[at0101]/value/defining_code/code_string"":""at0103"",""/data[at0001]/items[at0058,'Type']/_type"":""ELEMENT"",""/data[at0001]/items[at0058,'Type']/value/_type"":""DV_TEXT"",""/data[at0001]/items[at0058,'Type']/value/value"":""Allergy"",""/data[at0001]/items[at0058,'Type']/name/_type"":""DV_TEXT"",""/data[at0001]/items[at0058,'Type']/name/value"":""Type"",""/data[at0001]/items[at0006]/_type"":""ELEMENT"",""/data[at0001]/items[at0006]/value/_type"":""DV_TEXT"",""/data[at0001]/items[at0006]/value/value"":""Comment 53"",""/data[at0001]/archetype_node_id"":""at0001"",""/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0001]/name/value"":""Tree"",""/protocol[at0042]/_type"":""ITEM_TREE"",""/protocol[at0042]/items[at0062]/_type"":""ELEMENT"",""/protocol[at0042]/items[at0062]/value/_type"":""DV_DATE_TIME"",""/protocol[at0042]/items[at0062]/value/value"":""2021-12-03T16:05:19.514045+01:00"",""/protocol[at0042]/items[at0062]/value/magnitude"":63774140719,""/protocol[at0042]/archetype_node_id"":""at0042"",""/protocol[at0042]/name/_type"":""DV_TEXT"",""/protocol[at0042]/name/value"":""Tree"",""/name/_type"":""DV_TEXT"",""/name/value"":""Allergy Intolerance"",""/archetype_node_id"":""openEHR-EHR-EVALUATION.adverse_reaction_risk.v1"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""en"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-EVALUATION.adverse_reaction_risk.v1"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/subject/_type"":""PARTY_SELF""}"
+23,openEHR-EHR-EVALUATION.adverse_reaction_risk.v1,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Allergies & Intolerances']/items[openEHR-EHR-EVALUATION.adverse_reaction_risk.v1,'Allergy Intolerance']",{},{0},1,"{""/data[at0001]/items[at0009,'Reaction']/_type"":""CLUSTER"",""/data[at0001]/items[at0009,'Reaction']/items[at0027,'Onset']/_type"":""ELEMENT"",""/data[at0001]/items[at0009,'Reaction']/items[at0027,'Onset']/value/_type"":""DV_DATE_TIME"",""/data[at0001]/items[at0009,'Reaction']/items[at0027,'Onset']/value/value"":""2021-12-03T16:05:19.514022+01:00"",""/data[at0001]/items[at0009,'Reaction']/items[at0027,'Onset']/value/magnitude"":63774140719,""/data[at0001]/items[at0009,'Reaction']/items[at0027,'Onset']/name/_type"":""DV_TEXT"",""/data[at0001]/items[at0009,'Reaction']/items[at0027,'Onset']/name/value"":""Onset"",""/data[at0001]/items[at0009,'Reaction']/items[at0089,'Severity']/_type"":""ELEMENT"",""/data[at0001]/items[at0009,'Reaction']/items[at0089,'Severity']/value/_type"":""DV_CODED_TEXT"",""/data[at0001]/items[at0009,'Reaction']/items[at0089,'Severity']/value/value"":""Severe"",""/data[at0001]/items[at0009,'Reaction']/items[at0089,'Severity']/value/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/items[at0009,'Reaction']/items[at0089,'Severity']/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/items[at0009,'Reaction']/items[at0089,'Severity']/value/defining_code/terminology_id/value"":""local"",""/data[at0001]/items[at0009,'Reaction']/items[at0089,'Severity']/value/defining_code/code_string"":""at0090"",""/data[at0001]/items[at0009,'Reaction']/items[at0089,'Severity']/name/_type"":""DV_TEXT"",""/data[at0001]/items[at0009,'Reaction']/items[at0089,'Severity']/name/value"":""Severity"",""/data[at0001]/items[at0009,'Reaction']/name/_type"":""DV_TEXT"",""/data[at0001]/items[at0009,'Reaction']/name/value"":""Reaction"",""/data[at0001]/items[at0009,'Reaction']/archetype_node_id"":""at0009""}"
+24,openEHR-EHR-EVALUATION.adverse_reaction_risk.v1,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Allergies & Intolerances']/items[openEHR-EHR-EVALUATION.adverse_reaction_risk.v1,'Allergy Intolerance']",{},"{0,0}",2,"{""/data[at0001]/items[at0009,'Reaction']/items[at0011]/_type"":""ELEMENT"",""/data[at0001]/items[at0009,'Reaction']/items[at0011]/value/_type"":""DV_TEXT"",""/data[at0001]/items[at0009,'Reaction']/items[at0011]/value/value"":""Manifestation 20""}"
+25,openEHR-EHR-EVALUATION.adverse_reaction_risk.v1,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Allergies & Intolerances']/items[openEHR-EHR-EVALUATION.adverse_reaction_risk.v1,'Allergy Intolerance']",{},{0},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""requester"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""face-to-face communication"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""216"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""199"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Dr. Marcus Johnson""}"
+26,openEHR-EHR-EVALUATION.adverse_reaction_risk.v1,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Allergies & Intolerances']/items[openEHR-EHR-EVALUATION.adverse_reaction_risk.v1,'Allergy Intolerance']",{},{1},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""performer"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""not specified"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""193"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""198"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Lara Markham""}"
+27,openEHR-EHR-EVALUATION.exclusion_global.v1,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Allergies & Intolerances']/items[openEHR-EHR-EVALUATION.exclusion_global.v1]",{},{},0,"{""/_type"":""EVALUATION"",""/data[at0001]/_type"":""ITEM_TREE"",""/data[at0001]/items[at0002,'Global exclusion of adverse reactions']/_type"":""ELEMENT"",""/data[at0001]/items[at0002,'Global exclusion of adverse reactions']/value/_type"":""DV_TEXT"",""/data[at0001]/items[at0002,'Global exclusion of adverse reactions']/value/value"":""No known environmental allergies"",""/data[at0001]/items[at0002,'Global exclusion of adverse reactions']/name/_type"":""DV_CODED_TEXT"",""/data[at0001]/items[at0002,'Global exclusion of adverse reactions']/name/value"":""Global exclusion of adverse reactions"",""/data[at0001]/items[at0002,'Global exclusion of adverse reactions']/name/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/items[at0002,'Global exclusion of adverse reactions']/name/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/items[at0002,'Global exclusion of adverse reactions']/name/defining_code/terminology_id/value"":""local"",""/data[at0001]/items[at0002,'Global exclusion of adverse reactions']/name/defining_code/code_string"":""at0007"",""/data[at0001]/archetype_node_id"":""at0001"",""/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0001]/name/value"":""Tree"",""/archetype_node_id"":""openEHR-EHR-EVALUATION.exclusion_global.v1"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""en"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-EVALUATION.exclusion_global.v1"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/name/_type"":""DV_TEXT"",""/name/value"":""Exclusion - global"",""/subject/_type"":""PARTY_SELF""}"
+28,openEHR-EHR-EVALUATION.exclusion_global.v1,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Allergies & Intolerances']/items[openEHR-EHR-EVALUATION.exclusion_global.v1]",{},{0},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""requester"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""face-to-face communication"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""216"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""199"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Dr. Marcus Johnson""}"
+29,openEHR-EHR-EVALUATION.exclusion_global.v1,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Allergies & Intolerances']/items[openEHR-EHR-EVALUATION.exclusion_global.v1]",{},{1},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""performer"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""not specified"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""193"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""198"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Lara Markham""}"
+30,openEHR-EHR-EVALUATION.absence.v2,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Allergies & Intolerances']/items[openEHR-EHR-EVALUATION.absence.v2]",{},{},0,"{""/_type"":""EVALUATION"",""/data[at0001]/_type"":""ITEM_TREE"",""/data[at0001]/items[at0002]/_type"":""ELEMENT"",""/data[at0001]/items[at0002]/value/_type"":""DV_TEXT"",""/data[at0001]/items[at0002]/value/value"":""No information about allergies"",""/data[at0001]/archetype_node_id"":""at0001"",""/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0001]/name/value"":""Tree"",""/protocol[at0003]/_type"":""ITEM_TREE"",""/protocol[at0003]/items[at0004]/_type"":""ELEMENT"",""/protocol[at0003]/items[at0004]/value/_type"":""DV_DATE_TIME"",""/protocol[at0003]/items[at0004]/value/value"":""2021-12-03T16:05:19.514071+01:00"",""/protocol[at0003]/items[at0004]/value/magnitude"":63774140719,""/protocol[at0003]/archetype_node_id"":""at0003"",""/protocol[at0003]/name/_type"":""DV_TEXT"",""/protocol[at0003]/name/value"":""Tree"",""/archetype_node_id"":""openEHR-EHR-EVALUATION.absence.v2"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""en"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-EVALUATION.absence.v2"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/name/_type"":""DV_TEXT"",""/name/value"":""Absence of information"",""/subject/_type"":""PARTY_SELF""}"
+31,openEHR-EHR-EVALUATION.absence.v2,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Allergies & Intolerances']/items[openEHR-EHR-EVALUATION.absence.v2]",{},{0},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""requester"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""face-to-face communication"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""216"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""199"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Dr. Marcus Johnson""}"
+32,openEHR-EHR-EVALUATION.absence.v2,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Allergies & Intolerances']/items[openEHR-EHR-EVALUATION.absence.v2]",{},{1},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""performer"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""not specified"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""193"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""198"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Lara Markham""}"
+33,openEHR-EHR-EVALUATION.problem_diagnosis.v1,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Problem List']/items[openEHR-EHR-EVALUATION.problem_diagnosis.v1]",{},{},0,"{""/_type"":""EVALUATION"",""/data[at0001]/_type"":""ITEM_TREE"",""/data[at0001]/items[at0002]/_type"":""ELEMENT"",""/data[at0001]/items[at0002]/value/_type"":""DV_TEXT"",""/data[at0001]/items[at0002]/value/value"":""Problem/Diagnosis name 23"",""/data[at0001]/items[at0077]/_type"":""ELEMENT"",""/data[at0001]/items[at0077]/value/_type"":""DV_DATE_TIME"",""/data[at0001]/items[at0077]/value/value"":""2021-12-03T16:05:19.514097+01:00"",""/data[at0001]/items[at0077]/value/magnitude"":63774140719,""/data[at0001]/items[at0005]/_type"":""ELEMENT"",""/data[at0001]/items[at0005]/value/_type"":""DV_CODED_TEXT"",""/data[at0001]/items[at0005]/value/value"":""Moderate"",""/data[at0001]/items[at0005]/value/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/items[at0005]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/items[at0005]/value/defining_code/terminology_id/value"":""local"",""/data[at0001]/items[at0005]/value/defining_code/code_string"":""at0048"",""/data[at0001]/items[at0030,'Date of abatement']/_type"":""ELEMENT"",""/data[at0001]/items[at0030,'Date of abatement']/value/_type"":""DV_DATE_TIME"",""/data[at0001]/items[at0030,'Date of abatement']/value/value"":""2021-12-03T16:05:19.514119+01:00"",""/data[at0001]/items[at0030,'Date of abatement']/value/magnitude"":63774140719,""/data[at0001]/items[at0030,'Date of abatement']/name/_type"":""DV_TEXT"",""/data[at0001]/items[at0030,'Date of abatement']/name/value"":""Date of abatement"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/_type"":""CLUSTER"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0003]/_type"":""ELEMENT"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0003]/value/_type"":""DV_CODED_TEXT"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0003]/value/value"":""Inactive"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0003]/value/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0003]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0003]/value/defining_code/terminology_id/value"":""local"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0003]/value/defining_code/code_string"":""at0027"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0083]/_type"":""ELEMENT"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0083]/value/_type"":""DV_CODED_TEXT"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0083]/value/value"":""Relapsed"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0083]/value/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0083]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0083]/value/defining_code/terminology_id/value"":""local"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0083]/value/defining_code/code_string"":""at0097"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0089]/_type"":""ELEMENT"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0089]/value/_type"":""DV_CODED_TEXT"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0089]/value/value"":""In remission"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0089]/value/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0089]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0089]/value/defining_code/terminology_id/value"":""local"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0089]/value/defining_code/code_string"":""at0090"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0071]/_type"":""ELEMENT"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0071]/value/_type"":""DV_CODED_TEXT"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0071]/value/value"":""Recurrence"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0071]/value/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0071]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0071]/value/defining_code/terminology_id/value"":""local"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0071]/value/defining_code/code_string"":""at0096"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/archetype_details/archetype_id/value"":""openEHR-EHR-CLUSTER.problem_qualifier.v1"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/archetype_details/rm_version"":""1.0.4"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/archetype_details/_type"":""ARCHETYPED"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/archetype_node_id"":""openEHR-EHR-CLUSTER.problem_qualifier.v1"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/name/_type"":""DV_TEXT"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/name/value"":""Problem/Diagnosis qualifier"",""/data[at0001]/items[at0073]/_type"":""ELEMENT"",""/data[at0001]/items[at0073]/value/_type"":""DV_CODED_TEXT"",""/data[at0001]/items[at0073]/value/value"":""Probable"",""/data[at0001]/items[at0073]/value/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/items[at0073]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/items[at0073]/value/defining_code/terminology_id/value"":""local"",""/data[at0001]/items[at0073]/value/defining_code/code_string"":""at0075"",""/data[at0001]/archetype_node_id"":""at0001"",""/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0001]/name/value"":""structure"",""/protocol[at0032]/_type"":""ITEM_TREE"",""/protocol[at0032]/items[at0070]/_type"":""ELEMENT"",""/protocol[at0032]/items[at0070]/value/_type"":""DV_DATE_TIME"",""/protocol[at0032]/items[at0070]/value/value"":""2021-12-03T16:05:19.514148+01:00"",""/protocol[at0032]/items[at0070]/value/magnitude"":63774140719,""/protocol[at0032]/archetype_node_id"":""at0032"",""/protocol[at0032]/name/_type"":""DV_TEXT"",""/protocol[at0032]/name/value"":""Tree"",""/archetype_node_id"":""openEHR-EHR-EVALUATION.problem_diagnosis.v1"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""en"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-EVALUATION.problem_diagnosis.v1"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/name/_type"":""DV_TEXT"",""/name/value"":""Problem/Diagnosis"",""/subject/_type"":""PARTY_SELF""}"
+34,openEHR-EHR-EVALUATION.problem_diagnosis.v1,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Problem List']/items[openEHR-EHR-EVALUATION.problem_diagnosis.v1]",{},{0},1,"{""/data[at0001]/items[at0012]/_type"":""ELEMENT"",""/data[at0001]/items[at0012]/value/_type"":""DV_TEXT"",""/data[at0001]/items[at0012]/value/value"":""Body site 31""}"
+35,openEHR-EHR-EVALUATION.problem_diagnosis.v1,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Problem List']/items[openEHR-EHR-EVALUATION.problem_diagnosis.v1]",{},{0},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""requester"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""face-to-face communication"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""216"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""199"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Dr. Marcus Johnson""}"
+36,openEHR-EHR-EVALUATION.problem_diagnosis.v1,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Problem List']/items[openEHR-EHR-EVALUATION.problem_diagnosis.v1]",{},{1},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""performer"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""not specified"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""193"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""198"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Lara Markham""}"
+37,openEHR-EHR-EVALUATION.exclusion_global.v1,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Problem List']/items[openEHR-EHR-EVALUATION.exclusion_global.v1]",{},{},0,"{""/_type"":""EVALUATION"",""/data[at0001]/_type"":""ITEM_TREE"",""/data[at0001]/items[at0002,'Global exclusion of problems/diagnoses']/_type"":""ELEMENT"",""/data[at0001]/items[at0002,'Global exclusion of problems/diagnoses']/value/_type"":""DV_TEXT"",""/data[at0001]/items[at0002,'Global exclusion of problems/diagnoses']/value/value"":""No known problems"",""/data[at0001]/items[at0002,'Global exclusion of problems/diagnoses']/name/_type"":""DV_CODED_TEXT"",""/data[at0001]/items[at0002,'Global exclusion of problems/diagnoses']/name/value"":""Global exclusion of problems/diagnoses"",""/data[at0001]/items[at0002,'Global exclusion of problems/diagnoses']/name/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/items[at0002,'Global exclusion of problems/diagnoses']/name/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/items[at0002,'Global exclusion of problems/diagnoses']/name/defining_code/terminology_id/value"":""local"",""/data[at0001]/items[at0002,'Global exclusion of problems/diagnoses']/name/defining_code/code_string"":""at0003"",""/data[at0001]/archetype_node_id"":""at0001"",""/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0001]/name/value"":""Tree"",""/archetype_node_id"":""openEHR-EHR-EVALUATION.exclusion_global.v1"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""en"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-EVALUATION.exclusion_global.v1"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/name/_type"":""DV_TEXT"",""/name/value"":""Exclusion - global"",""/subject/_type"":""PARTY_SELF""}"
+38,openEHR-EHR-EVALUATION.exclusion_global.v1,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Problem List']/items[openEHR-EHR-EVALUATION.exclusion_global.v1]",{},{0},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""requester"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""face-to-face communication"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""216"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""199"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Dr. Marcus Johnson""}"
+39,openEHR-EHR-EVALUATION.exclusion_global.v1,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Problem List']/items[openEHR-EHR-EVALUATION.exclusion_global.v1]",{},{1},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""performer"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""not specified"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""193"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""198"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Lara Markham""}"
+40,openEHR-EHR-EVALUATION.absence.v2,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Problem List']/items[openEHR-EHR-EVALUATION.absence.v2]",{},{},0,"{""/_type"":""EVALUATION"",""/data[at0001]/_type"":""ITEM_TREE"",""/data[at0001]/items[at0002]/_type"":""ELEMENT"",""/data[at0001]/items[at0002]/value/_type"":""DV_TEXT"",""/data[at0001]/items[at0002]/value/value"":""No information about current problems"",""/data[at0001]/archetype_node_id"":""at0001"",""/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0001]/name/value"":""Tree"",""/protocol[at0003]/_type"":""ITEM_TREE"",""/protocol[at0003]/items[at0004]/_type"":""ELEMENT"",""/protocol[at0003]/items[at0004]/value/_type"":""DV_DATE_TIME"",""/protocol[at0003]/items[at0004]/value/value"":""2021-12-03T16:05:19.514175+01:00"",""/protocol[at0003]/items[at0004]/value/magnitude"":63774140719,""/protocol[at0003]/archetype_node_id"":""at0003"",""/protocol[at0003]/name/_type"":""DV_TEXT"",""/protocol[at0003]/name/value"":""Tree"",""/archetype_node_id"":""openEHR-EHR-EVALUATION.absence.v2"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""en"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-EVALUATION.absence.v2"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/name/_type"":""DV_TEXT"",""/name/value"":""Absence of information"",""/subject/_type"":""PARTY_SELF""}"
+41,openEHR-EHR-EVALUATION.absence.v2,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Problem List']/items[openEHR-EHR-EVALUATION.absence.v2]",{},{0},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""requester"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""face-to-face communication"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""216"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""199"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Dr. Marcus Johnson""}"
+42,openEHR-EHR-EVALUATION.absence.v2,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Problem List']/items[openEHR-EHR-EVALUATION.absence.v2]",{},{1},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""performer"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""not specified"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""193"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""198"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Lara Markham""}"
+43,openEHR-EHR-ACTION.medication.v1,ACTION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Immunizations']/items[openEHR-EHR-ACTION.medication.v1,'Immunization statement']",{},{},0,"{""/_type"":""ACTION"",""/description[at0017]/_type"":""ITEM_TREE"",""/description[at0017]/items[at0020,'Immunisation item']/_type"":""ELEMENT"",""/description[at0017]/items[at0020,'Immunisation item']/value/_type"":""DV_TEXT"",""/description[at0017]/items[at0020,'Immunisation item']/value/value"":""Immunisation item 11"",""/description[at0017]/items[at0020,'Immunisation item']/name/_type"":""DV_TEXT"",""/description[at0017]/items[at0020,'Immunisation item']/name/value"":""Immunisation item"",""/description[at0017]/items[at0140]/_type"":""CLUSTER"",""/description[at0017]/items[at0140]/items[at0147]/_type"":""ELEMENT"",""/description[at0017]/items[at0140]/items[at0147]/value/_type"":""DV_TEXT"",""/description[at0017]/items[at0140]/items[at0147]/value/value"":""Route 76"",""/description[at0017]/items[at0140]/items[at0141,'Target site']/_type"":""ELEMENT"",""/description[at0017]/items[at0140]/items[at0141,'Target site']/value/_type"":""DV_TEXT"",""/description[at0017]/items[at0140]/items[at0141,'Target site']/value/value"":""Target site 95"",""/description[at0017]/items[at0140]/items[at0141,'Target site']/name/_type"":""DV_TEXT"",""/description[at0017]/items[at0140]/items[at0141,'Target site']/name/value"":""Target site"",""/description[at0017]/items[at0140]/archetype_node_id"":""at0140"",""/description[at0017]/items[at0140]/name/_type"":""DV_TEXT"",""/description[at0017]/items[at0140]/name/value"":""Administration details"",""/description[at0017]/items[at0025]/_type"":""ELEMENT"",""/description[at0017]/items[at0025]/value/_type"":""DV_COUNT"",""/description[at0017]/items[at0025]/value/magnitude"":8,""/description[at0017]/archetype_node_id"":""at0017"",""/description[at0017]/name/_type"":""DV_TEXT"",""/description[at0017]/name/value"":""Tree"",""/name/_type"":""DV_TEXT"",""/name/value"":""Immunization statement"",""/archetype_node_id"":""openEHR-EHR-ACTION.medication.v1"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""en"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-ACTION.medication.v1"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/time/_type"":""DV_DATE_TIME"",""/time/value"":""2021-12-03T16:05:19.514212+01:00"",""/time/magnitude"":63774140719,""/ism_transition/_type"":""ISM_TRANSITION"",""/ism_transition/current_state/_type"":""DV_CODED_TEXT"",""/ism_transition/current_state/value"":""active"",""/ism_transition/current_state/defining_code/_type"":""CODE_PHRASE"",""/ism_transition/current_state/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/ism_transition/current_state/defining_code/terminology_id/value"":""openehr"",""/ism_transition/current_state/defining_code/code_string"":""245"",""/subject/_type"":""PARTY_SELF""}"
+44,openEHR-EHR-ACTION.medication.v1,ACTION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Immunizations']/items[openEHR-EHR-ACTION.medication.v1,'Immunization statement']",{},{0},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""requester"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""face-to-face communication"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""216"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""199"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Dr. Marcus Johnson""}"
+45,openEHR-EHR-ACTION.medication.v1,ACTION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Immunizations']/items[openEHR-EHR-ACTION.medication.v1,'Immunization statement']",{},{1},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""performer"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""not specified"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""193"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""198"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Lara Markham""}"
+46,openEHR-EHR-EVALUATION.absence.v2,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Immunizations']/items[openEHR-EHR-EVALUATION.absence.v2]",{},{},0,"{""/_type"":""EVALUATION"",""/data[at0001]/_type"":""ITEM_TREE"",""/data[at0001]/items[at0002]/_type"":""ELEMENT"",""/data[at0001]/items[at0002]/value/_type"":""DV_TEXT"",""/data[at0001]/items[at0002]/value/value"":""No information about immunizations"",""/data[at0001]/archetype_node_id"":""at0001"",""/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0001]/name/value"":""Tree"",""/protocol[at0003]/_type"":""ITEM_TREE"",""/protocol[at0003]/items[at0004]/_type"":""ELEMENT"",""/protocol[at0003]/items[at0004]/value/_type"":""DV_DATE_TIME"",""/protocol[at0003]/items[at0004]/value/value"":""2021-12-03T16:05:19.514237+01:00"",""/protocol[at0003]/items[at0004]/value/magnitude"":63774140719,""/protocol[at0003]/archetype_node_id"":""at0003"",""/protocol[at0003]/name/_type"":""DV_TEXT"",""/protocol[at0003]/name/value"":""Tree"",""/archetype_node_id"":""openEHR-EHR-EVALUATION.absence.v2"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""en"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-EVALUATION.absence.v2"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/name/_type"":""DV_TEXT"",""/name/value"":""Absence of information"",""/subject/_type"":""PARTY_SELF""}"
+47,openEHR-EHR-EVALUATION.absence.v2,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Immunizations']/items[openEHR-EHR-EVALUATION.absence.v2]",{},{0},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""requester"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""face-to-face communication"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""216"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""199"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Dr. Marcus Johnson""}"
+48,openEHR-EHR-EVALUATION.absence.v2,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Immunizations']/items[openEHR-EHR-EVALUATION.absence.v2]",{},{1},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""performer"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""not specified"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""193"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""198"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Lara Markham""}"
+49,openEHR-EHR-ACTION.procedure.v1,ACTION,"/content[openEHR-EHR-SECTION.adhoc.v1,'History of Procedures']/items[openEHR-EHR-ACTION.procedure.v1]",{},{},0,"{""/_type"":""ACTION"",""/description[at0001]/_type"":""ITEM_TREE"",""/description[at0001]/items[at0002]/_type"":""ELEMENT"",""/description[at0001]/items[at0002]/value/_type"":""DV_TEXT"",""/description[at0001]/items[at0002]/value/value"":""Procedure name 5"",""/description[at0001]/archetype_node_id"":""at0001"",""/description[at0001]/name/_type"":""DV_TEXT"",""/description[at0001]/name/value"":""Tree"",""/archetype_node_id"":""openEHR-EHR-ACTION.procedure.v1"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""en"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-ACTION.procedure.v1"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/name/_type"":""DV_TEXT"",""/name/value"":""Procedure"",""/time/_type"":""DV_DATE_TIME"",""/time/value"":""2021-12-03T16:05:19.514267+01:00"",""/time/magnitude"":63774140719,""/ism_transition/_type"":""ISM_TRANSITION"",""/ism_transition/current_state/_type"":""DV_CODED_TEXT"",""/ism_transition/current_state/value"":""planned"",""/ism_transition/current_state/defining_code/_type"":""CODE_PHRASE"",""/ism_transition/current_state/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/ism_transition/current_state/defining_code/terminology_id/value"":""openehr"",""/ism_transition/current_state/defining_code/code_string"":""526"",""/subject/_type"":""PARTY_SELF""}"
+50,openEHR-EHR-ACTION.procedure.v1,ACTION,"/content[openEHR-EHR-SECTION.adhoc.v1,'History of Procedures']/items[openEHR-EHR-ACTION.procedure.v1]",{},{0},1,"{""/description[at0001]/items[at0063]/_type"":""ELEMENT"",""/description[at0001]/items[at0063]/value/_type"":""DV_TEXT"",""/description[at0001]/items[at0063]/value/value"":""Body site 65""}"
+51,openEHR-EHR-ACTION.procedure.v1,ACTION,"/content[openEHR-EHR-SECTION.adhoc.v1,'History of Procedures']/items[openEHR-EHR-ACTION.procedure.v1]",{},{0},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""requester"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""face-to-face communication"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""216"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""199"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Dr. Marcus Johnson""}"
+52,openEHR-EHR-ACTION.procedure.v1,ACTION,"/content[openEHR-EHR-SECTION.adhoc.v1,'History of Procedures']/items[openEHR-EHR-ACTION.procedure.v1]",{},{1},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""performer"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""not specified"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""193"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""198"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Lara Markham""}"
+53,openEHR-EHR-EVALUATION.absence.v2,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'History of Procedures']/items[openEHR-EHR-EVALUATION.absence.v2]",{},{},0,"{""/_type"":""EVALUATION"",""/data[at0001]/_type"":""ITEM_TREE"",""/data[at0001]/items[at0002]/_type"":""ELEMENT"",""/data[at0001]/items[at0002]/value/_type"":""DV_TEXT"",""/data[at0001]/items[at0002]/value/value"":""No information about past history of procedures"",""/data[at0001]/archetype_node_id"":""at0001"",""/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0001]/name/value"":""Tree"",""/protocol[at0003]/_type"":""ITEM_TREE"",""/protocol[at0003]/items[at0004]/_type"":""ELEMENT"",""/protocol[at0003]/items[at0004]/value/_type"":""DV_DATE_TIME"",""/protocol[at0003]/items[at0004]/value/value"":""2021-12-03T16:05:19.514291+01:00"",""/protocol[at0003]/items[at0004]/value/magnitude"":63774140719,""/protocol[at0003]/archetype_node_id"":""at0003"",""/protocol[at0003]/name/_type"":""DV_TEXT"",""/protocol[at0003]/name/value"":""Tree"",""/archetype_node_id"":""openEHR-EHR-EVALUATION.absence.v2"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""en"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-EVALUATION.absence.v2"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/name/_type"":""DV_TEXT"",""/name/value"":""Absence of information"",""/subject/_type"":""PARTY_SELF""}"
+54,openEHR-EHR-EVALUATION.absence.v2,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'History of Procedures']/items[openEHR-EHR-EVALUATION.absence.v2]",{},{0},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""requester"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""face-to-face communication"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""216"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""199"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Dr. Marcus Johnson""}"
+55,openEHR-EHR-EVALUATION.absence.v2,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'History of Procedures']/items[openEHR-EHR-EVALUATION.absence.v2]",{},{1},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""performer"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""not specified"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""193"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""198"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Lara Markham""}"
+56,openEHR-EHR-EVALUATION.exclusion_global.v1,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'History of Procedures']/items[openEHR-EHR-EVALUATION.exclusion_global.v1]",{},{},0,"{""/_type"":""EVALUATION"",""/data[at0001]/_type"":""ITEM_TREE"",""/data[at0001]/items[at0002,'Global exclusion of procedures']/_type"":""ELEMENT"",""/data[at0001]/items[at0002,'Global exclusion of procedures']/value/_type"":""DV_TEXT"",""/data[at0001]/items[at0002,'Global exclusion of procedures']/value/value"":""No known procedures"",""/data[at0001]/items[at0002,'Global exclusion of procedures']/name/_type"":""DV_CODED_TEXT"",""/data[at0001]/items[at0002,'Global exclusion of procedures']/name/value"":""Global exclusion of procedures"",""/data[at0001]/items[at0002,'Global exclusion of procedures']/name/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/items[at0002,'Global exclusion of procedures']/name/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/items[at0002,'Global exclusion of procedures']/name/defining_code/terminology_id/value"":""local"",""/data[at0001]/items[at0002,'Global exclusion of procedures']/name/defining_code/code_string"":""at0006"",""/data[at0001]/archetype_node_id"":""at0001"",""/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0001]/name/value"":""Tree"",""/archetype_node_id"":""openEHR-EHR-EVALUATION.exclusion_global.v1"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""en"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-EVALUATION.exclusion_global.v1"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/name/_type"":""DV_TEXT"",""/name/value"":""Exclusion - global"",""/subject/_type"":""PARTY_SELF""}"
+57,openEHR-EHR-EVALUATION.exclusion_global.v1,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'History of Procedures']/items[openEHR-EHR-EVALUATION.exclusion_global.v1]",{},{0},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""requester"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""face-to-face communication"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""216"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""199"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Dr. Marcus Johnson""}"
+58,openEHR-EHR-EVALUATION.exclusion_global.v1,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'History of Procedures']/items[openEHR-EHR-EVALUATION.exclusion_global.v1]",{},{1},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""performer"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""not specified"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""193"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""198"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Lara Markham""}"
+59,openEHR-EHR-EVALUATION.device_summary.v0,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Medical Devices']/items[openEHR-EHR-EVALUATION.device_summary.v0,'Device use statement']",{},{},0,"{""/_type"":""EVALUATION"",""/data[at0001]/_type"":""ITEM_TREE"",""/data[at0001]/archetype_node_id"":""at0001"",""/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0001]/name/value"":""Tree"",""/name/_type"":""DV_TEXT"",""/name/value"":""Device use statement"",""/archetype_node_id"":""openEHR-EHR-EVALUATION.device_summary.v0"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""en"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-EVALUATION.device_summary.v0"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/subject/_type"":""PARTY_SELF""}"
+60,openEHR-EHR-EVALUATION.device_summary.v0,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Medical Devices']/items[openEHR-EHR-EVALUATION.device_summary.v0,'Device use statement']",{},{0},1,"{""/data[at0001]/items[at0022]/_type"":""CLUSTER"",""/data[at0001]/items[at0022]/items[at0007]/_type"":""ELEMENT"",""/data[at0001]/items[at0022]/items[at0007]/value/_type"":""DV_TEXT"",""/data[at0001]/items[at0022]/items[at0007]/value/value"":""Device name 57"",""/data[at0001]/items[at0022]/items[at0012]/_type"":""ELEMENT"",""/data[at0001]/items[at0022]/items[at0012]/value/_type"":""DV_TEXT"",""/data[at0001]/items[at0022]/items[at0012]/value/value"":""Body site 62"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/_type"":""CLUSTER"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0001]/_type"":""ELEMENT"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0001]/value/_type"":""DV_TEXT"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0001]/value/value"":""Device name 78"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0003]/_type"":""ELEMENT"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0003]/value/_type"":""DV_TEXT"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0003]/value/value"":""Type 30"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0002]/_type"":""ELEMENT"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0002]/value/_type"":""DV_TEXT"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0002]/value/value"":""Description 82"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0021]/_type"":""ELEMENT"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0021]/value/_type"":""DV_IDENTIFIER"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0021]/value/issuer"":""Issuer"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0021]/value/assigner"":""Assigner"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0021]/value/id"":""73b166ae-1c28-4ce0-8c08-a9587d8fd95a"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0021]/value/type"":""Prescription"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0004]/_type"":""ELEMENT"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0004]/value/_type"":""DV_TEXT"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0004]/value/value"":""Manufacturer 71"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0005]/_type"":""ELEMENT"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0005]/value/_type"":""DV_DATE_TIME"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0005]/value/value"":""2021-12-03T16:05:19.514334+01:00"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0005]/value/magnitude"":63774140719,""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0020]/_type"":""ELEMENT"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0020]/value/_type"":""DV_TEXT"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0020]/value/value"":""Serial number 12"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0022]/_type"":""ELEMENT"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0022]/value/_type"":""DV_TEXT"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0022]/value/value"":""Catalogue number 39"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0023]/_type"":""ELEMENT"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0023]/value/_type"":""DV_TEXT"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0023]/value/value"":""Model number 8"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0006]/_type"":""ELEMENT"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0006]/value/_type"":""DV_TEXT"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0006]/value/value"":""Batch/Lot number 52"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0025]/_type"":""ELEMENT"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0025]/value/_type"":""DV_TEXT"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0025]/value/value"":""Software version 16"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0007]/_type"":""ELEMENT"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0007]/value/_type"":""DV_DATE_TIME"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0007]/value/value"":""2021-12-03T16:05:19.514362+01:00"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0007]/value/magnitude"":63774140719,""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0008]/_type"":""ELEMENT"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0008]/value/_type"":""DV_TEXT"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0008]/value/value"":""Comment 41"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/archetype_details/archetype_id/value"":""openEHR-EHR-CLUSTER.device.v1"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/archetype_details/rm_version"":""1.0.4"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/archetype_details/_type"":""ARCHETYPED"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/archetype_node_id"":""openEHR-EHR-CLUSTER.device.v1"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/name/_type"":""DV_TEXT"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/name/value"":""Medical device"",""/data[at0001]/items[at0022]/archetype_node_id"":""at0022"",""/data[at0001]/items[at0022]/name/_type"":""DV_TEXT"",""/data[at0001]/items[at0022]/name/value"":""Device details""}"
+61,openEHR-EHR-EVALUATION.device_summary.v0,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Medical Devices']/items[openEHR-EHR-EVALUATION.device_summary.v0,'Device use statement']",{},"{0,0}",2,"{""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0024]/_type"":""ELEMENT"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0024]/value/_type"":""DV_IDENTIFIER"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0024]/value/issuer"":""Issuer"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0024]/value/assigner"":""Assigner"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0024]/value/id"":""60287ff3-ec0f-4cd5-9000-2c05af2e6a84"",""/data[at0001]/items[at0022]/items[openEHR-EHR-CLUSTER.device.v1]/items[at0024]/value/type"":""Prescription""}"
+62,openEHR-EHR-EVALUATION.device_summary.v0,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Medical Devices']/items[openEHR-EHR-EVALUATION.device_summary.v0,'Device use statement']",{},{0},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""requester"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""face-to-face communication"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""216"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""199"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Dr. Marcus Johnson""}"
+63,openEHR-EHR-EVALUATION.device_summary.v0,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Medical Devices']/items[openEHR-EHR-EVALUATION.device_summary.v0,'Device use statement']",{},{1},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""performer"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""not specified"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""193"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""198"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Lara Markham""}"
+64,openEHR-EHR-OBSERVATION.laboratory_test_result.v1,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/items[openEHR-EHR-OBSERVATION.laboratory_test_result.v1]",{},{},0,"{""/_type"":""OBSERVATION"",""/data[at0001]/_type"":""HISTORY"",""/data[at0001]/archetype_node_id"":""at0001"",""/data[at0001]/origin/_type"":""DV_DATE_TIME"",""/data[at0001]/origin/value"":""2021-12-03T17:34:06.849379+01:00"",""/data[at0001]/origin/magnitude"":63774146046,""/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0001]/name/value"":""Event Series"",""/archetype_node_id"":""openEHR-EHR-OBSERVATION.laboratory_test_result.v1"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""en"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-OBSERVATION.laboratory_test_result.v1"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/name/_type"":""DV_TEXT"",""/name/value"":""Laboratory test result"",""/subject/_type"":""PARTY_SELF""}"
+65,openEHR-EHR-OBSERVATION.laboratory_test_result.v1,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/items[openEHR-EHR-OBSERVATION.laboratory_test_result.v1]",{},{0},1,"{""/data[at0001]/events[at0002]/_type"":""POINT_EVENT"",""/data[at0001]/events[at0002]/data[at0003]/_type"":""ITEM_TREE"",""/data[at0001]/events[at0002]/data[at0003]/items[at0005]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0005]/value/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0005]/value/value"":""Test name 22"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.specimen.v1]/_type"":""CLUSTER"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.specimen.v1]/items[at0029]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.specimen.v1]/items[at0029]/value/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.specimen.v1]/items[at0029]/value/value"":""Specimen type 42"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.specimen.v1]/items[at0007,'Method']/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.specimen.v1]/items[at0007,'Method']/value/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.specimen.v1]/items[at0007,'Method']/value/value"":""Method 30"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.specimen.v1]/items[at0007,'Method']/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.specimen.v1]/items[at0007,'Method']/name/value"":""Method"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.specimen.v1]/items[at0087,'Body site']/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.specimen.v1]/items[at0087,'Body site']/value/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.specimen.v1]/items[at0087,'Body site']/value/value"":""Body site 14"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.specimen.v1]/items[at0087,'Body site']/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.specimen.v1]/items[at0087,'Body site']/name/value"":""Body site"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.specimen.v1]/archetype_details/archetype_id/value"":""openEHR-EHR-CLUSTER.specimen.v1"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.specimen.v1]/archetype_details/rm_version"":""1.0.4"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.specimen.v1]/archetype_details/_type"":""ARCHETYPED"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.specimen.v1]/archetype_node_id"":""openEHR-EHR-CLUSTER.specimen.v1"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.specimen.v1]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.specimen.v1]/name/value"":""Specimen"",""/data[at0001]/events[at0002]/data[at0003]/items[at0077]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0077]/value/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0077]/value/value"":""Laboratory"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.laboratory_test_analyte.v1]/_type"":""CLUSTER"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.laboratory_test_analyte.v1]/items[at0024]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.laboratory_test_analyte.v1]/items[at0024]/value/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.laboratory_test_analyte.v1]/items[at0024]/value/value"":""Analyte name 79"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.laboratory_test_analyte.v1]/archetype_details/archetype_id/value"":""openEHR-EHR-CLUSTER.laboratory_test_analyte.v1"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.laboratory_test_analyte.v1]/archetype_details/rm_version"":""1.0.4"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.laboratory_test_analyte.v1]/archetype_details/_type"":""ARCHETYPED"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.laboratory_test_analyte.v1]/archetype_node_id"":""openEHR-EHR-CLUSTER.laboratory_test_analyte.v1"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.laboratory_test_analyte.v1]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.laboratory_test_analyte.v1]/name/value"":""Laboratory analyte result"",""/data[at0001]/events[at0002]/data[at0003]/items[at0057,'Interpretation']/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0057,'Interpretation']/value/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0057,'Interpretation']/value/value"":""Interpretation 32"",""/data[at0001]/events[at0002]/data[at0003]/items[at0057,'Interpretation']/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0057,'Interpretation']/name/value"":""Interpretation"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/_type"":""CLUSTER"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0002]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0002]/value/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0002]/value/value"":""Resource name 96"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0001]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0001]/value/_type"":""DV_MULTIMEDIA"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0001]/value/alternate_text"":""alternate text"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0001]/value/uri/_type"":""DV_URI"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0001]/value/uri/value"":""http://med.tube.com/sample"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0001]/value/media_type/_type"":""CODE_PHRASE"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0001]/value/media_type/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0001]/value/media_type/terminology_id/value"":""IANA_media-types"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0001]/value/media_type/code_string"":""video/MPV"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0001]/value/size"":504903212,""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/archetype_details/archetype_id/value"":""openEHR-EHR-CLUSTER.multimedia_source.v0"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/archetype_details/rm_version"":""1.0.4"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/archetype_details/_type"":""ARCHETYPED"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/archetype_node_id"":""openEHR-EHR-CLUSTER.multimedia_source.v0"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/name/value"":""Multimedia source"",""/data[at0001]/events[at0002]/data[at0003]/archetype_node_id"":""at0003"",""/data[at0001]/events[at0002]/data[at0003]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/name/value"":""Tree"",""/data[at0001]/events[at0002]/archetype_node_id"":""at0002"",""/data[at0001]/events[at0002]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/name/value"":""Any event"",""/data[at0001]/events[at0002]/time/_type"":""DV_DATE_TIME"",""/data[at0001]/events[at0002]/time/value"":""2021-12-03T17:34:06.849379+01:00"",""/data[at0001]/events[at0002]/time/magnitude"":63774146046}"
+66,openEHR-EHR-OBSERVATION.laboratory_test_result.v1,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/items[openEHR-EHR-OBSERVATION.laboratory_test_result.v1]",{},{0},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""requester"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""face-to-face communication"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""216"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""199"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Dr. Marcus Johnson""}"
+67,openEHR-EHR-OBSERVATION.laboratory_test_result.v1,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/items[openEHR-EHR-OBSERVATION.laboratory_test_result.v1]",{},{1},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""performer"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""not specified"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""193"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""198"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Lara Markham""}"
+68,openEHR-EHR-OBSERVATION.imaging_exam_result.v0,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/items[openEHR-EHR-OBSERVATION.imaging_exam_result.v0]",{},{},0,"{""/_type"":""OBSERVATION"",""/data[at0001]/_type"":""HISTORY"",""/data[at0001]/archetype_node_id"":""at0001"",""/data[at0001]/origin/_type"":""DV_DATE_TIME"",""/data[at0001]/origin/value"":""2021-12-03T17:34:06.849379+01:00"",""/data[at0001]/origin/magnitude"":63774146046,""/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0001]/name/value"":""Event Series"",""/protocol[at0025]/_type"":""ITEM_TREE"",""/protocol[at0025]/items[at0049]/_type"":""ELEMENT"",""/protocol[at0025]/items[at0049]/value/_type"":""DV_TEXT"",""/protocol[at0025]/items[at0049]/value/value"":""Technique 82"",""/protocol[at0025]/items[at0057]/_type"":""ELEMENT"",""/protocol[at0025]/items[at0057]/value/_type"":""DV_TEXT"",""/protocol[at0025]/items[at0057]/value/value"":""Imaging quality 89"",""/protocol[at0025]/archetype_node_id"":""at0025"",""/protocol[at0025]/name/_type"":""DV_TEXT"",""/protocol[at0025]/name/value"":""Tree"",""/archetype_node_id"":""openEHR-EHR-OBSERVATION.imaging_exam_result.v0"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""en"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-OBSERVATION.imaging_exam_result.v0"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/name/_type"":""DV_TEXT"",""/name/value"":""Imaging examination result"",""/subject/_type"":""PARTY_SELF""}"
+69,openEHR-EHR-OBSERVATION.imaging_exam_result.v0,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/items[openEHR-EHR-OBSERVATION.imaging_exam_result.v0]",{},{0},1,"{""/data[at0001]/events[at0002]/_type"":""POINT_EVENT"",""/data[at0001]/events[at0002]/data[at0003]/_type"":""ITEM_TREE"",""/data[at0001]/events[at0002]/data[at0003]/items[at0004]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0004]/value/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0004]/value/value"":""Test name 15"",""/data[at0001]/events[at0002]/data[at0003]/items[at0005]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0005]/value/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0005]/value/value"":""Modality 22"",""/data[at0001]/events[at0002]/data[at0003]/items[at0055]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0055]/value/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0055]/value/value"":""Anatomical site 35"",""/data[at0001]/events[at0002]/data[at0003]/items[at0007]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0007]/value/_type"":""DV_CODED_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0007]/value/value"":""Registered"",""/data[at0001]/events[at0002]/data[at0003]/items[at0007]/value/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/events[at0002]/data[at0003]/items[at0007]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/events[at0002]/data[at0003]/items[at0007]/value/defining_code/terminology_id/value"":""local"",""/data[at0001]/events[at0002]/data[at0003]/items[at0007]/value/defining_code/code_string"":""at0009"",""/data[at0001]/events[at0002]/data[at0003]/items[at0008]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0008]/value/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0008]/value/value"":""Findings 82"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/_type"":""CLUSTER"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0024]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0024]/value/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0024]/value/value"":""Finding name 89"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0033]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0033]/value/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0033]/value/value"":""Anatomical location 48"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0028]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0028]/value/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0028]/value/value"":""Description 70"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0029]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0029]/value/_type"":""DV_CODED_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0029]/value/value"":""Improving"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0029]/value/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0029]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0029]/value/defining_code/terminology_id/value"":""local"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0029]/value/defining_code/code_string"":""at0030"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/archetype_details/archetype_id/value"":""openEHR-EHR-CLUSTER.imaging_finding.v0"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/archetype_details/rm_version"":""1.0.4"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/archetype_details/_type"":""ARCHETYPED"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/archetype_node_id"":""openEHR-EHR-CLUSTER.imaging_finding.v0"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/name/value"":""Imaging finding"",""/data[at0001]/events[at0002]/data[at0003]/items[at0056]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0056]/value/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0056]/value/value"":""Comparison with previous 93"",""/data[at0001]/events[at0002]/data[at0003]/items[at0021]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0021]/value/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0021]/value/value"":""Conclusion 70"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/_type"":""CLUSTER"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0002]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0002]/value/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0002]/value/value"":""Resource name 71"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0001]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0001]/value/_type"":""DV_MULTIMEDIA"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0001]/value/alternate_text"":""alternate text"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0001]/value/uri/_type"":""DV_URI"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0001]/value/uri/value"":""http://med.tube.com/sample"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0001]/value/media_type/_type"":""CODE_PHRASE"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0001]/value/media_type/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0001]/value/media_type/terminology_id/value"":""IANA_media-types"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0001]/value/media_type/code_string"":""video/MPV"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/items[at0001]/value/size"":504903212,""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/archetype_details/archetype_id/value"":""openEHR-EHR-CLUSTER.multimedia_source.v0"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/archetype_details/rm_version"":""1.0.4"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/archetype_details/_type"":""ARCHETYPED"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/archetype_node_id"":""openEHR-EHR-CLUSTER.multimedia_source.v0"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.multimedia_source.v0]/name/value"":""Multimedia source"",""/data[at0001]/events[at0002]/data[at0003]/archetype_node_id"":""at0003"",""/data[at0001]/events[at0002]/data[at0003]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/name/value"":""Tree"",""/data[at0001]/events[at0002]/archetype_node_id"":""at0002"",""/data[at0001]/events[at0002]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/name/value"":""Any event"",""/data[at0001]/events[at0002]/time/_type"":""DV_DATE_TIME"",""/data[at0001]/events[at0002]/time/value"":""2021-12-03T17:34:06.849379+01:00"",""/data[at0001]/events[at0002]/time/magnitude"":63774146046}"
+70,openEHR-EHR-OBSERVATION.imaging_exam_result.v0,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/items[openEHR-EHR-OBSERVATION.imaging_exam_result.v0]",{},"{0,0}",2,"{""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0001]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0001]/value/_type"":""DV_CODED_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0001]/value/value"":""Absent"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0001]/value/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0001]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0001]/value/defining_code/terminology_id/value"":""local"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0001]/value/defining_code/code_string"":""at0036""}"
+71,openEHR-EHR-OBSERVATION.imaging_exam_result.v0,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/items[openEHR-EHR-OBSERVATION.imaging_exam_result.v0]",{},"{0,0}",2,"{""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0003]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0003]/value/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[openEHR-EHR-CLUSTER.imaging_finding.v0]/items[at0003]/value/value"":""Comment 89""}"
+72,openEHR-EHR-OBSERVATION.imaging_exam_result.v0,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/items[openEHR-EHR-OBSERVATION.imaging_exam_result.v0]",{},"{0,0}",2,"{""/data[at0001]/events[at0002]/data[at0003]/items[at0058]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0058]/value/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0058]/value/value"":""Imaging differential diagnosis 20""}"
+73,openEHR-EHR-OBSERVATION.imaging_exam_result.v0,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/items[openEHR-EHR-OBSERVATION.imaging_exam_result.v0]",{},"{0,0}",2,"{""/data[at0001]/events[at0002]/data[at0003]/items[at0020]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0020]/value/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0020]/value/value"":""Imaging diagnosis 70""}"
+74,openEHR-EHR-OBSERVATION.imaging_exam_result.v0,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/items[openEHR-EHR-OBSERVATION.imaging_exam_result.v0]",{},{0},1,"{""/protocol[at0025]/items[at0027]/_type"":""CLUSTER"",""/protocol[at0025]/items[at0027]/items[at0028]/_type"":""ELEMENT"",""/protocol[at0025]/items[at0027]/items[at0028]/value/_type"":""DV_IDENTIFIER"",""/protocol[at0025]/items[at0027]/items[at0028]/value/issuer"":""Issuer"",""/protocol[at0025]/items[at0027]/items[at0028]/value/assigner"":""Assigner"",""/protocol[at0025]/items[at0027]/items[at0028]/value/id"":""38a6687c-5136-4e75-9f1c-126e8f0e112b"",""/protocol[at0025]/items[at0027]/items[at0028]/value/type"":""Prescription"",""/protocol[at0025]/items[at0027]/items[at0031]/_type"":""ELEMENT"",""/protocol[at0025]/items[at0027]/items[at0031]/value/_type"":""DV_IDENTIFIER"",""/protocol[at0025]/items[at0027]/items[at0031]/value/issuer"":""Issuer"",""/protocol[at0025]/items[at0027]/items[at0031]/value/assigner"":""Assigner"",""/protocol[at0025]/items[at0027]/items[at0031]/value/id"":""9fc6db02-81de-4ec9-afe4-f365c42019e1"",""/protocol[at0025]/items[at0027]/items[at0031]/value/type"":""Prescription"",""/protocol[at0025]/items[at0027]/items[at0032]/_type"":""ELEMENT"",""/protocol[at0025]/items[at0027]/items[at0032]/value/_type"":""DV_URI"",""/protocol[at0025]/items[at0027]/items[at0032]/value/value"":""http://example.com/path/resource"",""/protocol[at0025]/items[at0027]/items[at0033]/_type"":""ELEMENT"",""/protocol[at0025]/items[at0027]/items[at0033]/value/_type"":""DV_IDENTIFIER"",""/protocol[at0025]/items[at0027]/items[at0033]/value/issuer"":""Issuer"",""/protocol[at0025]/items[at0027]/items[at0033]/value/assigner"":""Assigner"",""/protocol[at0025]/items[at0027]/items[at0033]/value/id"":""a147525c-4763-4070-ba22-26e6b33348f4"",""/protocol[at0025]/items[at0027]/items[at0033]/value/type"":""Prescription"",""/protocol[at0025]/items[at0027]/archetype_node_id"":""at0027"",""/protocol[at0025]/items[at0027]/name/_type"":""DV_TEXT"",""/protocol[at0025]/items[at0027]/name/value"":""Examination request details""}"
+75,openEHR-EHR-OBSERVATION.imaging_exam_result.v0,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/items[openEHR-EHR-OBSERVATION.imaging_exam_result.v0]",{},"{0,0}",2,"{""/protocol[at0025]/items[at0027]/items[at0029]/_type"":""ELEMENT"",""/protocol[at0025]/items[at0027]/items[at0029]/value/_type"":""DV_TEXT"",""/protocol[at0025]/items[at0027]/items[at0029]/value/value"":""Examination requested name 96""}"
+76,openEHR-EHR-OBSERVATION.imaging_exam_result.v0,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/items[openEHR-EHR-OBSERVATION.imaging_exam_result.v0]",{},"{0,0}",2,"{""/protocol[at0025]/items[at0027]/items[at0034,'Reported image']/_type"":""CLUSTER"",""/protocol[at0025]/items[at0027]/items[at0034,'Reported image']/items[at0035]/_type"":""ELEMENT"",""/protocol[at0025]/items[at0027]/items[at0034,'Reported image']/items[at0035]/value/_type"":""DV_IDENTIFIER"",""/protocol[at0025]/items[at0027]/items[at0034,'Reported image']/items[at0035]/value/issuer"":""Issuer"",""/protocol[at0025]/items[at0027]/items[at0034,'Reported image']/items[at0035]/value/assigner"":""Assigner"",""/protocol[at0025]/items[at0027]/items[at0034,'Reported image']/items[at0035]/value/id"":""5462ef5c-2275-47c2-8fb5-f9f1d7a19613"",""/protocol[at0025]/items[at0027]/items[at0034,'Reported image']/items[at0035]/value/type"":""Prescription"",""/protocol[at0025]/items[at0027]/items[at0034,'Reported image']/items[at0036]/_type"":""ELEMENT"",""/protocol[at0025]/items[at0027]/items[at0034,'Reported image']/items[at0036]/value/_type"":""DV_IDENTIFIER"",""/protocol[at0025]/items[at0027]/items[at0034,'Reported image']/items[at0036]/value/issuer"":""Issuer"",""/protocol[at0025]/items[at0027]/items[at0034,'Reported image']/items[at0036]/value/assigner"":""Assigner"",""/protocol[at0025]/items[at0027]/items[at0034,'Reported image']/items[at0036]/value/id"":""55dd86d7-52ff-4064-8dc7-f8d9b2bc22e7"",""/protocol[at0025]/items[at0027]/items[at0034,'Reported image']/items[at0036]/value/type"":""Prescription"",""/protocol[at0025]/items[at0027]/items[at0034,'Reported image']/items[at0037]/_type"":""ELEMENT"",""/protocol[at0025]/items[at0027]/items[at0034,'Reported image']/items[at0037]/value/_type"":""DV_TEXT"",""/protocol[at0025]/items[at0027]/items[at0034,'Reported image']/items[at0037]/value/value"":""View 36"",""/protocol[at0025]/items[at0027]/items[at0034,'Reported image']/items[at0038]/_type"":""ELEMENT"",""/protocol[at0025]/items[at0027]/items[at0034,'Reported image']/items[at0038]/value/_type"":""DV_TEXT"",""/protocol[at0025]/items[at0027]/items[at0034,'Reported image']/items[at0038]/value/value"":""Position 58"",""/protocol[at0025]/items[at0027]/items[at0034,'Reported image']/items[at0039]/_type"":""ELEMENT"",""/protocol[at0025]/items[at0027]/items[at0034,'Reported image']/items[at0039]/value/_type"":""DV_DATE_TIME"",""/protocol[at0025]/items[at0027]/items[at0034,'Reported image']/items[at0039]/value/value"":""2021-12-03T16:05:19.514482+01:00"",""/protocol[at0025]/items[at0027]/items[at0034,'Reported image']/items[at0039]/value/magnitude"":63774140719,""/protocol[at0025]/items[at0027]/items[at0034,'Reported image']/items[at0040]/_type"":""ELEMENT"",""/protocol[at0025]/items[at0027]/items[at0034,'Reported image']/items[at0040]/value/_type"":""DV_MULTIMEDIA"",""/protocol[at0025]/items[at0027]/items[at0034,'Reported image']/items[at0040]/value/alternate_text"":""alternate text"",""/protocol[at0025]/items[at0027]/items[at0034,'Reported image']/items[at0040]/value/uri/_type"":""DV_URI"",""/protocol[at0025]/items[at0027]/items[at0034,'Reported image']/items[at0040]/value/uri/value"":""http://med.tube.com/sample"",""/protocol[at0025]/items[at0027]/items[at0034,'Reported image']/items[at0040]/value/media_type/_type"":""CODE_PHRASE"",""/protocol[at0025]/items[at0027]/items[at0034,'Reported image']/items[at0040]/value/media_type/terminology_id/_type"":""TERMINOLOGY_ID"",""/protocol[at0025]/items[at0027]/items[at0034,'Reported image']/items[at0040]/value/media_type/terminology_id/value"":""IANA_media-types"",""/protocol[at0025]/items[at0027]/items[at0034,'Reported image']/items[at0040]/value/media_type/code_string"":""image/png"",""/protocol[at0025]/items[at0027]/items[at0034,'Reported image']/items[at0040]/value/size"":504903212,""/protocol[at0025]/items[at0027]/items[at0034,'Reported image']/name/_type"":""DV_CODED_TEXT"",""/protocol[at0025]/items[at0027]/items[at0034,'Reported image']/name/value"":""Reported image"",""/protocol[at0025]/items[at0027]/items[at0034,'Reported image']/name/defining_code/_type"":""CODE_PHRASE"",""/protocol[at0025]/items[at0027]/items[at0034,'Reported image']/name/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/protocol[at0025]/items[at0027]/items[at0034,'Reported image']/name/defining_code/terminology_id/value"":""local"",""/protocol[at0025]/items[at0027]/items[at0034,'Reported image']/name/defining_code/code_string"":""at0053"",""/protocol[at0025]/items[at0027]/items[at0034,'Reported image']/archetype_node_id"":""at0034""}"
+77,openEHR-EHR-OBSERVATION.imaging_exam_result.v0,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/items[openEHR-EHR-OBSERVATION.imaging_exam_result.v0]",{},"{0,0}",2,"{""/protocol[at0025]/items[at0027]/items[at0034,'Comparison image']/_type"":""CLUSTER"",""/protocol[at0025]/items[at0027]/items[at0034,'Comparison image']/items[at0035]/_type"":""ELEMENT"",""/protocol[at0025]/items[at0027]/items[at0034,'Comparison image']/items[at0035]/value/_type"":""DV_IDENTIFIER"",""/protocol[at0025]/items[at0027]/items[at0034,'Comparison image']/items[at0035]/value/issuer"":""Issuer"",""/protocol[at0025]/items[at0027]/items[at0034,'Comparison image']/items[at0035]/value/assigner"":""Assigner"",""/protocol[at0025]/items[at0027]/items[at0034,'Comparison image']/items[at0035]/value/id"":""a6c20273-7b53-4c04-9b2c-2d4c218893b2"",""/protocol[at0025]/items[at0027]/items[at0034,'Comparison image']/items[at0035]/value/type"":""Prescription"",""/protocol[at0025]/items[at0027]/items[at0034,'Comparison image']/items[at0036]/_type"":""ELEMENT"",""/protocol[at0025]/items[at0027]/items[at0034,'Comparison image']/items[at0036]/value/_type"":""DV_IDENTIFIER"",""/protocol[at0025]/items[at0027]/items[at0034,'Comparison image']/items[at0036]/value/issuer"":""Issuer"",""/protocol[at0025]/items[at0027]/items[at0034,'Comparison image']/items[at0036]/value/assigner"":""Assigner"",""/protocol[at0025]/items[at0027]/items[at0034,'Comparison image']/items[at0036]/value/id"":""1ba8eff7-8f3f-4625-9432-05aa01726073"",""/protocol[at0025]/items[at0027]/items[at0034,'Comparison image']/items[at0036]/value/type"":""Prescription"",""/protocol[at0025]/items[at0027]/items[at0034,'Comparison image']/items[at0037]/_type"":""ELEMENT"",""/protocol[at0025]/items[at0027]/items[at0034,'Comparison image']/items[at0037]/value/_type"":""DV_TEXT"",""/protocol[at0025]/items[at0027]/items[at0034,'Comparison image']/items[at0037]/value/value"":""View 27"",""/protocol[at0025]/items[at0027]/items[at0034,'Comparison image']/items[at0038]/_type"":""ELEMENT"",""/protocol[at0025]/items[at0027]/items[at0034,'Comparison image']/items[at0038]/value/_type"":""DV_TEXT"",""/protocol[at0025]/items[at0027]/items[at0034,'Comparison image']/items[at0038]/value/value"":""Position 2"",""/protocol[at0025]/items[at0027]/items[at0034,'Comparison image']/items[at0039]/_type"":""ELEMENT"",""/protocol[at0025]/items[at0027]/items[at0034,'Comparison image']/items[at0039]/value/_type"":""DV_DATE_TIME"",""/protocol[at0025]/items[at0027]/items[at0034,'Comparison image']/items[at0039]/value/value"":""2021-12-03T16:05:19.514522+01:00"",""/protocol[at0025]/items[at0027]/items[at0034,'Comparison image']/items[at0039]/value/magnitude"":63774140719,""/protocol[at0025]/items[at0027]/items[at0034,'Comparison image']/items[at0040]/_type"":""ELEMENT"",""/protocol[at0025]/items[at0027]/items[at0034,'Comparison image']/items[at0040]/value/_type"":""DV_MULTIMEDIA"",""/protocol[at0025]/items[at0027]/items[at0034,'Comparison image']/items[at0040]/value/alternate_text"":""alternate text"",""/protocol[at0025]/items[at0027]/items[at0034,'Comparison image']/items[at0040]/value/uri/_type"":""DV_URI"",""/protocol[at0025]/items[at0027]/items[at0034,'Comparison image']/items[at0040]/value/uri/value"":""http://med.tube.com/sample"",""/protocol[at0025]/items[at0027]/items[at0034,'Comparison image']/items[at0040]/value/media_type/_type"":""CODE_PHRASE"",""/protocol[at0025]/items[at0027]/items[at0034,'Comparison image']/items[at0040]/value/media_type/terminology_id/_type"":""TERMINOLOGY_ID"",""/protocol[at0025]/items[at0027]/items[at0034,'Comparison image']/items[at0040]/value/media_type/terminology_id/value"":""IANA_media-types"",""/protocol[at0025]/items[at0027]/items[at0034,'Comparison image']/items[at0040]/value/media_type/code_string"":""image/png"",""/protocol[at0025]/items[at0027]/items[at0034,'Comparison image']/items[at0040]/value/size"":504903212,""/protocol[at0025]/items[at0027]/items[at0034,'Comparison image']/name/_type"":""DV_CODED_TEXT"",""/protocol[at0025]/items[at0027]/items[at0034,'Comparison image']/name/value"":""Comparison image"",""/protocol[at0025]/items[at0027]/items[at0034,'Comparison image']/name/defining_code/_type"":""CODE_PHRASE"",""/protocol[at0025]/items[at0027]/items[at0034,'Comparison image']/name/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/protocol[at0025]/items[at0027]/items[at0034,'Comparison image']/name/defining_code/terminology_id/value"":""local"",""/protocol[at0025]/items[at0027]/items[at0034,'Comparison image']/name/defining_code/code_string"":""at0054"",""/protocol[at0025]/items[at0027]/items[at0034,'Comparison image']/archetype_node_id"":""at0034""}"
+78,openEHR-EHR-OBSERVATION.imaging_exam_result.v0,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/items[openEHR-EHR-OBSERVATION.imaging_exam_result.v0]",{},{0},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""requester"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""face-to-face communication"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""216"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""199"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Dr. Marcus Johnson""}"
+79,openEHR-EHR-OBSERVATION.imaging_exam_result.v0,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/items[openEHR-EHR-OBSERVATION.imaging_exam_result.v0]",{},{1},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""performer"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""not specified"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""193"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""198"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Lara Markham""}"
+80,openEHR-EHR-OBSERVATION.body_weight.v2,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/items[openEHR-EHR-OBSERVATION.body_weight.v2]",{},{},0,"{""/_type"":""OBSERVATION"",""/data[at0002]/_type"":""HISTORY"",""/data[at0002]/archetype_node_id"":""at0002"",""/data[at0002]/origin/_type"":""DV_DATE_TIME"",""/data[at0002]/origin/value"":""2021-12-03T17:34:06.849379+01:00"",""/data[at0002]/origin/magnitude"":63774146046,""/data[at0002]/name/_type"":""DV_TEXT"",""/data[at0002]/name/value"":""history"",""/archetype_node_id"":""openEHR-EHR-OBSERVATION.body_weight.v2"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""en"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-OBSERVATION.body_weight.v2"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/name/_type"":""DV_TEXT"",""/name/value"":""Body weight"",""/subject/_type"":""PARTY_SELF""}"
+81,openEHR-EHR-OBSERVATION.body_weight.v2,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/items[openEHR-EHR-OBSERVATION.body_weight.v2]",{},{0},1,"{""/data[at0002]/events[at0003]/_type"":""POINT_EVENT"",""/data[at0002]/events[at0003]/data[at0001]/_type"":""ITEM_TREE"",""/data[at0002]/events[at0003]/data[at0001]/items[at0004]/_type"":""ELEMENT"",""/data[at0002]/events[at0003]/data[at0001]/items[at0004]/value/_type"":""DV_QUANTITY"",""/data[at0002]/events[at0003]/data[at0001]/items[at0004]/value/units"":""kg"",""/data[at0002]/events[at0003]/data[at0001]/items[at0004]/value/magnitude"":981.13,""/data[at0002]/events[at0003]/data[at0001]/archetype_node_id"":""at0001"",""/data[at0002]/events[at0003]/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0002]/events[at0003]/data[at0001]/name/value"":""Simple"",""/data[at0002]/events[at0003]/archetype_node_id"":""at0003"",""/data[at0002]/events[at0003]/name/_type"":""DV_TEXT"",""/data[at0002]/events[at0003]/name/value"":""Any event"",""/data[at0002]/events[at0003]/time/_type"":""DV_DATE_TIME"",""/data[at0002]/events[at0003]/time/value"":""2021-12-03T17:34:06.849379+01:00"",""/data[at0002]/events[at0003]/time/magnitude"":63774146046}"
+82,openEHR-EHR-OBSERVATION.body_weight.v2,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/items[openEHR-EHR-OBSERVATION.body_weight.v2]",{},{0},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""requester"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""face-to-face communication"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""216"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""199"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Dr. Marcus Johnson""}"
+83,openEHR-EHR-OBSERVATION.body_weight.v2,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/items[openEHR-EHR-OBSERVATION.body_weight.v2]",{},{1},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""performer"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""not specified"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""193"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""198"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Lara Markham""}"
+84,openEHR-EHR-OBSERVATION.height.v2,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/items[openEHR-EHR-OBSERVATION.height.v2]",{},{},0,"{""/_type"":""OBSERVATION"",""/data[at0001]/_type"":""HISTORY"",""/data[at0001]/archetype_node_id"":""at0001"",""/data[at0001]/origin/_type"":""DV_DATE_TIME"",""/data[at0001]/origin/value"":""2021-12-03T17:34:06.849379+01:00"",""/data[at0001]/origin/magnitude"":63774146046,""/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0001]/name/value"":""history"",""/archetype_node_id"":""openEHR-EHR-OBSERVATION.height.v2"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""en"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-OBSERVATION.height.v2"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/name/_type"":""DV_TEXT"",""/name/value"":""Height/Length"",""/subject/_type"":""PARTY_SELF""}"
+85,openEHR-EHR-OBSERVATION.height.v2,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/items[openEHR-EHR-OBSERVATION.height.v2]",{},{0},1,"{""/data[at0001]/events[at0002]/_type"":""POINT_EVENT"",""/data[at0001]/events[at0002]/data[at0003]/_type"":""ITEM_TREE"",""/data[at0001]/events[at0002]/data[at0003]/items[at0004]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0004]/value/_type"":""DV_QUANTITY"",""/data[at0001]/events[at0002]/data[at0003]/items[at0004]/value/units"":""cm"",""/data[at0001]/events[at0002]/data[at0003]/items[at0004]/value/magnitude"":317.11,""/data[at0001]/events[at0002]/data[at0003]/archetype_node_id"":""at0003"",""/data[at0001]/events[at0002]/data[at0003]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/name/value"":""Simple"",""/data[at0001]/events[at0002]/archetype_node_id"":""at0002"",""/data[at0001]/events[at0002]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/name/value"":""Any event"",""/data[at0001]/events[at0002]/time/_type"":""DV_DATE_TIME"",""/data[at0001]/events[at0002]/time/value"":""2021-12-03T17:34:06.849379+01:00"",""/data[at0001]/events[at0002]/time/magnitude"":63774146046}"
+86,openEHR-EHR-OBSERVATION.height.v2,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/items[openEHR-EHR-OBSERVATION.height.v2]",{},{0},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""requester"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""face-to-face communication"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""216"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""199"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Dr. Marcus Johnson""}"
+87,openEHR-EHR-OBSERVATION.height.v2,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/items[openEHR-EHR-OBSERVATION.height.v2]",{},{1},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""performer"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""not specified"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""193"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""198"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Lara Markham""}"
+88,openEHR-EHR-OBSERVATION.respiration.v2,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/items[openEHR-EHR-OBSERVATION.respiration.v2]",{},{},0,"{""/_type"":""OBSERVATION"",""/data[at0001]/_type"":""HISTORY"",""/data[at0001]/archetype_node_id"":""at0001"",""/data[at0001]/origin/_type"":""DV_DATE_TIME"",""/data[at0001]/origin/value"":""2021-12-03T17:34:06.849379+01:00"",""/data[at0001]/origin/magnitude"":63774146046,""/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0001]/name/value"":""history"",""/archetype_node_id"":""openEHR-EHR-OBSERVATION.respiration.v2"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""en"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-OBSERVATION.respiration.v2"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/name/_type"":""DV_TEXT"",""/name/value"":""Respiration"",""/subject/_type"":""PARTY_SELF""}"
+89,openEHR-EHR-OBSERVATION.respiration.v2,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/items[openEHR-EHR-OBSERVATION.respiration.v2]",{},{0},1,"{""/data[at0001]/events[at0002]/_type"":""POINT_EVENT"",""/data[at0001]/events[at0002]/data[at0003]/_type"":""ITEM_TREE"",""/data[at0001]/events[at0002]/data[at0003]/items[at0004]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0004]/value/_type"":""DV_QUANTITY"",""/data[at0001]/events[at0002]/data[at0003]/items[at0004]/value/precision"":0,""/data[at0001]/events[at0002]/data[at0003]/items[at0004]/value/units"":""/min"",""/data[at0001]/events[at0002]/data[at0003]/items[at0004]/value/magnitude"":147.0,""/data[at0001]/events[at0002]/data[at0003]/archetype_node_id"":""at0003"",""/data[at0001]/events[at0002]/data[at0003]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/name/value"":""List"",""/data[at0001]/events[at0002]/archetype_node_id"":""at0002"",""/data[at0001]/events[at0002]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/name/value"":""Any event"",""/data[at0001]/events[at0002]/time/_type"":""DV_DATE_TIME"",""/data[at0001]/events[at0002]/time/value"":""2021-12-03T17:34:06.849379+01:00"",""/data[at0001]/events[at0002]/time/magnitude"":63774146046}"
+90,openEHR-EHR-OBSERVATION.respiration.v2,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/items[openEHR-EHR-OBSERVATION.respiration.v2]",{},{0},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""requester"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""face-to-face communication"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""216"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""199"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Dr. Marcus Johnson""}"
+91,openEHR-EHR-OBSERVATION.respiration.v2,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/items[openEHR-EHR-OBSERVATION.respiration.v2]",{},{1},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""performer"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""not specified"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""193"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""198"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Lara Markham""}"
+92,openEHR-EHR-OBSERVATION.pulse.v2,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/items[openEHR-EHR-OBSERVATION.pulse.v2]",{},{},0,"{""/_type"":""OBSERVATION"",""/data[at0002]/_type"":""HISTORY"",""/data[at0002]/archetype_node_id"":""at0002"",""/data[at0002]/origin/_type"":""DV_DATE_TIME"",""/data[at0002]/origin/value"":""2021-12-03T17:34:06.849379+01:00"",""/data[at0002]/origin/magnitude"":63774146046,""/data[at0002]/name/_type"":""DV_TEXT"",""/data[at0002]/name/value"":""history"",""/archetype_node_id"":""openEHR-EHR-OBSERVATION.pulse.v2"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""en"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-OBSERVATION.pulse.v2"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/name/_type"":""DV_TEXT"",""/name/value"":""Pulse/Heart beat"",""/subject/_type"":""PARTY_SELF""}"
+93,openEHR-EHR-OBSERVATION.pulse.v2,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/items[openEHR-EHR-OBSERVATION.pulse.v2]",{},{0},1,"{""/data[at0002]/events[at0003]/_type"":""POINT_EVENT"",""/data[at0002]/events[at0003]/data[at0001]/_type"":""ITEM_TREE"",""/data[at0002]/events[at0003]/data[at0001]/items[at0004]/_type"":""ELEMENT"",""/data[at0002]/events[at0003]/data[at0001]/items[at0004]/value/_type"":""DV_QUANTITY"",""/data[at0002]/events[at0003]/data[at0001]/items[at0004]/value/precision"":0,""/data[at0002]/events[at0003]/data[at0001]/items[at0004]/value/units"":""/min"",""/data[at0002]/events[at0003]/data[at0001]/items[at0004]/value/magnitude"":940.0,""/data[at0002]/events[at0003]/data[at0001]/archetype_node_id"":""at0001"",""/data[at0002]/events[at0003]/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0002]/events[at0003]/data[at0001]/name/value"":""structure"",""/data[at0002]/events[at0003]/archetype_node_id"":""at0003"",""/data[at0002]/events[at0003]/name/_type"":""DV_TEXT"",""/data[at0002]/events[at0003]/name/value"":""Any event"",""/data[at0002]/events[at0003]/time/_type"":""DV_DATE_TIME"",""/data[at0002]/events[at0003]/time/value"":""2021-12-03T17:34:06.849379+01:00"",""/data[at0002]/events[at0003]/time/magnitude"":63774146046}"
+94,openEHR-EHR-OBSERVATION.pulse.v2,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/items[openEHR-EHR-OBSERVATION.pulse.v2]",{},{0},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""requester"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""face-to-face communication"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""216"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""199"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Dr. Marcus Johnson""}"
+95,openEHR-EHR-OBSERVATION.pulse.v2,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/items[openEHR-EHR-OBSERVATION.pulse.v2]",{},{1},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""performer"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""not specified"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""193"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""198"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Lara Markham""}"
+96,openEHR-EHR-OBSERVATION.body_temperature.v2,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/items[openEHR-EHR-OBSERVATION.body_temperature.v2]",{},{},0,"{""/_type"":""OBSERVATION"",""/data[at0002]/_type"":""HISTORY"",""/data[at0002]/archetype_node_id"":""at0002"",""/data[at0002]/origin/_type"":""DV_DATE_TIME"",""/data[at0002]/origin/value"":""2021-12-03T17:34:06.849379+01:00"",""/data[at0002]/origin/magnitude"":63774146046,""/data[at0002]/name/_type"":""DV_TEXT"",""/data[at0002]/name/value"":""History"",""/archetype_node_id"":""openEHR-EHR-OBSERVATION.body_temperature.v2"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""en"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-OBSERVATION.body_temperature.v2"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/name/_type"":""DV_TEXT"",""/name/value"":""Body temperature"",""/subject/_type"":""PARTY_SELF""}"
+97,openEHR-EHR-OBSERVATION.body_temperature.v2,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/items[openEHR-EHR-OBSERVATION.body_temperature.v2]",{},{0},1,"{""/data[at0002]/events[at0003]/_type"":""POINT_EVENT"",""/data[at0002]/events[at0003]/data[at0001]/_type"":""ITEM_TREE"",""/data[at0002]/events[at0003]/data[at0001]/items[at0004]/_type"":""ELEMENT"",""/data[at0002]/events[at0003]/data[at0001]/items[at0004]/value/_type"":""DV_QUANTITY"",""/data[at0002]/events[at0003]/data[at0001]/items[at0004]/value/precision"":1,""/data[at0002]/events[at0003]/data[at0001]/items[at0004]/value/units"":""Cel"",""/data[at0002]/events[at0003]/data[at0001]/items[at0004]/value/magnitude"":79.9,""/data[at0002]/events[at0003]/data[at0001]/archetype_node_id"":""at0001"",""/data[at0002]/events[at0003]/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0002]/events[at0003]/data[at0001]/name/value"":""Tree"",""/data[at0002]/events[at0003]/archetype_node_id"":""at0003"",""/data[at0002]/events[at0003]/name/_type"":""DV_TEXT"",""/data[at0002]/events[at0003]/name/value"":""Any event"",""/data[at0002]/events[at0003]/time/_type"":""DV_DATE_TIME"",""/data[at0002]/events[at0003]/time/value"":""2021-12-03T17:34:06.849379+01:00"",""/data[at0002]/events[at0003]/time/magnitude"":63774146046}"
+98,openEHR-EHR-OBSERVATION.body_temperature.v2,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/items[openEHR-EHR-OBSERVATION.body_temperature.v2]",{},{0},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""requester"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""face-to-face communication"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""216"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""199"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Dr. Marcus Johnson""}"
+99,openEHR-EHR-OBSERVATION.body_temperature.v2,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/items[openEHR-EHR-OBSERVATION.body_temperature.v2]",{},{1},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""performer"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""not specified"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""193"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""198"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Lara Markham""}"
+100,openEHR-EHR-OBSERVATION.head_circumference.v1,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/items[openEHR-EHR-OBSERVATION.head_circumference.v1]",{},{},0,"{""/_type"":""OBSERVATION"",""/data[at0001]/_type"":""HISTORY"",""/data[at0001]/archetype_node_id"":""at0001"",""/data[at0001]/origin/_type"":""DV_DATE_TIME"",""/data[at0001]/origin/value"":""2021-12-03T17:34:06.849379+01:00"",""/data[at0001]/origin/magnitude"":63774146046,""/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0001]/name/value"":""Event Series"",""/archetype_node_id"":""openEHR-EHR-OBSERVATION.head_circumference.v1"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""en"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-OBSERVATION.head_circumference.v1"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/name/_type"":""DV_TEXT"",""/name/value"":""Head circumference"",""/subject/_type"":""PARTY_SELF""}"
+101,openEHR-EHR-OBSERVATION.head_circumference.v1,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/items[openEHR-EHR-OBSERVATION.head_circumference.v1]",{},{0},1,"{""/data[at0001]/events[at0010]/_type"":""POINT_EVENT"",""/data[at0001]/events[at0010]/data[at0003]/_type"":""ITEM_TREE"",""/data[at0001]/events[at0010]/data[at0003]/items[at0004]/_type"":""ELEMENT"",""/data[at0001]/events[at0010]/data[at0003]/items[at0004]/value/_type"":""DV_QUANTITY"",""/data[at0001]/events[at0010]/data[at0003]/items[at0004]/value/units"":""cm"",""/data[at0001]/events[at0010]/data[at0003]/items[at0004]/value/magnitude"":57.81,""/data[at0001]/events[at0010]/data[at0003]/archetype_node_id"":""at0003"",""/data[at0001]/events[at0010]/data[at0003]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0010]/data[at0003]/name/value"":""Tree"",""/data[at0001]/events[at0010]/archetype_node_id"":""at0010"",""/data[at0001]/events[at0010]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0010]/name/value"":""Any event"",""/data[at0001]/events[at0010]/time/_type"":""DV_DATE_TIME"",""/data[at0001]/events[at0010]/time/value"":""2021-12-03T17:34:06.849379+01:00"",""/data[at0001]/events[at0010]/time/magnitude"":63774146046}"
+102,openEHR-EHR-OBSERVATION.head_circumference.v1,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/items[openEHR-EHR-OBSERVATION.head_circumference.v1]",{},{0},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""requester"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""face-to-face communication"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""216"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""199"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Dr. Marcus Johnson""}"
+103,openEHR-EHR-OBSERVATION.head_circumference.v1,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/items[openEHR-EHR-OBSERVATION.head_circumference.v1]",{},{1},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""performer"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""not specified"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""193"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""198"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Lara Markham""}"
+104,openEHR-EHR-OBSERVATION.pulse_oximetry.v1,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/items[openEHR-EHR-OBSERVATION.pulse_oximetry.v1]",{},{},0,"{""/_type"":""OBSERVATION"",""/data[at0001]/_type"":""HISTORY"",""/data[at0001]/archetype_node_id"":""at0001"",""/data[at0001]/origin/_type"":""DV_DATE_TIME"",""/data[at0001]/origin/value"":""2021-12-03T17:34:06.849379+01:00"",""/data[at0001]/origin/magnitude"":63774146046,""/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0001]/name/value"":""Event Series"",""/archetype_node_id"":""openEHR-EHR-OBSERVATION.pulse_oximetry.v1"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""en"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-OBSERVATION.pulse_oximetry.v1"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/name/_type"":""DV_TEXT"",""/name/value"":""Pulse oximetry"",""/subject/_type"":""PARTY_SELF""}"
+105,openEHR-EHR-OBSERVATION.pulse_oximetry.v1,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/items[openEHR-EHR-OBSERVATION.pulse_oximetry.v1]",{},{0},1,"{""/data[at0001]/events[at0002]/_type"":""POINT_EVENT"",""/data[at0001]/events[at0002]/data[at0003]/_type"":""ITEM_TREE"",""/data[at0001]/events[at0002]/data[at0003]/items[at0006]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0006]/value/_type"":""DV_PROPORTION"",""/data[at0001]/events[at0002]/data[at0003]/items[at0006]/value/numerator"":89.21,""/data[at0001]/events[at0002]/data[at0003]/items[at0006]/value/denominator"":100.0,""/data[at0001]/events[at0002]/data[at0003]/items[at0006]/value/type"":2,""/data[at0001]/events[at0002]/data[at0003]/archetype_node_id"":""at0003"",""/data[at0001]/events[at0002]/data[at0003]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/name/value"":""Tree"",""/data[at0001]/events[at0002]/archetype_node_id"":""at0002"",""/data[at0001]/events[at0002]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/name/value"":""Any event"",""/data[at0001]/events[at0002]/time/_type"":""DV_DATE_TIME"",""/data[at0001]/events[at0002]/time/value"":""2021-12-03T17:34:06.849379+01:00"",""/data[at0001]/events[at0002]/time/magnitude"":63774146046}"
+106,openEHR-EHR-OBSERVATION.pulse_oximetry.v1,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/items[openEHR-EHR-OBSERVATION.pulse_oximetry.v1]",{},{0},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""requester"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""face-to-face communication"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""216"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""199"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Dr. Marcus Johnson""}"
+107,openEHR-EHR-OBSERVATION.pulse_oximetry.v1,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/items[openEHR-EHR-OBSERVATION.pulse_oximetry.v1]",{},{1},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""performer"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""not specified"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""193"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""198"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Lara Markham""}"
+108,openEHR-EHR-OBSERVATION.body_mass_index.v2,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/items[openEHR-EHR-OBSERVATION.body_mass_index.v2]",{},{},0,"{""/_type"":""OBSERVATION"",""/data[at0001]/_type"":""HISTORY"",""/data[at0001]/archetype_node_id"":""at0001"",""/data[at0001]/origin/_type"":""DV_DATE_TIME"",""/data[at0001]/origin/value"":""2021-12-03T17:34:06.849379+01:00"",""/data[at0001]/origin/magnitude"":63774146046,""/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0001]/name/value"":""history"",""/archetype_node_id"":""openEHR-EHR-OBSERVATION.body_mass_index.v2"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""en"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-OBSERVATION.body_mass_index.v2"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/name/_type"":""DV_TEXT"",""/name/value"":""Body mass index"",""/subject/_type"":""PARTY_SELF""}"
+109,openEHR-EHR-OBSERVATION.body_mass_index.v2,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/items[openEHR-EHR-OBSERVATION.body_mass_index.v2]",{},{0},1,"{""/data[at0001]/events[at0002]/_type"":""POINT_EVENT"",""/data[at0001]/events[at0002]/data[at0003]/_type"":""ITEM_TREE"",""/data[at0001]/events[at0002]/data[at0003]/items[at0004]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0004]/value/_type"":""DV_QUANTITY"",""/data[at0001]/events[at0002]/data[at0003]/items[at0004]/value/precision"":1,""/data[at0001]/events[at0002]/data[at0003]/items[at0004]/value/units"":""kg/m2"",""/data[at0001]/events[at0002]/data[at0003]/items[at0004]/value/magnitude"":864.9,""/data[at0001]/events[at0002]/data[at0003]/archetype_node_id"":""at0003"",""/data[at0001]/events[at0002]/data[at0003]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/name/value"":""Single"",""/data[at0001]/events[at0002]/archetype_node_id"":""at0002"",""/data[at0001]/events[at0002]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/name/value"":""Any event"",""/data[at0001]/events[at0002]/time/_type"":""DV_DATE_TIME"",""/data[at0001]/events[at0002]/time/value"":""2021-12-03T17:34:06.849379+01:00"",""/data[at0001]/events[at0002]/time/magnitude"":63774146046}"
+110,openEHR-EHR-OBSERVATION.body_mass_index.v2,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/items[openEHR-EHR-OBSERVATION.body_mass_index.v2]",{},{0},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""requester"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""face-to-face communication"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""216"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""199"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Dr. Marcus Johnson""}"
+111,openEHR-EHR-OBSERVATION.body_mass_index.v2,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/items[openEHR-EHR-OBSERVATION.body_mass_index.v2]",{},{1},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""performer"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""not specified"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""193"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""198"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Lara Markham""}"
+112,openEHR-EHR-OBSERVATION.blood_pressure.v2,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/items[openEHR-EHR-OBSERVATION.blood_pressure.v2]",{},{},0,"{""/_type"":""OBSERVATION"",""/data[at0001]/_type"":""HISTORY"",""/data[at0001]/archetype_node_id"":""at0001"",""/data[at0001]/origin/_type"":""DV_DATE_TIME"",""/data[at0001]/origin/value"":""2021-12-03T17:34:06.849379+01:00"",""/data[at0001]/origin/magnitude"":63774146046,""/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0001]/name/value"":""History"",""/archetype_node_id"":""openEHR-EHR-OBSERVATION.blood_pressure.v2"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""en"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-OBSERVATION.blood_pressure.v2"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/name/_type"":""DV_TEXT"",""/name/value"":""Blood pressure"",""/subject/_type"":""PARTY_SELF""}"
+113,openEHR-EHR-OBSERVATION.blood_pressure.v2,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/items[openEHR-EHR-OBSERVATION.blood_pressure.v2]",{},{0},1,"{""/data[at0001]/events[at0006]/_type"":""POINT_EVENT"",""/data[at0001]/events[at0006]/data[at0003]/_type"":""ITEM_TREE"",""/data[at0001]/events[at0006]/data[at0003]/items[at0004]/_type"":""ELEMENT"",""/data[at0001]/events[at0006]/data[at0003]/items[at0004]/value/_type"":""DV_QUANTITY"",""/data[at0001]/events[at0006]/data[at0003]/items[at0004]/value/precision"":0,""/data[at0001]/events[at0006]/data[at0003]/items[at0004]/value/units"":""mm[Hg]"",""/data[at0001]/events[at0006]/data[at0003]/items[at0004]/value/magnitude"":266.0,""/data[at0001]/events[at0006]/data[at0003]/items[at0005]/_type"":""ELEMENT"",""/data[at0001]/events[at0006]/data[at0003]/items[at0005]/value/_type"":""DV_QUANTITY"",""/data[at0001]/events[at0006]/data[at0003]/items[at0005]/value/precision"":0,""/data[at0001]/events[at0006]/data[at0003]/items[at0005]/value/units"":""mm[Hg]"",""/data[at0001]/events[at0006]/data[at0003]/items[at0005]/value/magnitude"":756.0,""/data[at0001]/events[at0006]/data[at0003]/archetype_node_id"":""at0003"",""/data[at0001]/events[at0006]/data[at0003]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0006]/data[at0003]/name/value"":""blood pressure"",""/data[at0001]/events[at0006]/archetype_node_id"":""at0006"",""/data[at0001]/events[at0006]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0006]/name/value"":""Any event"",""/data[at0001]/events[at0006]/time/_type"":""DV_DATE_TIME"",""/data[at0001]/events[at0006]/time/value"":""2021-12-03T17:34:06.849379+01:00"",""/data[at0001]/events[at0006]/time/magnitude"":63774146046}"
+114,openEHR-EHR-OBSERVATION.blood_pressure.v2,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/items[openEHR-EHR-OBSERVATION.blood_pressure.v2]",{},{0},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""requester"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""face-to-face communication"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""216"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""199"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Dr. Marcus Johnson""}"
+115,openEHR-EHR-OBSERVATION.blood_pressure.v2,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/items[openEHR-EHR-OBSERVATION.blood_pressure.v2]",{},{1},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""performer"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""not specified"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""193"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""198"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Lara Markham""}"
+116,openEHR-EHR-EVALUATION.problem_diagnosis.v1,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Past History of Illnesses']/items[openEHR-EHR-EVALUATION.problem_diagnosis.v1]",{},{},0,"{""/_type"":""EVALUATION"",""/data[at0001]/_type"":""ITEM_TREE"",""/data[at0001]/items[at0002]/_type"":""ELEMENT"",""/data[at0001]/items[at0002]/value/_type"":""DV_TEXT"",""/data[at0001]/items[at0002]/value/value"":""Problem/Diagnosis name 37"",""/data[at0001]/items[at0077]/_type"":""ELEMENT"",""/data[at0001]/items[at0077]/value/_type"":""DV_DATE_TIME"",""/data[at0001]/items[at0077]/value/value"":""2021-12-03T16:05:19.514663+01:00"",""/data[at0001]/items[at0077]/value/magnitude"":63774140719,""/data[at0001]/items[at0005]/_type"":""ELEMENT"",""/data[at0001]/items[at0005]/value/_type"":""DV_CODED_TEXT"",""/data[at0001]/items[at0005]/value/value"":""Mild"",""/data[at0001]/items[at0005]/value/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/items[at0005]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/items[at0005]/value/defining_code/terminology_id/value"":""local"",""/data[at0001]/items[at0005]/value/defining_code/code_string"":""at0047"",""/data[at0001]/items[at0030,'Date of abatement']/_type"":""ELEMENT"",""/data[at0001]/items[at0030,'Date of abatement']/value/_type"":""DV_DATE_TIME"",""/data[at0001]/items[at0030,'Date of abatement']/value/value"":""2021-12-03T16:05:19.51469+01:00"",""/data[at0001]/items[at0030,'Date of abatement']/value/magnitude"":63774140719,""/data[at0001]/items[at0030,'Date of abatement']/name/_type"":""DV_TEXT"",""/data[at0001]/items[at0030,'Date of abatement']/name/value"":""Date of abatement"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/_type"":""CLUSTER"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0003]/_type"":""ELEMENT"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0003]/value/_type"":""DV_CODED_TEXT"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0003]/value/value"":""Active"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0003]/value/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0003]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0003]/value/defining_code/terminology_id/value"":""local"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0003]/value/defining_code/code_string"":""at0026"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0083]/_type"":""ELEMENT"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0083]/value/_type"":""DV_CODED_TEXT"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0083]/value/value"":""Resolved"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0083]/value/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0083]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0083]/value/defining_code/terminology_id/value"":""local"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0083]/value/defining_code/code_string"":""at0084"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0089]/_type"":""ELEMENT"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0089]/value/_type"":""DV_CODED_TEXT"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0089]/value/value"":""In remission"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0089]/value/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0089]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0089]/value/defining_code/terminology_id/value"":""local"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0089]/value/defining_code/code_string"":""at0090"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0071]/_type"":""ELEMENT"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0071]/value/_type"":""DV_CODED_TEXT"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0071]/value/value"":""Recurrence"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0071]/value/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0071]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0071]/value/defining_code/terminology_id/value"":""local"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0071]/value/defining_code/code_string"":""at0096"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/archetype_details/archetype_id/value"":""openEHR-EHR-CLUSTER.problem_qualifier.v1"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/archetype_details/rm_version"":""1.0.4"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/archetype_details/_type"":""ARCHETYPED"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/archetype_node_id"":""openEHR-EHR-CLUSTER.problem_qualifier.v1"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/name/_type"":""DV_TEXT"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/name/value"":""Problem/Diagnosis qualifier"",""/data[at0001]/items[at0073]/_type"":""ELEMENT"",""/data[at0001]/items[at0073]/value/_type"":""DV_CODED_TEXT"",""/data[at0001]/items[at0073]/value/value"":""Suspected"",""/data[at0001]/items[at0073]/value/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/items[at0073]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/items[at0073]/value/defining_code/terminology_id/value"":""local"",""/data[at0001]/items[at0073]/value/defining_code/code_string"":""at0074"",""/data[at0001]/archetype_node_id"":""at0001"",""/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0001]/name/value"":""structure"",""/protocol[at0032]/_type"":""ITEM_TREE"",""/protocol[at0032]/items[at0070]/_type"":""ELEMENT"",""/protocol[at0032]/items[at0070]/value/_type"":""DV_DATE_TIME"",""/protocol[at0032]/items[at0070]/value/value"":""2021-12-03T16:05:19.514719+01:00"",""/protocol[at0032]/items[at0070]/value/magnitude"":63774140719,""/protocol[at0032]/archetype_node_id"":""at0032"",""/protocol[at0032]/name/_type"":""DV_TEXT"",""/protocol[at0032]/name/value"":""Tree"",""/archetype_node_id"":""openEHR-EHR-EVALUATION.problem_diagnosis.v1"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""en"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-EVALUATION.problem_diagnosis.v1"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/name/_type"":""DV_TEXT"",""/name/value"":""Problem/Diagnosis"",""/subject/_type"":""PARTY_SELF""}"
+117,openEHR-EHR-EVALUATION.problem_diagnosis.v1,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Past History of Illnesses']/items[openEHR-EHR-EVALUATION.problem_diagnosis.v1]",{},{0},1,"{""/data[at0001]/items[at0012]/_type"":""ELEMENT"",""/data[at0001]/items[at0012]/value/_type"":""DV_TEXT"",""/data[at0001]/items[at0012]/value/value"":""Body site 67""}"
+118,openEHR-EHR-EVALUATION.problem_diagnosis.v1,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Past History of Illnesses']/items[openEHR-EHR-EVALUATION.problem_diagnosis.v1]",{},{0},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""requester"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""face-to-face communication"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""216"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""199"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Dr. Marcus Johnson""}"
+119,openEHR-EHR-EVALUATION.problem_diagnosis.v1,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Past History of Illnesses']/items[openEHR-EHR-EVALUATION.problem_diagnosis.v1]",{},{1},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""performer"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""not specified"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""193"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""198"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Lara Markham""}"
+120,openEHR-EHR-EVALUATION.pregnancy_summary.v0,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Pregnancy']/items[openEHR-EHR-EVALUATION.pregnancy_summary.v0]",{},{},0,"{""/_type"":""EVALUATION"",""/data[at0001]/_type"":""ITEM_TREE"",""/data[at0001]/items[at0141]/_type"":""ELEMENT"",""/data[at0001]/items[at0141]/value/_type"":""DV_CODED_TEXT"",""/data[at0001]/items[at0141]/value/value"":""Currently pregnant"",""/data[at0001]/items[at0141]/value/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/items[at0141]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/items[at0141]/value/defining_code/terminology_id/value"":""local"",""/data[at0001]/items[at0141]/value/defining_code/code_string"":""at0142"",""/data[at0001]/items[at0145]/_type"":""CLUSTER"",""/data[at0001]/items[at0145]/items[at0094]/_type"":""ELEMENT"",""/data[at0001]/items[at0145]/items[at0094]/value/_type"":""DV_TEXT"",""/data[at0001]/items[at0145]/items[at0094]/value/value"":""Pregnancy outcome 79"",""/data[at0001]/items[at0145]/archetype_node_id"":""at0145"",""/data[at0001]/items[at0145]/name/_type"":""DV_TEXT"",""/data[at0001]/items[at0145]/name/value"":""Per pregnancy"",""/data[at0001]/archetype_node_id"":""at0001"",""/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0001]/name/value"":""Tree"",""/archetype_node_id"":""openEHR-EHR-EVALUATION.pregnancy_summary.v0"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""en"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-EVALUATION.pregnancy_summary.v0"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/name/_type"":""DV_TEXT"",""/name/value"":""Pregnancy summary"",""/subject/_type"":""PARTY_SELF""}"
+121,openEHR-EHR-EVALUATION.pregnancy_summary.v0,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Pregnancy']/items[openEHR-EHR-EVALUATION.pregnancy_summary.v0]",{},{0},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""requester"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""face-to-face communication"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""216"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""199"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Dr. Marcus Johnson""}"
+122,openEHR-EHR-EVALUATION.pregnancy_summary.v0,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Pregnancy']/items[openEHR-EHR-EVALUATION.pregnancy_summary.v0]",{},{1},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""performer"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""not specified"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""193"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""198"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Lara Markham""}"
+123,openEHR-EHR-EVALUATION.estimated_date_delivery.v0,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Pregnancy']/items[openEHR-EHR-EVALUATION.estimated_date_delivery.v0]",{},{},0,"{""/_type"":""EVALUATION"",""/data[at0002]/_type"":""ITEM_TREE"",""/data[at0002]/items[at0003]/_type"":""ELEMENT"",""/data[at0002]/items[at0003]/value/_type"":""DV_DATE_TIME"",""/data[at0002]/items[at0003]/value/value"":""2021-12-03T16:05:19.514747+01:00"",""/data[at0002]/items[at0003]/value/magnitude"":63774140719,""/data[at0002]/items[at0004]/_type"":""ELEMENT"",""/data[at0002]/items[at0004]/value/_type"":""DV_DATE_TIME"",""/data[at0002]/items[at0004]/value/value"":""2021-12-03T16:05:19.514768+01:00"",""/data[at0002]/items[at0004]/value/magnitude"":63774140719,""/data[at0002]/items[at0006]/_type"":""CLUSTER"",""/data[at0002]/items[at0006]/items[at0008]/_type"":""ELEMENT"",""/data[at0002]/items[at0006]/items[at0008]/value/_type"":""DV_DATE_TIME"",""/data[at0002]/items[at0006]/items[at0008]/value/value"":""2021-12-03T16:05:19.514787+01:00"",""/data[at0002]/items[at0006]/items[at0008]/value/magnitude"":63774140719,""/data[at0002]/items[at0006]/archetype_node_id"":""at0006"",""/data[at0002]/items[at0006]/name/_type"":""DV_TEXT"",""/data[at0002]/items[at0006]/name/value"":""By ultrasound"",""/data[at0002]/archetype_node_id"":""at0002"",""/data[at0002]/name/_type"":""DV_TEXT"",""/data[at0002]/name/value"":""Item tree"",""/protocol[at0001]/_type"":""ITEM_TREE"",""/protocol[at0001]/items[at0013]/_type"":""ELEMENT"",""/protocol[at0001]/items[at0013]/value/_type"":""DV_DATE_TIME"",""/protocol[at0001]/items[at0013]/value/value"":""2021-12-03T16:05:19.514827+01:00"",""/protocol[at0001]/items[at0013]/value/magnitude"":63774140719,""/protocol[at0001]/archetype_node_id"":""at0001"",""/protocol[at0001]/name/_type"":""DV_TEXT"",""/protocol[at0001]/name/value"":""Item tree"",""/archetype_node_id"":""openEHR-EHR-EVALUATION.estimated_date_delivery.v0"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""en"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-EVALUATION.estimated_date_delivery.v0"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/name/_type"":""DV_TEXT"",""/name/value"":""Estimated date of delivery"",""/subject/_type"":""PARTY_SELF""}"
+124,openEHR-EHR-EVALUATION.estimated_date_delivery.v0,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Pregnancy']/items[openEHR-EHR-EVALUATION.estimated_date_delivery.v0]",{},{0},1,"{""/data[at0002]/items[at0009]/_type"":""CLUSTER"",""/data[at0002]/items[at0009]/items[at0010]/_type"":""ELEMENT"",""/data[at0002]/items[at0009]/items[at0010]/value/_type"":""DV_DATE_TIME"",""/data[at0002]/items[at0009]/items[at0010]/value/value"":""2021-12-03T16:05:19.514807+01:00"",""/data[at0002]/items[at0009]/items[at0010]/value/magnitude"":63774140719,""/data[at0002]/items[at0009]/archetype_node_id"":""at0009"",""/data[at0002]/items[at0009]/name/_type"":""DV_TEXT"",""/data[at0002]/items[at0009]/name/value"":""Agreed EDD""}"
+125,openEHR-EHR-EVALUATION.estimated_date_delivery.v0,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Pregnancy']/items[openEHR-EHR-EVALUATION.estimated_date_delivery.v0]",{},{0},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""requester"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""face-to-face communication"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""216"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""199"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Dr. Marcus Johnson""}"
+126,openEHR-EHR-EVALUATION.estimated_date_delivery.v0,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Pregnancy']/items[openEHR-EHR-EVALUATION.estimated_date_delivery.v0]",{},{1},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""performer"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""not specified"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""193"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""198"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Lara Markham""}"
+127,openEHR-EHR-OBSERVATION.exclusion_pregnancy.v0,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Pregnancy']/items[openEHR-EHR-OBSERVATION.exclusion_pregnancy.v0]",{},{},0,"{""/_type"":""OBSERVATION"",""/data[at0001]/_type"":""HISTORY"",""/data[at0001]/archetype_node_id"":""at0001"",""/data[at0001]/origin/_type"":""DV_DATE_TIME"",""/data[at0001]/origin/value"":""2021-12-03T17:34:06.849379+01:00"",""/data[at0001]/origin/magnitude"":63774146046,""/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0001]/name/value"":""History"",""/archetype_node_id"":""openEHR-EHR-OBSERVATION.exclusion_pregnancy.v0"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""en"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-OBSERVATION.exclusion_pregnancy.v0"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/name/_type"":""DV_TEXT"",""/name/value"":""Exclusion of pregnancy"",""/subject/_type"":""PARTY_SELF""}"
+128,openEHR-EHR-OBSERVATION.exclusion_pregnancy.v0,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Pregnancy']/items[openEHR-EHR-OBSERVATION.exclusion_pregnancy.v0]",{},{0},1,"{""/data[at0001]/events[at0002]/_type"":""POINT_EVENT"",""/data[at0001]/events[at0002]/data[at0003]/_type"":""ITEM_TREE"",""/data[at0001]/events[at0002]/data[at0003]/items[at0006]/_type"":""ELEMENT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0006]/value/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/items[at0006]/value/value"":""Not pregnant"",""/data[at0001]/events[at0002]/data[at0003]/archetype_node_id"":""at0003"",""/data[at0001]/events[at0002]/data[at0003]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/data[at0003]/name/value"":""Tree"",""/data[at0001]/events[at0002]/archetype_node_id"":""at0002"",""/data[at0001]/events[at0002]/name/_type"":""DV_TEXT"",""/data[at0001]/events[at0002]/name/value"":""Any event"",""/data[at0001]/events[at0002]/time/_type"":""DV_DATE_TIME"",""/data[at0001]/events[at0002]/time/value"":""2021-12-03T17:34:06.849379+01:00"",""/data[at0001]/events[at0002]/time/magnitude"":63774146046}"
+129,openEHR-EHR-OBSERVATION.exclusion_pregnancy.v0,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Pregnancy']/items[openEHR-EHR-OBSERVATION.exclusion_pregnancy.v0]",{},{0},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""requester"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""face-to-face communication"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""216"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""199"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Dr. Marcus Johnson""}"
+130,openEHR-EHR-OBSERVATION.exclusion_pregnancy.v0,OBSERVATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Pregnancy']/items[openEHR-EHR-OBSERVATION.exclusion_pregnancy.v0]",{},{1},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""performer"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""not specified"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""193"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""198"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Lara Markham""}"
+131,openEHR-EHR-EVALUATION.tobacco_smoking_summary.v1,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Social History']/items[openEHR-EHR-EVALUATION.tobacco_smoking_summary.v1]",{},{},0,"{""/_type"":""EVALUATION"",""/data[at0001]/_type"":""ITEM_TREE"",""/data[at0001]/items[at0089]/_type"":""ELEMENT"",""/data[at0001]/items[at0089]/value/_type"":""DV_CODED_TEXT"",""/data[at0001]/items[at0089]/value/value"":""Never smoked"",""/data[at0001]/items[at0089]/value/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/items[at0089]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/items[at0089]/value/defining_code/terminology_id/value"":""local"",""/data[at0001]/items[at0089]/value/defining_code/code_string"":""at0006"",""/data[at0001]/archetype_node_id"":""at0001"",""/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0001]/name/value"":""Tree"",""/archetype_node_id"":""openEHR-EHR-EVALUATION.tobacco_smoking_summary.v1"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""en"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-EVALUATION.tobacco_smoking_summary.v1"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/name/_type"":""DV_TEXT"",""/name/value"":""Tobacco smoking summary"",""/subject/_type"":""PARTY_SELF""}"
+132,openEHR-EHR-EVALUATION.tobacco_smoking_summary.v1,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Social History']/items[openEHR-EHR-EVALUATION.tobacco_smoking_summary.v1]",{},{0},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""requester"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""face-to-face communication"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""216"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""199"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Dr. Marcus Johnson""}"
+133,openEHR-EHR-EVALUATION.tobacco_smoking_summary.v1,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Social History']/items[openEHR-EHR-EVALUATION.tobacco_smoking_summary.v1]",{},{1},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""performer"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""not specified"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""193"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""198"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Lara Markham""}"
+134,openEHR-EHR-EVALUATION.alcohol_consumption_summary.v1,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Social History']/items[openEHR-EHR-EVALUATION.alcohol_consumption_summary.v1]",{},{},0,"{""/_type"":""EVALUATION"",""/data[at0001]/_type"":""ITEM_TREE"",""/data[at0001]/items[at0089]/_type"":""ELEMENT"",""/data[at0001]/items[at0089]/value/_type"":""DV_CODED_TEXT"",""/data[at0001]/items[at0089]/value/value"":""Lifetime non-drinker"",""/data[at0001]/items[at0089]/value/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/items[at0089]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/items[at0089]/value/defining_code/terminology_id/value"":""local"",""/data[at0001]/items[at0089]/value/defining_code/code_string"":""at0006"",""/data[at0001]/archetype_node_id"":""at0001"",""/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0001]/name/value"":""Tree"",""/archetype_node_id"":""openEHR-EHR-EVALUATION.alcohol_consumption_summary.v1"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""en"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-EVALUATION.alcohol_consumption_summary.v1"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/name/_type"":""DV_TEXT"",""/name/value"":""Alcohol consumption summary"",""/subject/_type"":""PARTY_SELF""}"
+135,openEHR-EHR-EVALUATION.alcohol_consumption_summary.v1,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Social History']/items[openEHR-EHR-EVALUATION.alcohol_consumption_summary.v1]",{},{0},1,"{""/data[at0001]/items[at0064]/_type"":""CLUSTER"",""/data[at0001]/items[at0064]/items[at0023]/_type"":""ELEMENT"",""/data[at0001]/items[at0064]/items[at0023]/value/_type"":""DV_QUANTITY"",""/data[at0001]/items[at0064]/items[at0023]/value/precision"":1,""/data[at0001]/items[at0064]/items[at0023]/value/units"":""1/d"",""/data[at0001]/items[at0064]/items[at0023]/value/magnitude"":86.5,""/data[at0001]/items[at0064]/archetype_node_id"":""at0064"",""/data[at0001]/items[at0064]/name/_type"":""DV_TEXT"",""/data[at0001]/items[at0064]/name/value"":""Per episode""}"
+136,openEHR-EHR-EVALUATION.alcohol_consumption_summary.v1,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Social History']/items[openEHR-EHR-EVALUATION.alcohol_consumption_summary.v1]",{},{0},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""requester"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""face-to-face communication"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""216"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""199"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Dr. Marcus Johnson""}"
+137,openEHR-EHR-EVALUATION.alcohol_consumption_summary.v1,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Social History']/items[openEHR-EHR-EVALUATION.alcohol_consumption_summary.v1]",{},{1},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""performer"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""not specified"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""193"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""198"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Lara Markham""}"
+138,openEHR-EHR-ACTION.care_plan.v0,ACTION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Plan of Care']/items[openEHR-EHR-ACTION.care_plan.v0]",{},{},0,"{""/_type"":""ACTION"",""/description[at0019]/_type"":""ITEM_TREE"",""/description[at0019]/items[at0002]/_type"":""ELEMENT"",""/description[at0019]/items[at0002]/value/_type"":""DV_TEXT"",""/description[at0019]/items[at0002]/value/value"":""Care Plan Name 53"",""/description[at0019]/items[at0021]/_type"":""ELEMENT"",""/description[at0019]/items[at0021]/value/_type"":""DV_TEXT"",""/description[at0019]/items[at0021]/value/value"":""Description 15"",""/description[at0019]/items[at0025]/_type"":""ELEMENT"",""/description[at0019]/items[at0025]/value/_type"":""DV_TEXT"",""/description[at0019]/items[at0025]/value/value"":""Reason 5"",""/description[at0019]/archetype_node_id"":""at0019"",""/description[at0019]/name/_type"":""DV_TEXT"",""/description[at0019]/name/value"":""Tree"",""/protocol[at0015]/_type"":""ITEM_TREE"",""/protocol[at0015]/items[at0016]/_type"":""ELEMENT"",""/protocol[at0015]/items[at0016]/value/_type"":""DV_IDENTIFIER"",""/protocol[at0015]/items[at0016]/value/issuer"":""Issuer"",""/protocol[at0015]/items[at0016]/value/assigner"":""Assigner"",""/protocol[at0015]/items[at0016]/value/id"":""0942fb74-27f8-48c6-869e-10192740c371"",""/protocol[at0015]/items[at0016]/value/type"":""Prescription"",""/protocol[at0015]/items[at0017]/_type"":""ELEMENT"",""/protocol[at0015]/items[at0017]/value/_type"":""DV_DATE_TIME"",""/protocol[at0015]/items[at0017]/value/value"":""2021-12-03T16:05:19.514877+01:00"",""/protocol[at0015]/items[at0017]/value/magnitude"":63774140719,""/protocol[at0015]/archetype_node_id"":""at0015"",""/protocol[at0015]/name/_type"":""DV_TEXT"",""/protocol[at0015]/name/value"":""Tree"",""/archetype_node_id"":""openEHR-EHR-ACTION.care_plan.v0"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""en"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-ACTION.care_plan.v0"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/name/_type"":""DV_TEXT"",""/name/value"":""Care Plan"",""/time/_type"":""DV_DATE_TIME"",""/time/value"":""2021-12-03T16:05:19.514899+01:00"",""/time/magnitude"":63774140719,""/ism_transition/_type"":""ISM_TRANSITION"",""/ism_transition/current_state/_type"":""DV_CODED_TEXT"",""/ism_transition/current_state/value"":""suspended"",""/ism_transition/current_state/defining_code/_type"":""CODE_PHRASE"",""/ism_transition/current_state/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/ism_transition/current_state/defining_code/terminology_id/value"":""openehr"",""/ism_transition/current_state/defining_code/code_string"":""530"",""/subject/_type"":""PARTY_SELF""}"
+139,openEHR-EHR-ACTION.care_plan.v0,ACTION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Plan of Care']/items[openEHR-EHR-ACTION.care_plan.v0]",{},{0},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""requester"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""face-to-face communication"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""216"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""199"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Dr. Marcus Johnson""}"
+140,openEHR-EHR-ACTION.care_plan.v0,ACTION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Plan of Care']/items[openEHR-EHR-ACTION.care_plan.v0]",{},{1},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""performer"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""not specified"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""193"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""198"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Lara Markham""}"
+141,openEHR-EHR-INSTRUCTION.service_request.v1,INSTRUCTION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Plan of Care']/items[openEHR-EHR-INSTRUCTION.service_request.v1]",{},{},0,"{""/_type"":""INSTRUCTION"",""/protocol[at0008]/_type"":""ITEM_TREE"",""/protocol[at0008]/items[at0010]/_type"":""ELEMENT"",""/protocol[at0008]/items[at0010]/value/_type"":""DV_TEXT"",""/protocol[at0008]/items[at0010]/value/value"":""Requester order identifier 77"",""/protocol[at0008]/items[at0011]/_type"":""ELEMENT"",""/protocol[at0008]/items[at0011]/value/_type"":""DV_TEXT"",""/protocol[at0008]/items[at0011]/value/value"":""Receiver order identifier 84"",""/protocol[at0008]/items[at0127]/_type"":""ELEMENT"",""/protocol[at0008]/items[at0127]/value/_type"":""DV_TEXT"",""/protocol[at0008]/items[at0127]/value/value"":""Request status 67"",""/protocol[at0008]/archetype_node_id"":""at0008"",""/protocol[at0008]/name/_type"":""DV_TEXT"",""/protocol[at0008]/name/value"":""Tree"",""/archetype_node_id"":""openEHR-EHR-INSTRUCTION.service_request.v1"",""/narrative/_type"":""DV_TEXT"",""/narrative/value"":""Human readable instruction narrative"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""en"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/uid/_type"":""HIER_OBJECT_ID"",""/uid/value"":""30d4c457-09ad-451b-abb0-45e0f7c6aa58"",""/archetype_details/archetype_id/value"":""openEHR-EHR-INSTRUCTION.service_request.v1"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/name/_type"":""DV_TEXT"",""/name/value"":""Service request"",""/expiry_time/_type"":""DV_DATE_TIME"",""/expiry_time/value"":""2021-12-03T16:05:19.515085+01:00"",""/expiry_time/magnitude"":63774140719,""/subject/_type"":""PARTY_SELF""}"
+142,openEHR-EHR-INSTRUCTION.service_request.v1,INSTRUCTION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Plan of Care']/items[openEHR-EHR-INSTRUCTION.service_request.v1]",{},{0},1,"{""/activities[at0001]/_type"":""ACTIVITY"",""/activities[at0001]/description[at0009]/_type"":""ITEM_TREE"",""/activities[at0001]/description[at0009]/items[at0121]/_type"":""ELEMENT"",""/activities[at0001]/description[at0009]/items[at0121]/value/_type"":""DV_TEXT"",""/activities[at0001]/description[at0009]/items[at0121]/value/value"":""Service name 99"",""/activities[at0001]/description[at0009]/items[at0148]/_type"":""ELEMENT"",""/activities[at0001]/description[at0009]/items[at0148]/value/_type"":""DV_TEXT"",""/activities[at0001]/description[at0009]/items[at0148]/value/value"":""Service type 78"",""/activities[at0001]/description[at0009]/items[at0135]/_type"":""ELEMENT"",""/activities[at0001]/description[at0009]/items[at0135]/value/_type"":""DV_TEXT"",""/activities[at0001]/description[at0009]/items[at0135]/value/value"":""Description 60"",""/activities[at0001]/description[at0009]/items[at0064]/_type"":""ELEMENT"",""/activities[at0001]/description[at0009]/items[at0064]/value/_type"":""DV_TEXT"",""/activities[at0001]/description[at0009]/items[at0064]/value/value"":""Reason description 72"",""/activities[at0001]/description[at0009]/items[at0068]/_type"":""ELEMENT"",""/activities[at0001]/description[at0009]/items[at0068]/value/_type"":""DV_CODED_TEXT"",""/activities[at0001]/description[at0009]/items[at0068]/value/value"":""Routine"",""/activities[at0001]/description[at0009]/items[at0068]/value/defining_code/_type"":""CODE_PHRASE"",""/activities[at0001]/description[at0009]/items[at0068]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/activities[at0001]/description[at0009]/items[at0068]/value/defining_code/terminology_id/value"":""local"",""/activities[at0001]/description[at0009]/items[at0068]/value/defining_code/code_string"":""at0138"",""/activities[at0001]/description[at0009]/items[at0040]/_type"":""ELEMENT"",""/activities[at0001]/description[at0009]/items[at0040]/value/_type"":""DV_DATE_TIME"",""/activities[at0001]/description[at0009]/items[at0040]/value/value"":""2021-12-03T16:05:19.51495+01:00"",""/activities[at0001]/description[at0009]/items[at0040]/value/magnitude"":63774140719,""/activities[at0001]/description[at0009]/items[at0145]/_type"":""ELEMENT"",""/activities[at0001]/description[at0009]/items[at0145]/value/_type"":""DV_DATE_TIME"",""/activities[at0001]/description[at0009]/items[at0145]/value/value"":""2021-12-03T16:05:19.514985+01:00"",""/activities[at0001]/description[at0009]/items[at0145]/value/magnitude"":63774140719,""/activities[at0001]/description[at0009]/items[at0144]/_type"":""ELEMENT"",""/activities[at0001]/description[at0009]/items[at0144]/value/_type"":""DV_DATE_TIME"",""/activities[at0001]/description[at0009]/items[at0144]/value/value"":""2021-12-03T16:05:19.515006+01:00"",""/activities[at0001]/description[at0009]/items[at0144]/value/magnitude"":63774140719,""/activities[at0001]/description[at0009]/items[at0147]/_type"":""ELEMENT"",""/activities[at0001]/description[at0009]/items[at0147]/value/_type"":""DV_BOOLEAN"",""/activities[at0001]/description[at0009]/items[at0147]/value/value"":true,""/activities[at0001]/description[at0009]/items[at0076]/_type"":""ELEMENT"",""/activities[at0001]/description[at0009]/items[at0076]/value/_type"":""DV_BOOLEAN"",""/activities[at0001]/description[at0009]/items[at0076]/value/value"":true,""/activities[at0001]/description[at0009]/items[at0078]/_type"":""ELEMENT"",""/activities[at0001]/description[at0009]/items[at0078]/value/_type"":""DV_TEXT"",""/activities[at0001]/description[at0009]/items[at0078]/value/value"":""Information description 91"",""/activities[at0001]/description[at0009]/items[at0150]/_type"":""ELEMENT"",""/activities[at0001]/description[at0009]/items[at0150]/value/_type"":""DV_TEXT"",""/activities[at0001]/description[at0009]/items[at0150]/value/value"":""Comment 26"",""/activities[at0001]/description[at0009]/archetype_node_id"":""at0009"",""/activities[at0001]/description[at0009]/name/_type"":""DV_TEXT"",""/activities[at0001]/description[at0009]/name/value"":""Tree"",""/activities[at0001]/archetype_node_id"":""at0001"",""/activities[at0001]/timing/_type"":""DV_PARSABLE"",""/activities[at0001]/timing/value"":""R3/2021-12-03T16:00:00+01:00/P1M"",""/activities[at0001]/timing/formalism"":""timing"",""/activities[at0001]/action_archetype_id"":""/.*/"",""/activities[at0001]/name/_type"":""DV_TEXT"",""/activities[at0001]/name/value"":""Current Activity""}"
+143,openEHR-EHR-INSTRUCTION.service_request.v1,INSTRUCTION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Plan of Care']/items[openEHR-EHR-INSTRUCTION.service_request.v1]",{},"{0,0}",2,"{""/activities[at0001]/description[at0009]/items[at0062]/_type"":""ELEMENT"",""/activities[at0001]/description[at0009]/items[at0062]/value/_type"":""DV_TEXT"",""/activities[at0001]/description[at0009]/items[at0062]/value/value"":""Reason for request 32""}"
+144,openEHR-EHR-INSTRUCTION.service_request.v1,INSTRUCTION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Plan of Care']/items[openEHR-EHR-INSTRUCTION.service_request.v1]",{},"{0,0}",2,"{""/activities[at0001]/description[at0009]/items[at0152]/_type"":""ELEMENT"",""/activities[at0001]/description[at0009]/items[at0152]/value/_type"":""DV_TEXT"",""/activities[at0001]/description[at0009]/items[at0152]/value/value"":""Clinical indication 44""}"
+145,openEHR-EHR-INSTRUCTION.service_request.v1,INSTRUCTION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Plan of Care']/items[openEHR-EHR-INSTRUCTION.service_request.v1]",{},"{0,0}",2,"{""/activities[at0001]/description[at0009]/items[at0065]/_type"":""ELEMENT"",""/activities[at0001]/description[at0009]/items[at0065]/value/_type"":""DV_TEXT"",""/activities[at0001]/description[at0009]/items[at0065]/value/value"":""Intent 67""}"
+146,openEHR-EHR-INSTRUCTION.service_request.v1,INSTRUCTION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Plan of Care']/items[openEHR-EHR-INSTRUCTION.service_request.v1]",{},{0},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""requester"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""face-to-face communication"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""216"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""199"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Dr. Marcus Johnson""}"
+147,openEHR-EHR-INSTRUCTION.service_request.v1,INSTRUCTION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Plan of Care']/items[openEHR-EHR-INSTRUCTION.service_request.v1]",{},{1},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""performer"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""not specified"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""193"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""198"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Lara Markham""}"
+148,openEHR-EHR-EVALUATION.problem_diagnosis.v1,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Functional Status']/items[openEHR-EHR-EVALUATION.problem_diagnosis.v1]",{},{},0,"{""/_type"":""EVALUATION"",""/data[at0001]/_type"":""ITEM_TREE"",""/data[at0001]/items[at0002]/_type"":""ELEMENT"",""/data[at0001]/items[at0002]/value/_type"":""DV_TEXT"",""/data[at0001]/items[at0002]/value/value"":""Problem/Diagnosis name 10"",""/data[at0001]/items[at0077]/_type"":""ELEMENT"",""/data[at0001]/items[at0077]/value/_type"":""DV_DATE_TIME"",""/data[at0001]/items[at0077]/value/value"":""2021-12-03T16:05:19.515116+01:00"",""/data[at0001]/items[at0077]/value/magnitude"":63774140719,""/data[at0001]/items[at0005]/_type"":""ELEMENT"",""/data[at0001]/items[at0005]/value/_type"":""DV_CODED_TEXT"",""/data[at0001]/items[at0005]/value/value"":""Severe"",""/data[at0001]/items[at0005]/value/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/items[at0005]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/items[at0005]/value/defining_code/terminology_id/value"":""local"",""/data[at0001]/items[at0005]/value/defining_code/code_string"":""at0049"",""/data[at0001]/items[at0030,'Date of abatement']/_type"":""ELEMENT"",""/data[at0001]/items[at0030,'Date of abatement']/value/_type"":""DV_DATE_TIME"",""/data[at0001]/items[at0030,'Date of abatement']/value/value"":""2021-12-03T16:05:19.515138+01:00"",""/data[at0001]/items[at0030,'Date of abatement']/value/magnitude"":63774140719,""/data[at0001]/items[at0030,'Date of abatement']/name/_type"":""DV_TEXT"",""/data[at0001]/items[at0030,'Date of abatement']/name/value"":""Date of abatement"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/_type"":""CLUSTER"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0003]/_type"":""ELEMENT"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0003]/value/_type"":""DV_CODED_TEXT"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0003]/value/value"":""Active"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0003]/value/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0003]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0003]/value/defining_code/terminology_id/value"":""local"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0003]/value/defining_code/code_string"":""at0026"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0083]/_type"":""ELEMENT"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0083]/value/_type"":""DV_CODED_TEXT"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0083]/value/value"":""Resolved"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0083]/value/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0083]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0083]/value/defining_code/terminology_id/value"":""local"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0083]/value/defining_code/code_string"":""at0084"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0089]/_type"":""ELEMENT"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0089]/value/_type"":""DV_CODED_TEXT"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0089]/value/value"":""In remission"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0089]/value/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0089]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0089]/value/defining_code/terminology_id/value"":""local"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0089]/value/defining_code/code_string"":""at0090"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0071]/_type"":""ELEMENT"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0071]/value/_type"":""DV_CODED_TEXT"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0071]/value/value"":""Recurrence"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0071]/value/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0071]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0071]/value/defining_code/terminology_id/value"":""local"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/items[at0071]/value/defining_code/code_string"":""at0096"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/archetype_details/archetype_id/value"":""openEHR-EHR-CLUSTER.problem_qualifier.v1"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/archetype_details/rm_version"":""1.0.4"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/archetype_details/_type"":""ARCHETYPED"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/archetype_node_id"":""openEHR-EHR-CLUSTER.problem_qualifier.v1"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/name/_type"":""DV_TEXT"",""/data[at0001]/items[openEHR-EHR-CLUSTER.problem_qualifier.v1]/name/value"":""Problem/Diagnosis qualifier"",""/data[at0001]/items[at0073]/_type"":""ELEMENT"",""/data[at0001]/items[at0073]/value/_type"":""DV_CODED_TEXT"",""/data[at0001]/items[at0073]/value/value"":""Probable"",""/data[at0001]/items[at0073]/value/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/items[at0073]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/items[at0073]/value/defining_code/terminology_id/value"":""local"",""/data[at0001]/items[at0073]/value/defining_code/code_string"":""at0075"",""/data[at0001]/archetype_node_id"":""at0001"",""/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0001]/name/value"":""structure"",""/protocol[at0032]/_type"":""ITEM_TREE"",""/protocol[at0032]/items[at0070]/_type"":""ELEMENT"",""/protocol[at0032]/items[at0070]/value/_type"":""DV_DATE_TIME"",""/protocol[at0032]/items[at0070]/value/value"":""2021-12-03T16:05:19.515165+01:00"",""/protocol[at0032]/items[at0070]/value/magnitude"":63774140719,""/protocol[at0032]/archetype_node_id"":""at0032"",""/protocol[at0032]/name/_type"":""DV_TEXT"",""/protocol[at0032]/name/value"":""Tree"",""/archetype_node_id"":""openEHR-EHR-EVALUATION.problem_diagnosis.v1"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""en"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-EVALUATION.problem_diagnosis.v1"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/name/_type"":""DV_TEXT"",""/name/value"":""Problem/Diagnosis"",""/subject/_type"":""PARTY_SELF""}"
+149,openEHR-EHR-EVALUATION.problem_diagnosis.v1,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Functional Status']/items[openEHR-EHR-EVALUATION.problem_diagnosis.v1]",{},{0},1,"{""/data[at0001]/items[at0012]/_type"":""ELEMENT"",""/data[at0001]/items[at0012]/value/_type"":""DV_TEXT"",""/data[at0001]/items[at0012]/value/value"":""Body site 88""}"
+150,openEHR-EHR-EVALUATION.problem_diagnosis.v1,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Functional Status']/items[openEHR-EHR-EVALUATION.problem_diagnosis.v1]",{},{0},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""requester"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""face-to-face communication"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""216"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""199"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Dr. Marcus Johnson""}"
+151,openEHR-EHR-EVALUATION.problem_diagnosis.v1,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Functional Status']/items[openEHR-EHR-EVALUATION.problem_diagnosis.v1]",{},{1},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""performer"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""not specified"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""193"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""198"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Lara Markham""}"
+152,openEHR-EHR-EVALUATION.clinical_synopsis.v1,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Functional Status']/items[openEHR-EHR-EVALUATION.clinical_synopsis.v1,'Clinical impression']",{},{},0,"{""/_type"":""EVALUATION"",""/data[at0001]/_type"":""ITEM_TREE"",""/data[at0001]/items[at0002,'Impression']/_type"":""ELEMENT"",""/data[at0001]/items[at0002,'Impression']/value/_type"":""DV_TEXT"",""/data[at0001]/items[at0002,'Impression']/value/value"":""Impression 51"",""/data[at0001]/items[at0002,'Impression']/name/_type"":""DV_TEXT"",""/data[at0001]/items[at0002,'Impression']/name/value"":""Impression"",""/data[at0001]/archetype_node_id"":""at0001"",""/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0001]/name/value"":""List"",""/name/_type"":""DV_TEXT"",""/name/value"":""Clinical impression"",""/archetype_node_id"":""openEHR-EHR-EVALUATION.clinical_synopsis.v1"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""en"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-EVALUATION.clinical_synopsis.v1"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/subject/_type"":""PARTY_SELF""}"
+153,openEHR-EHR-EVALUATION.clinical_synopsis.v1,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Functional Status']/items[openEHR-EHR-EVALUATION.clinical_synopsis.v1,'Clinical impression']",{},{0},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""requester"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""face-to-face communication"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""216"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""199"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Dr. Marcus Johnson""}"
+154,openEHR-EHR-EVALUATION.clinical_synopsis.v1,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Functional Status']/items[openEHR-EHR-EVALUATION.clinical_synopsis.v1,'Clinical impression']",{},{1},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""performer"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""not specified"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""193"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""198"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Lara Markham""}"
+155,openEHR-EHR-EVALUATION.advance_care_directive.v1,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Advanced Directives']/items[openEHR-EHR-EVALUATION.advance_care_directive.v1]",{},{},0,"{""/_type"":""EVALUATION"",""/data[at0001]/_type"":""ITEM_TREE"",""/data[at0001]/items[at0005]/_type"":""ELEMENT"",""/data[at0001]/items[at0005]/value/_type"":""DV_TEXT"",""/data[at0001]/items[at0005]/value/value"":""Type of directive 83"",""/data[at0001]/items[at0004]/_type"":""ELEMENT"",""/data[at0001]/items[at0004]/value/_type"":""DV_CODED_TEXT"",""/data[at0001]/items[at0004]/value/value"":""Present"",""/data[at0001]/items[at0004]/value/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/items[at0004]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/items[at0004]/value/defining_code/terminology_id/value"":""local"",""/data[at0001]/items[at0004]/value/defining_code/code_string"":""at0044"",""/data[at0001]/items[at0006]/_type"":""ELEMENT"",""/data[at0001]/items[at0006]/value/_type"":""DV_TEXT"",""/data[at0001]/items[at0006]/value/value"":""Description 26"",""/data[at0001]/items[at0038]/_type"":""ELEMENT"",""/data[at0001]/items[at0038]/value/_type"":""DV_TEXT"",""/data[at0001]/items[at0038]/value/value"":""Comment 85"",""/data[at0001]/archetype_node_id"":""at0001"",""/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0001]/name/value"":""Item tree"",""/protocol[at0010]/_type"":""ITEM_TREE"",""/protocol[at0010]/items[at0053]/_type"":""ELEMENT"",""/protocol[at0010]/items[at0053]/value/_type"":""DV_DATE_TIME"",""/protocol[at0010]/items[at0053]/value/value"":""2021-12-03T16:05:19.5152+01:00"",""/protocol[at0010]/items[at0053]/value/magnitude"":63774140719,""/protocol[at0010]/items[at0054]/_type"":""ELEMENT"",""/protocol[at0010]/items[at0054]/value/_type"":""DV_DATE_TIME"",""/protocol[at0010]/items[at0054]/value/value"":""2021-12-03T16:05:19.515221+01:00"",""/protocol[at0010]/items[at0054]/value/magnitude"":63774140719,""/protocol[at0010]/items[at0056]/_type"":""ELEMENT"",""/protocol[at0010]/items[at0056]/value/_type"":""DV_DATE_TIME"",""/protocol[at0010]/items[at0056]/value/value"":""2021-12-03T16:05:19.51524+01:00"",""/protocol[at0010]/items[at0056]/value/magnitude"":63774140719,""/protocol[at0010]/items[at0055]/_type"":""ELEMENT"",""/protocol[at0010]/items[at0055]/value/_type"":""DV_DATE_TIME"",""/protocol[at0010]/items[at0055]/value/value"":""2021-12-03T16:05:19.515259+01:00"",""/protocol[at0010]/items[at0055]/value/magnitude"":63774140719,""/protocol[at0010]/archetype_node_id"":""at0010"",""/protocol[at0010]/name/_type"":""DV_TEXT"",""/protocol[at0010]/name/value"":""Item tree"",""/archetype_node_id"":""openEHR-EHR-EVALUATION.advance_care_directive.v1"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""en"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-EVALUATION.advance_care_directive.v1"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/name/_type"":""DV_TEXT"",""/name/value"":""Advance care directive"",""/subject/_type"":""PARTY_SELF""}"
+156,openEHR-EHR-EVALUATION.advance_care_directive.v1,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Advanced Directives']/items[openEHR-EHR-EVALUATION.advance_care_directive.v1]",{},{0},1,"{""/data[at0001]/items[at0007]/_type"":""ELEMENT"",""/data[at0001]/items[at0007]/value/_type"":""DV_TEXT"",""/data[at0001]/items[at0007]/value/value"":""Condition 81""}"
+157,openEHR-EHR-EVALUATION.advance_care_directive.v1,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Advanced Directives']/items[openEHR-EHR-EVALUATION.advance_care_directive.v1]",{},{0},1,"{""/data[at0001]/items[at0058]/_type"":""CLUSTER"",""/data[at0001]/items[at0058]/items[at0030]/_type"":""ELEMENT"",""/data[at0001]/items[at0058]/items[at0030]/value/_type"":""DV_TEXT"",""/data[at0001]/items[at0058]/items[at0030]/value/value"":""Location 48"",""/data[at0001]/items[at0058]/archetype_node_id"":""at0058"",""/data[at0001]/items[at0058]/name/_type"":""DV_TEXT"",""/data[at0001]/items[at0058]/name/value"":""Directive location""}"
+158,openEHR-EHR-EVALUATION.advance_care_directive.v1,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Advanced Directives']/items[openEHR-EHR-EVALUATION.advance_care_directive.v1]",{},{0},1,"{""/protocol[at0010]/items[at0027]/_type"":""ELEMENT"",""/protocol[at0010]/items[at0027]/value/_type"":""DV_TEXT"",""/protocol[at0010]/items[at0027]/value/value"":""Mandate 2""}"
+159,openEHR-EHR-EVALUATION.advance_care_directive.v1,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Advanced Directives']/items[openEHR-EHR-EVALUATION.advance_care_directive.v1]",{},{0},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""requester"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""face-to-face communication"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""216"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""199"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Dr. Marcus Johnson""}"
+160,openEHR-EHR-EVALUATION.advance_care_directive.v1,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Advanced Directives']/items[openEHR-EHR-EVALUATION.advance_care_directive.v1]",{},{1},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""performer"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""not specified"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""193"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""198"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Lara Markham""}"
+161,openEHR-EHR-EVALUATION.limitation_of_treatment.v0,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Advanced Directives']/items[openEHR-EHR-EVALUATION.limitation_of_treatment.v0]",{},{},0,"{""/_type"":""EVALUATION"",""/data[at0001]/_type"":""ITEM_TREE"",""/data[at0001]/items[at0002]/_type"":""ELEMENT"",""/data[at0001]/items[at0002]/value/_type"":""DV_CODED_TEXT"",""/data[at0001]/items[at0002]/value/value"":""No limitation of treatment"",""/data[at0001]/items[at0002]/value/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/items[at0002]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/items[at0002]/value/defining_code/terminology_id/value"":""local"",""/data[at0001]/items[at0002]/value/defining_code/code_string"":""at0003"",""/data[at0001]/items[at0021]/_type"":""ELEMENT"",""/data[at0001]/items[at0021]/value/_type"":""DV_TEXT"",""/data[at0001]/items[at0021]/value/value"":""Rationale 34"",""/data[at0001]/items[at0022]/_type"":""ELEMENT"",""/data[at0001]/items[at0022]/value/_type"":""DV_CODED_TEXT"",""/data[at0001]/items[at0022]/value/value"":""Patient aware of the decision/s"",""/data[at0001]/items[at0022]/value/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/items[at0022]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/items[at0022]/value/defining_code/terminology_id/value"":""local"",""/data[at0001]/items[at0022]/value/defining_code/code_string"":""at0023"",""/data[at0001]/items[at0025]/_type"":""ELEMENT"",""/data[at0001]/items[at0025]/value/_type"":""DV_TEXT"",""/data[at0001]/items[at0025]/value/value"":""Carer awareness 12"",""/data[at0001]/items[at0026]/_type"":""ELEMENT"",""/data[at0001]/items[at0026]/value/_type"":""DV_TEXT"",""/data[at0001]/items[at0026]/value/value"":""Comment 73"",""/data[at0001]/archetype_node_id"":""at0001"",""/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0001]/name/value"":""Tree"",""/protocol[at0027]/_type"":""ITEM_TREE"",""/protocol[at0027]/items[at029]/_type"":""ELEMENT"",""/protocol[at0027]/items[at029]/value/_type"":""DV_DATE_TIME"",""/protocol[at0027]/items[at029]/value/value"":""2021-12-03T16:05:19.515306+01:00"",""/protocol[at0027]/items[at029]/value/magnitude"":63774140719,""/protocol[at0027]/items[at0030]/_type"":""ELEMENT"",""/protocol[at0027]/items[at0030]/value/_type"":""DV_DATE_TIME"",""/protocol[at0027]/items[at0030]/value/value"":""2021-12-03T16:05:19.515328+01:00"",""/protocol[at0027]/items[at0030]/value/magnitude"":63774140719,""/protocol[at0027]/archetype_node_id"":""at0027"",""/protocol[at0027]/name/_type"":""DV_TEXT"",""/protocol[at0027]/name/value"":""Tree"",""/archetype_node_id"":""openEHR-EHR-EVALUATION.limitation_of_treatment.v0"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""en"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/archetype_details/archetype_id/value"":""openEHR-EHR-EVALUATION.limitation_of_treatment.v0"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/name/_type"":""DV_TEXT"",""/name/value"":""Limitation of treatment"",""/subject/_type"":""PARTY_SELF""}"
+162,openEHR-EHR-EVALUATION.limitation_of_treatment.v0,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Advanced Directives']/items[openEHR-EHR-EVALUATION.limitation_of_treatment.v0]",{},{0},1,"{""/data[at0001]/items[at0006]/_type"":""CLUSTER"",""/data[at0001]/items[at0006]/items[at0007]/_type"":""ELEMENT"",""/data[at0001]/items[at0006]/items[at0007]/value/_type"":""DV_CODED_TEXT"",""/data[at0001]/items[at0006]/items[at0007]/value/value"":""Cardiopulmonary resuscitation"",""/data[at0001]/items[at0006]/items[at0007]/value/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/items[at0006]/items[at0007]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/items[at0006]/items[at0007]/value/defining_code/terminology_id/value"":""local"",""/data[at0001]/items[at0006]/items[at0007]/value/defining_code/code_string"":""at0008"",""/data[at0001]/items[at0006]/items[at0017]/_type"":""ELEMENT"",""/data[at0001]/items[at0006]/items[at0017]/value/_type"":""DV_CODED_TEXT"",""/data[at0001]/items[at0006]/items[at0017]/value/value"":""Not permitted"",""/data[at0001]/items[at0006]/items[at0017]/value/defining_code/_type"":""CODE_PHRASE"",""/data[at0001]/items[at0006]/items[at0017]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0001]/items[at0006]/items[at0017]/value/defining_code/terminology_id/value"":""local"",""/data[at0001]/items[at0006]/items[at0017]/value/defining_code/code_string"":""at0019"",""/data[at0001]/items[at0006]/items[at0020]/_type"":""ELEMENT"",""/data[at0001]/items[at0006]/items[at0020]/value/_type"":""DV_TEXT"",""/data[at0001]/items[at0006]/items[at0020]/value/value"":""Qualification 27"",""/data[at0001]/items[at0006]/archetype_node_id"":""at0006"",""/data[at0001]/items[at0006]/name/_type"":""DV_TEXT"",""/data[at0001]/items[at0006]/name/value"":""Per limitation""}"
+163,openEHR-EHR-EVALUATION.limitation_of_treatment.v0,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Advanced Directives']/items[openEHR-EHR-EVALUATION.limitation_of_treatment.v0]",{},{0},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""requester"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""face-to-face communication"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""216"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""199"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Dr. Marcus Johnson""}"
+164,openEHR-EHR-EVALUATION.limitation_of_treatment.v0,EVALUATION,"/content[openEHR-EHR-SECTION.adhoc.v1,'Advanced Directives']/items[openEHR-EHR-EVALUATION.limitation_of_treatment.v0]",{},{1},1,"{""/other_participations/_type"":""PARTICIPATION"",""/other_participations/function/_type"":""DV_TEXT"",""/other_participations/function/value"":""performer"",""/other_participations/mode/_type"":""DV_CODED_TEXT"",""/other_participations/mode/value"":""not specified"",""/other_participations/mode/defining_code/_type"":""CODE_PHRASE"",""/other_participations/mode/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/other_participations/mode/defining_code/terminology_id/value"":""openehr"",""/other_participations/mode/defining_code/code_string"":""193"",""/other_participations/performer/_type"":""PARTY_IDENTIFIED"",""/other_participations/performer/external_ref/_type"":""PARTY_REF"",""/other_participations/performer/external_ref/namespace"":""HOSPITAL-NS"",""/other_participations/performer/external_ref/type"":""PERSON"",""/other_participations/performer/external_ref/id/_type"":""GENERIC_ID"",""/other_participations/performer/external_ref/id/value"":""198"",""/other_participations/performer/external_ref/id/scheme"":""HOSPITAL-NS"",""/other_participations/performer/name"":""Lara Markham""}"
diff --git a/serialisation/src/test/resources/csv/IPSEncode.csv b/serialisation/src/test/resources/csv/IPSEncode.csv
new file mode 100644
index 000000000..eb000edb2
--- /dev/null
+++ b/serialisation/src/test/resources/csv/IPSEncode.csv
@@ -0,0 +1,166 @@
+NUM,ENTITY_CONCEPT,RM_ENTITY,ENTITY_PATH,ENTITY_IDX,FIELD_IDX,FIELD_IDX_LEN,FIELDS
+0,openEHR-EHR-COMPOSITION.health_summary.v1,COMPOSITION,/,{},{},0,"{""/!5"":""COMPOSITION"",""/!b9"":""DV_CODED_TEXT"",""/!ci"":""event"",""/!b6"":""CODE_PHRASE"",""/!bq"":""TERMINOLOGY_ID"",""/!cy"":""openehr"",""/!b8"":""433"",""/!b4"":""EVENT_CONTEXT"",""/!ck"":""DV_DATE_TIME"",""/!cr"":""2021-12-03T17:34:06.849379+01:00"",""/!cg"":63774146046,""/!de"":""PARTY_IDENTIFIED"",""/!c6"":""PARTY_REF"",""/!c7"":""HOSPITAL-NS"",""/!df"":""PARTY"",""/!c9"":""GENERIC_ID"",""/!dc"":""9091"",""/!dh"":""HOSPITAL-NS"",""/!dd"":""Hospital"",""/!cb"":""DV_CODED_TEXT"",""/!b0"":""other care"",""/!cl"":""CODE_PHRASE"",""/!b5"":""TERMINOLOGY_ID"",""/!cd"":""openehr"",""/!c3"":""238"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/d"":""SECTION"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/f/d"":""DV_TEXT"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/f/c"":""Medication Summary"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/n/z/c"":""openEHR-EHR-SECTION.adhoc.v1"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/n/y"":""1.0.4"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/n/d"":""ARCHETYPED"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/k"":""openEHR-EHR-SECTION.adhoc.v1"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Allergies & Intolerances']/d"":""SECTION"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Allergies & Intolerances']/f/d"":""DV_TEXT"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Allergies & Intolerances']/f/c"":""Allergies & Intolerances"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Allergies & Intolerances']/n/z/c"":""openEHR-EHR-SECTION.adhoc.v1"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Allergies & Intolerances']/n/y"":""1.0.4"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Allergies & Intolerances']/n/d"":""ARCHETYPED"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Allergies & Intolerances']/k"":""openEHR-EHR-SECTION.adhoc.v1"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Problem List']/d"":""SECTION"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Problem List']/f/d"":""DV_TEXT"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Problem List']/f/c"":""Problem List"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Problem List']/n/z/c"":""openEHR-EHR-SECTION.adhoc.v1"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Problem List']/n/y"":""1.0.4"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Problem List']/n/d"":""ARCHETYPED"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Problem List']/k"":""openEHR-EHR-SECTION.adhoc.v1"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Immunizations']/d"":""SECTION"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Immunizations']/f/d"":""DV_TEXT"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Immunizations']/f/c"":""Immunizations"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Immunizations']/n/z/c"":""openEHR-EHR-SECTION.adhoc.v1"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Immunizations']/n/y"":""1.0.4"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Immunizations']/n/d"":""ARCHETYPED"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Immunizations']/k"":""openEHR-EHR-SECTION.adhoc.v1"",""/h[openEHR-EHR-SECTION.adhoc.v1,'History of Procedures']/d"":""SECTION"",""/h[openEHR-EHR-SECTION.adhoc.v1,'History of Procedures']/f/d"":""DV_TEXT"",""/h[openEHR-EHR-SECTION.adhoc.v1,'History of Procedures']/f/c"":""History of Procedures"",""/h[openEHR-EHR-SECTION.adhoc.v1,'History of Procedures']/n/z/c"":""openEHR-EHR-SECTION.adhoc.v1"",""/h[openEHR-EHR-SECTION.adhoc.v1,'History of Procedures']/n/y"":""1.0.4"",""/h[openEHR-EHR-SECTION.adhoc.v1,'History of Procedures']/n/d"":""ARCHETYPED"",""/h[openEHR-EHR-SECTION.adhoc.v1,'History of Procedures']/k"":""openEHR-EHR-SECTION.adhoc.v1"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Medical Devices']/d"":""SECTION"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Medical Devices']/f/d"":""DV_TEXT"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Medical Devices']/f/c"":""Medical Devices"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Medical Devices']/n/z/c"":""openEHR-EHR-SECTION.adhoc.v1"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Medical Devices']/n/y"":""1.0.4"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Medical Devices']/n/d"":""ARCHETYPED"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Medical Devices']/k"":""openEHR-EHR-SECTION.adhoc.v1"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/d"":""SECTION"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/f/d"":""DV_TEXT"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/f/c"":""Diagnostic Results"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/n/z/c"":""openEHR-EHR-SECTION.adhoc.v1"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/n/y"":""1.0.4"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/n/d"":""ARCHETYPED"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/k"":""openEHR-EHR-SECTION.adhoc.v1"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/d"":""SECTION"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/f/d"":""DV_TEXT"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/f/c"":""Vital Signs"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/n/z/c"":""openEHR-EHR-SECTION.adhoc.v1"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/n/y"":""1.0.4"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/n/d"":""ARCHETYPED"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/k"":""openEHR-EHR-SECTION.adhoc.v1"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Past History of Illnesses']/d"":""SECTION"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Past History of Illnesses']/f/d"":""DV_TEXT"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Past History of Illnesses']/f/c"":""Past History of Illnesses"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Past History of Illnesses']/n/z/c"":""openEHR-EHR-SECTION.adhoc.v1"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Past History of Illnesses']/n/y"":""1.0.4"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Past History of Illnesses']/n/d"":""ARCHETYPED"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Past History of Illnesses']/k"":""openEHR-EHR-SECTION.adhoc.v1"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Pregnancy']/d"":""SECTION"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Pregnancy']/f/d"":""DV_TEXT"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Pregnancy']/f/c"":""Pregnancy"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Pregnancy']/n/z/c"":""openEHR-EHR-SECTION.adhoc.v1"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Pregnancy']/n/y"":""1.0.4"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Pregnancy']/n/d"":""ARCHETYPED"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Pregnancy']/k"":""openEHR-EHR-SECTION.adhoc.v1"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Social History']/d"":""SECTION"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Social History']/f/d"":""DV_TEXT"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Social History']/f/c"":""Social History"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Social History']/n/z/c"":""openEHR-EHR-SECTION.adhoc.v1"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Social History']/n/y"":""1.0.4"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Social History']/n/d"":""ARCHETYPED"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Social History']/k"":""openEHR-EHR-SECTION.adhoc.v1"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Plan of Care']/d"":""SECTION"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Plan of Care']/f/d"":""DV_TEXT"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Plan of Care']/f/c"":""Plan of Care"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Plan of Care']/n/z/c"":""openEHR-EHR-SECTION.adhoc.v1"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Plan of Care']/n/y"":""1.0.4"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Plan of Care']/n/d"":""ARCHETYPED"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Plan of Care']/k"":""openEHR-EHR-SECTION.adhoc.v1"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Functional Status']/d"":""SECTION"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Functional Status']/f/d"":""DV_TEXT"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Functional Status']/f/c"":""Functional Status"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Functional Status']/n/z/c"":""openEHR-EHR-SECTION.adhoc.v1"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Functional Status']/n/y"":""1.0.4"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Functional Status']/n/d"":""ARCHETYPED"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Functional Status']/k"":""openEHR-EHR-SECTION.adhoc.v1"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Advanced Directives']/d"":""SECTION"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Advanced Directives']/f/d"":""DV_TEXT"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Advanced Directives']/f/c"":""Advanced Directives"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Advanced Directives']/n/z/c"":""openEHR-EHR-SECTION.adhoc.v1"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Advanced Directives']/n/y"":""1.0.4"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Advanced Directives']/n/d"":""ARCHETYPED"",""/h[openEHR-EHR-SECTION.adhoc.v1,'Advanced Directives']/k"":""openEHR-EHR-SECTION.adhoc.v1"",""/!r"":""DV_TEXT"",""/!1"":""International Patient Summary"",""/!2"":""openEHR-EHR-COMPOSITION.health_summary.v1"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""en"",""/!bo"":""OBJECT_VERSION_ID"",""/!bn"":""c5db0694-5cd2-4fd1-a5bf-ed25f1c5d371::ehrbase.org::1"",""/!3"":""openEHR-EHR-COMPOSITION.health_summary.v1"",""/!b2"":""International Patient Summary"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!b7"":""CODE_PHRASE"",""/!c2"":""TERMINOLOGY_ID"",""/!b1"":""ISO_3166-1"",""/!b3"":""US"",""/!cn"":""PARTY_IDENTIFIED"",""/!cp"":""Silvia Blake""}"
+1,openEHR-EHR-COMPOSITION.health_summary.v1,COMPOSITION,/,{},{0},1,"{""/!cm"":""PARTICIPATION"",""/!ca"":""DV_TEXT"",""/!br"":""requester"",""/!c5"":""DV_CODED_TEXT"",""/!cz"":""face-to-face communication"",""/!bz"":""CODE_PHRASE"",""/!bp"":""TERMINOLOGY_ID"",""/!cq"":""openehr"",""/!c4"":""216"",""/!ch"":""PARTY_IDENTIFIED"",""/!co"":""PARTY_REF"",""/!by"":""HOSPITAL-NS"",""/!ce"":""PERSON"",""/!cc"":""GENERIC_ID"",""/!cj"":""199"",""/!c1"":""HOSPITAL-NS"",""/!cf"":""Dr. Marcus Johnson""}"
+2,openEHR-EHR-COMPOSITION.health_summary.v1,COMPOSITION,/,{},{1},1,"{""/!cm"":""PARTICIPATION"",""/!ca"":""DV_TEXT"",""/!br"":""performer"",""/!c5"":""DV_CODED_TEXT"",""/!cz"":""not specified"",""/!bz"":""CODE_PHRASE"",""/!bp"":""TERMINOLOGY_ID"",""/!cq"":""openehr"",""/!c4"":""193"",""/!ch"":""PARTY_IDENTIFIED"",""/!co"":""PARTY_REF"",""/!by"":""HOSPITAL-NS"",""/!ce"":""PERSON"",""/!cc"":""GENERIC_ID"",""/!cj"":""198"",""/!c1"":""HOSPITAL-NS"",""/!cf"":""Lara Markham""}"
+3,openEHR-EHR-ACTION.medication.v1,ACTION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/a[openEHR-EHR-ACTION.medication.v1,'Medication statement']",{},{},0,"{""/!5"":""ACTION"",""/g[at0017]/d"":""ITEM_TREE"",""/g[at0017]/a[at0020]/d"":""ELEMENT"",""/g[at0017]/a[at0020]/c/d"":""DV_TEXT"",""/g[at0017]/a[at0020]/c/c"":""Medication item 83"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/d"":""CLUSTER"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0132]/d"":""ELEMENT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0132]/c/d"":""DV_TEXT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0132]/c/c"":""Name 5"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0142]/d"":""ELEMENT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0142]/c/d"":""DV_CODED_TEXT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0142]/c/c"":""Single-ingredient product"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0142]/c/j/d"":""CODE_PHRASE"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0142]/c/j/m/d"":""TERMINOLOGY_ID"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0142]/c/j/m/c"":""local"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0142]/c/j/r"":""at0145"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0152]/d"":""CLUSTER"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0152]/a[at0153]/d"":""ELEMENT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0152]/a[at0153]/c/d"":""DV_QUANTITY"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0152]/a[at0153]/c/1"":""1"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0152]/a[at0153]/c/l"":35.87,""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0152]/a[at0004]/d"":""ELEMENT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0152]/a[at0004]/c/d"":""DV_TEXT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0152]/a[at0004]/c/c"":""Strength numerator unit 70"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0152]/a[at0157]/d"":""ELEMENT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0152]/a[at0157]/c/d"":""DV_QUANTITY"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0152]/a[at0157]/c/1"":""1"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0152]/a[at0157]/c/l"":66.71,""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0152]/a[at0005]/d"":""ELEMENT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0152]/a[at0005]/c/d"":""DV_TEXT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0152]/a[at0005]/c/c"":""Strength denominator unit 35"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0152]/k"":""at0152"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0152]/f/d"":""DV_TEXT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0152]/f/c"":""Strength (presentation)"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0158]/d"":""ELEMENT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0158]/c/d"":""DV_TEXT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0158]/c/c"":""Unit of presentation 19"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0115]/d"":""ELEMENT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0115]/c/d"":""DV_QUANTITY"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0115]/c/1"":""?"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0115]/c/l"":31.53,""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0151]/d"":""ELEMENT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0151]/c/d"":""DV_TEXT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0151]/c/c"":""Manufacturer 26"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0003]/d"":""ELEMENT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0003]/c/d"":""DV_DATE_TIME"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0003]/c/c"":""2021-12-03T16:05:19.513542+01:00"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0003]/c/l"":63774140719,""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0139]/d"":""ELEMENT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0139]/c/d"":""DV_QUANTITY"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0139]/c/1"":""1"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0139]/c/l"":74.97,""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0008]/d"":""ELEMENT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0008]/c/d"":""DV_TEXT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0008]/c/c"":""Amount unit 82"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0148]/d"":""ELEMENT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0148]/c/d"":""DV_QUANTITY"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0148]/c/1"":""1"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0148]/c/l"":78.36,""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0007]/d"":""ELEMENT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0007]/c/d"":""DV_TEXT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0007]/c/c"":""Alternate amount unit 36"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0127]/d"":""ELEMENT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0127]/c/d"":""DV_CODED_TEXT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0127]/c/c"":""Excipient"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0127]/c/j/d"":""CODE_PHRASE"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0127]/c/j/m/d"":""TERMINOLOGY_ID"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0127]/c/j/m/c"":""local"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0127]/c/j/r"":""at0084"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0133]/d"":""ELEMENT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0133]/c/d"":""DV_TEXT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0133]/c/c"":""Description 86"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/n/z/c"":""openEHR-EHR-CLUSTER.medication.v1"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/n/y"":""1.0.4"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/n/d"":""ARCHETYPED"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/k"":""openEHR-EHR-CLUSTER.medication.v1"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/d"":""CLUSTER"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[at0144]/d"":""ELEMENT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[at0144]/c/d"":""DV_QUANTITY"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[at0144]/c/1"":""1"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[at0144]/c/l"":25.28,""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[at0145]/d"":""ELEMENT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[at0145]/c/d"":""DV_TEXT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[at0145]/c/c"":""Dose unit 64"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[at0135]/d"":""ELEMENT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[at0135]/c/d"":""DV_TEXT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[at0135]/c/c"":""Dose formula 34"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[at0178]/d"":""ELEMENT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[at0178]/c/d"":""DV_TEXT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[at0178]/c/c"":""Dose description 32"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/d"":""CLUSTER"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0003]/d"":""ELEMENT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0003]/c/d"":""DV_QUANTITY"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0003]/c/7"":0,""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0003]/c/1"":""1/d"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0003]/c/l"":49.0,""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0014]/d"":""ELEMENT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0014]/c/d"":""DV_DURATION"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0014]/c/c"":""PT7H3M"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0014]/c/l"":25380.0,""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0027]/d"":""ELEMENT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0027]/c/d"":""DV_TEXT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0027]/c/c"":""Timing description 71"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0023]/d"":""ELEMENT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0023]/c/d"":""DV_BOOLEAN"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0023]/c/c"":true,""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0024]/d"":""ELEMENT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0024]/c/d"":""DV_BOOLEAN"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0024]/c/c"":true,""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0025]/d"":""ELEMENT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0025]/c/d"":""DV_TEXT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0025]/c/c"":""'As required' criterion 5"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/n/z/c"":""openEHR-EHR-CLUSTER.timing_daily.v1"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/n/y"":""1.0.4"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/n/d"":""ARCHETYPED"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/k"":""openEHR-EHR-CLUSTER.timing_daily.v1"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/f/d"":""DV_TEXT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/f/c"":""Timing - daily"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/n/z/c"":""openEHR-EHR-CLUSTER.dosage.v1"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/n/y"":""1.0.4"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/n/d"":""ARCHETYPED"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/k"":""openEHR-EHR-CLUSTER.dosage.v1"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/f/d"":""DV_TEXT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/f/c"":""Dosage"",""/g[at0017]/a[at0140]/d"":""CLUSTER"",""/g[at0017]/a[at0140]/a[at0147]/d"":""ELEMENT"",""/g[at0017]/a[at0140]/a[at0147]/c/d"":""DV_TEXT"",""/g[at0017]/a[at0140]/a[at0147]/c/c"":""Route 20"",""/g[at0017]/a[at0140]/a[at0141]/d"":""ELEMENT"",""/g[at0017]/a[at0140]/a[at0141]/c/d"":""DV_TEXT"",""/g[at0017]/a[at0140]/a[at0141]/c/c"":""Body site 68"",""/g[at0017]/a[at0140]/k"":""at0140"",""/g[at0017]/a[at0140]/f/d"":""DV_TEXT"",""/g[at0017]/a[at0140]/f/c"":""Administration details"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/d"":""CLUSTER"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0002]/d"":""ELEMENT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0002]/c/d"":""DV_DURATION"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0002]/c/c"":""P1Y3M40D"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0002]/c/l"":4.28976E7,""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0014]/d"":""ELEMENT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0014]/c/d"":""DV_QUANTITY"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0014]/c/7"":0,""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0014]/c/1"":""1/wk"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0014]/c/l"":7.0,""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0021]/d"":""ELEMENT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0021]/c/d"":""DV_TEXT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0021]/c/c"":""Timing description 6"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0010]/d"":""CLUSTER"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0010]/a[at0011]/d"":""ELEMENT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0010]/a[at0011]/c/d"":""DV_DURATION"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0010]/a[at0011]/c/c"":""P5Y2M39D"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0010]/a[at0011]/c/l"":1.66409856E8,""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0010]/a[at0012]/d"":""ELEMENT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0010]/a[at0012]/c/d"":""DV_DURATION"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0010]/a[at0012]/c/c"":""P2Y3M29D"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0010]/a[at0012]/c/l"":7.3503936E7,""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0010]/a[at0013]/d"":""ELEMENT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0010]/a[at0013]/c/d"":""DV_COUNT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0010]/a[at0013]/c/l"":743,""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0010]/k"":""at0010"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0010]/f/d"":""DV_TEXT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0010]/f/c"":""On / off cycle"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/n/z/c"":""openEHR-EHR-CLUSTER.timing_nondaily.v1"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/n/y"":""1.0.4"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/n/d"":""ARCHETYPED"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/k"":""openEHR-EHR-CLUSTER.timing_nondaily.v1"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/f/d"":""DV_TEXT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/f/c"":""Timing - non-daily"",""/g[at0017]/k"":""at0017"",""/g[at0017]/f/d"":""DV_TEXT"",""/g[at0017]/f/c"":""Tree"",""/i[at0030]/d"":""ITEM_TREE"",""/i[at0030]/k"":""at0030"",""/i[at0030]/f/d"":""DV_TEXT"",""/i[at0030]/f/c"":""Tree"",""/!r"":""DV_TEXT"",""/!1"":""Medication statement"",""/!2"":""openEHR-EHR-ACTION.medication.v1"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""en"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-ACTION.medication.v1"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!bi"":""DV_DATE_TIME"",""/!bl"":""2021-12-03T16:05:19.513939+01:00"",""/!bg"":63774140719,""/!bh"":""ISM_TRANSITION"",""/!bf"":""DV_CODED_TEXT"",""/!be"":""active"",""/!bm"":""CODE_PHRASE"",""/!bd"":""TERMINOLOGY_ID"",""/!bj"":""openehr"",""/!bk"":""245"",""/!0"":""PARTY_SELF""}"
+4,openEHR-EHR-ACTION.medication.v1,ACTION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/a[openEHR-EHR-ACTION.medication.v1,'Medication statement']",{},{0},1,"{""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0071]/d"":""ELEMENT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0071]/c/d"":""DV_TEXT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0071]/c/c"":""Form 11""}"
+5,openEHR-EHR-ACTION.medication.v1,ACTION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/a[openEHR-EHR-ACTION.medication.v1,'Medication statement']",{},{0},1,"{""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0150]/d"":""ELEMENT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0150]/c/d"":""DV_TEXT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.medication.v1]/a[at0150]/c/c"":""Batch ID 76""}"
+6,openEHR-EHR-ACTION.medication.v1,ACTION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/a[openEHR-EHR-ACTION.medication.v1,'Medication statement']",{},{0},1,"{""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0004]/d"":""ELEMENT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0004]/c/d"":""DV_TIME"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0004]/c/c"":""16:05:19.513694"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0004]/c/l"":57919.0}"
+7,openEHR-EHR-ACTION.medication.v1,ACTION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/a[openEHR-EHR-ACTION.medication.v1,'Medication statement']",{},{0},1,"{""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0039]/d"":""CLUSTER"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0039]/a[at0026]/d"":""ELEMENT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0039]/a[at0026]/c/d"":""DV_TEXT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0039]/a[at0026]/c/c"":""Event name 29"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0039]/a[at0040]/d"":""ELEMENT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0039]/a[at0040]/c/d"":""DV_DURATION"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0039]/a[at0040]/c/c"":""PT2H2M4S"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0039]/a[at0040]/c/l"":7324.0,""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0039]/k"":""at0039"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0039]/f/d"":""DV_TEXT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0039]/f/c"":""Specific event""}"
+8,openEHR-EHR-ACTION.medication.v1,ACTION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/a[openEHR-EHR-ACTION.medication.v1,'Medication statement']",{},{0},1,"{""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0035]/d"":""CLUSTER"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0035]/a[at0036]/d"":""ELEMENT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0035]/a[at0036]/c/d"":""DV_DURATION"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0035]/a[at0036]/c/c"":""PT10H1S"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0035]/a[at0036]/c/l"":36001.0,""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0035]/a[at0037]/d"":""ELEMENT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0035]/a[at0037]/c/d"":""DV_DURATION"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0035]/a[at0037]/c/c"":""PT2H1M1S"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0035]/a[at0037]/c/l"":7261.0,""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0035]/a[at0038]/d"":""ELEMENT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0035]/a[at0038]/c/d"":""DV_COUNT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0035]/a[at0038]/c/l"":10,""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0035]/k"":""at0035"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0035]/f/d"":""DV_TEXT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.dosage.v1]/a[openEHR-EHR-CLUSTER.timing_daily.v1]/a[at0035]/f/c"":""On / off cycle""}"
+9,openEHR-EHR-ACTION.medication.v1,ACTION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/a[openEHR-EHR-ACTION.medication.v1,'Medication statement']",{},{0},1,"{""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0001]/d"":""ELEMENT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0001]/c/d"":""DV_DATE"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0001]/c/c"":""2021-12-03"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0001]/c/l"":738126}"
+10,openEHR-EHR-ACTION.medication.v1,ACTION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/a[openEHR-EHR-ACTION.medication.v1,'Medication statement']",{},{0},1,"{""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0003]/d"":""ELEMENT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0003]/c/d"":""DV_CODED_TEXT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0003]/c/c"":""Monday"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0003]/c/j/d"":""CODE_PHRASE"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0003]/c/j/m/d"":""TERMINOLOGY_ID"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0003]/c/j/m/c"":""local"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0003]/c/j/r"":""at0007""}"
+11,openEHR-EHR-ACTION.medication.v1,ACTION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/a[openEHR-EHR-ACTION.medication.v1,'Medication statement']",{},{0},1,"{""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0004]/d"":""ELEMENT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0004]/c/d"":""DV_COUNT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0004]/c/l"":27}"
+12,openEHR-EHR-ACTION.medication.v1,ACTION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/a[openEHR-EHR-ACTION.medication.v1,'Medication statement']",{},{0},1,"{""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0006]/d"":""CLUSTER"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0006]/a[at0005]/d"":""ELEMENT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0006]/a[at0005]/c/d"":""DV_TEXT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0006]/a[at0005]/c/c"":""Event name 15"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0006]/a[at0009]/d"":""ELEMENT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0006]/a[at0009]/c/d"":""DV_DURATION"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0006]/a[at0009]/c/c"":""P4Y3M21D"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0006]/a[at0009]/c/l"":1.35926208E8,""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0006]/k"":""at0006"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0006]/f/d"":""DV_TEXT"",""/g[at0017]/a[openEHR-EHR-CLUSTER.timing_nondaily.v1]/a[at0006]/f/c"":""Specific event""}"
+13,openEHR-EHR-ACTION.medication.v1,ACTION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/a[openEHR-EHR-ACTION.medication.v1,'Medication statement']",{},{0},1,"{""/i[at0030]/a[at0103]/d"":""ELEMENT"",""/i[at0030]/a[at0103]/c/d"":""DV_IDENTIFIER"",""/i[at0030]/a[at0103]/c/4"":""Issuer"",""/i[at0030]/a[at0103]/c/6"":""Assigner"",""/i[at0030]/a[at0103]/c/5"":""9a0e5173-07c8-443d-b414-24432b9d95ca"",""/i[at0030]/a[at0103]/c/3"":""Prescription""}"
+14,openEHR-EHR-ACTION.medication.v1,ACTION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/a[openEHR-EHR-ACTION.medication.v1,'Medication statement']",{},{0},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""requester"",""/!p"":""DV_CODED_TEXT"",""/!l"":""face-to-face communication"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""216"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""199"",""/!a"":""HOSPITAL-NS"",""/!h"":""Dr. Marcus Johnson""}"
+15,openEHR-EHR-ACTION.medication.v1,ACTION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/a[openEHR-EHR-ACTION.medication.v1,'Medication statement']",{},{1},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""performer"",""/!p"":""DV_CODED_TEXT"",""/!l"":""not specified"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""193"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""198"",""/!a"":""HOSPITAL-NS"",""/!h"":""Lara Markham""}"
+16,openEHR-EHR-EVALUATION.exclusion_global.v1,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/a[openEHR-EHR-EVALUATION.exclusion_global.v1]",{},{},0,"{""/!5"":""EVALUATION"",""/b[at0001]/d"":""ITEM_TREE"",""/b[at0001]/a[at0002,'Global exclusion of medication use']/d"":""ELEMENT"",""/b[at0001]/a[at0002,'Global exclusion of medication use']/c/d"":""DV_TEXT"",""/b[at0001]/a[at0002,'Global exclusion of medication use']/c/c"":""No known medications"",""/b[at0001]/a[at0002,'Global exclusion of medication use']/f/d"":""DV_CODED_TEXT"",""/b[at0001]/a[at0002,'Global exclusion of medication use']/f/c"":""Global exclusion of medication use"",""/b[at0001]/a[at0002,'Global exclusion of medication use']/f/j/d"":""CODE_PHRASE"",""/b[at0001]/a[at0002,'Global exclusion of medication use']/f/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/a[at0002,'Global exclusion of medication use']/f/j/m/c"":""local"",""/b[at0001]/a[at0002,'Global exclusion of medication use']/f/j/r"":""at0005"",""/b[at0001]/k"":""at0001"",""/b[at0001]/f/d"":""DV_TEXT"",""/b[at0001]/f/c"":""Tree"",""/!2"":""openEHR-EHR-EVALUATION.exclusion_global.v1"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""en"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-EVALUATION.exclusion_global.v1"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!r"":""DV_TEXT"",""/!1"":""Exclusion - global"",""/!0"":""PARTY_SELF""}"
+17,openEHR-EHR-EVALUATION.exclusion_global.v1,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/a[openEHR-EHR-EVALUATION.exclusion_global.v1]",{},{0},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""requester"",""/!p"":""DV_CODED_TEXT"",""/!l"":""face-to-face communication"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""216"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""199"",""/!a"":""HOSPITAL-NS"",""/!h"":""Dr. Marcus Johnson""}"
+18,openEHR-EHR-EVALUATION.exclusion_global.v1,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/a[openEHR-EHR-EVALUATION.exclusion_global.v1]",{},{1},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""performer"",""/!p"":""DV_CODED_TEXT"",""/!l"":""not specified"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""193"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""198"",""/!a"":""HOSPITAL-NS"",""/!h"":""Lara Markham""}"
+19,openEHR-EHR-EVALUATION.absence.v2,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/a[openEHR-EHR-EVALUATION.absence.v2]",{},{},0,"{""/!5"":""EVALUATION"",""/b[at0001]/d"":""ITEM_TREE"",""/b[at0001]/a[at0002]/d"":""ELEMENT"",""/b[at0001]/a[at0002]/c/d"":""DV_TEXT"",""/b[at0001]/a[at0002]/c/c"":""No information about medications"",""/b[at0001]/k"":""at0001"",""/b[at0001]/f/d"":""DV_TEXT"",""/b[at0001]/f/c"":""Tree"",""/i[at0003]/d"":""ITEM_TREE"",""/i[at0003]/a[at0004]/d"":""ELEMENT"",""/i[at0003]/a[at0004]/c/d"":""DV_DATE_TIME"",""/i[at0003]/a[at0004]/c/c"":""2021-12-03T16:05:19.513988+01:00"",""/i[at0003]/a[at0004]/c/l"":63774140719,""/i[at0003]/k"":""at0003"",""/i[at0003]/f/d"":""DV_TEXT"",""/i[at0003]/f/c"":""Tree"",""/!2"":""openEHR-EHR-EVALUATION.absence.v2"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""en"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-EVALUATION.absence.v2"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!r"":""DV_TEXT"",""/!1"":""Absence of information"",""/!0"":""PARTY_SELF""}"
+20,openEHR-EHR-EVALUATION.absence.v2,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/a[openEHR-EHR-EVALUATION.absence.v2]",{},{0},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""requester"",""/!p"":""DV_CODED_TEXT"",""/!l"":""face-to-face communication"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""216"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""199"",""/!a"":""HOSPITAL-NS"",""/!h"":""Dr. Marcus Johnson""}"
+21,openEHR-EHR-EVALUATION.absence.v2,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Medication Summary']/a[openEHR-EHR-EVALUATION.absence.v2]",{},{1},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""performer"",""/!p"":""DV_CODED_TEXT"",""/!l"":""not specified"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""193"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""198"",""/!a"":""HOSPITAL-NS"",""/!h"":""Lara Markham""}"
+22,openEHR-EHR-EVALUATION.adverse_reaction_risk.v1,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Allergies & Intolerances']/a[openEHR-EHR-EVALUATION.adverse_reaction_risk.v1,'Allergy Intolerance']",{},{},0,"{""/!5"":""EVALUATION"",""/b[at0001]/d"":""ITEM_TREE"",""/b[at0001]/a[at0002]/d"":""ELEMENT"",""/b[at0001]/a[at0002]/c/d"":""DV_TEXT"",""/b[at0001]/a[at0002]/c/c"":""Substance 64"",""/b[at0001]/a[at0063,'Verification status']/d"":""ELEMENT"",""/b[at0001]/a[at0063,'Verification status']/c/d"":""DV_CODED_TEXT"",""/b[at0001]/a[at0063,'Verification status']/c/c"":""Refuted"",""/b[at0001]/a[at0063,'Verification status']/c/j/d"":""CODE_PHRASE"",""/b[at0001]/a[at0063,'Verification status']/c/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/a[at0063,'Verification status']/c/j/m/c"":""local"",""/b[at0001]/a[at0063,'Verification status']/c/j/r"":""at0066"",""/b[at0001]/a[at0063,'Verification status']/f/d"":""DV_TEXT"",""/b[at0001]/a[at0063,'Verification status']/f/c"":""Verification status"",""/b[at0001]/a[at0101]/d"":""ELEMENT"",""/b[at0001]/a[at0101]/c/d"":""DV_CODED_TEXT"",""/b[at0001]/a[at0101]/c/c"":""High"",""/b[at0001]/a[at0101]/c/j/d"":""CODE_PHRASE"",""/b[at0001]/a[at0101]/c/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/a[at0101]/c/j/m/c"":""local"",""/b[at0001]/a[at0101]/c/j/r"":""at0103"",""/b[at0001]/a[at0058,'Type']/d"":""ELEMENT"",""/b[at0001]/a[at0058,'Type']/c/d"":""DV_TEXT"",""/b[at0001]/a[at0058,'Type']/c/c"":""Allergy"",""/b[at0001]/a[at0058,'Type']/f/d"":""DV_TEXT"",""/b[at0001]/a[at0058,'Type']/f/c"":""Type"",""/b[at0001]/a[at0006]/d"":""ELEMENT"",""/b[at0001]/a[at0006]/c/d"":""DV_TEXT"",""/b[at0001]/a[at0006]/c/c"":""Comment 53"",""/b[at0001]/k"":""at0001"",""/b[at0001]/f/d"":""DV_TEXT"",""/b[at0001]/f/c"":""Tree"",""/i[at0042]/d"":""ITEM_TREE"",""/i[at0042]/a[at0062]/d"":""ELEMENT"",""/i[at0042]/a[at0062]/c/d"":""DV_DATE_TIME"",""/i[at0042]/a[at0062]/c/c"":""2021-12-03T16:05:19.514045+01:00"",""/i[at0042]/a[at0062]/c/l"":63774140719,""/i[at0042]/k"":""at0042"",""/i[at0042]/f/d"":""DV_TEXT"",""/i[at0042]/f/c"":""Tree"",""/!r"":""DV_TEXT"",""/!1"":""Allergy Intolerance"",""/!2"":""openEHR-EHR-EVALUATION.adverse_reaction_risk.v1"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""en"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-EVALUATION.adverse_reaction_risk.v1"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!0"":""PARTY_SELF""}"
+23,openEHR-EHR-EVALUATION.adverse_reaction_risk.v1,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Allergies & Intolerances']/a[openEHR-EHR-EVALUATION.adverse_reaction_risk.v1,'Allergy Intolerance']",{},{0},1,"{""/b[at0001]/a[at0009,'Reaction']/d"":""CLUSTER"",""/b[at0001]/a[at0009,'Reaction']/a[at0027,'Onset']/d"":""ELEMENT"",""/b[at0001]/a[at0009,'Reaction']/a[at0027,'Onset']/c/d"":""DV_DATE_TIME"",""/b[at0001]/a[at0009,'Reaction']/a[at0027,'Onset']/c/c"":""2021-12-03T16:05:19.514022+01:00"",""/b[at0001]/a[at0009,'Reaction']/a[at0027,'Onset']/c/l"":63774140719,""/b[at0001]/a[at0009,'Reaction']/a[at0027,'Onset']/f/d"":""DV_TEXT"",""/b[at0001]/a[at0009,'Reaction']/a[at0027,'Onset']/f/c"":""Onset"",""/b[at0001]/a[at0009,'Reaction']/a[at0089,'Severity']/d"":""ELEMENT"",""/b[at0001]/a[at0009,'Reaction']/a[at0089,'Severity']/c/d"":""DV_CODED_TEXT"",""/b[at0001]/a[at0009,'Reaction']/a[at0089,'Severity']/c/c"":""Severe"",""/b[at0001]/a[at0009,'Reaction']/a[at0089,'Severity']/c/j/d"":""CODE_PHRASE"",""/b[at0001]/a[at0009,'Reaction']/a[at0089,'Severity']/c/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/a[at0009,'Reaction']/a[at0089,'Severity']/c/j/m/c"":""local"",""/b[at0001]/a[at0009,'Reaction']/a[at0089,'Severity']/c/j/r"":""at0090"",""/b[at0001]/a[at0009,'Reaction']/a[at0089,'Severity']/f/d"":""DV_TEXT"",""/b[at0001]/a[at0009,'Reaction']/a[at0089,'Severity']/f/c"":""Severity"",""/b[at0001]/a[at0009,'Reaction']/f/d"":""DV_TEXT"",""/b[at0001]/a[at0009,'Reaction']/f/c"":""Reaction"",""/b[at0001]/a[at0009,'Reaction']/k"":""at0009""}"
+24,openEHR-EHR-EVALUATION.adverse_reaction_risk.v1,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Allergies & Intolerances']/a[openEHR-EHR-EVALUATION.adverse_reaction_risk.v1,'Allergy Intolerance']",{},"{0,0}",2,"{""/b[at0001]/a[at0009,'Reaction']/a[at0011]/d"":""ELEMENT"",""/b[at0001]/a[at0009,'Reaction']/a[at0011]/c/d"":""DV_TEXT"",""/b[at0001]/a[at0009,'Reaction']/a[at0011]/c/c"":""Manifestation 20""}"
+25,openEHR-EHR-EVALUATION.adverse_reaction_risk.v1,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Allergies & Intolerances']/a[openEHR-EHR-EVALUATION.adverse_reaction_risk.v1,'Allergy Intolerance']",{},{0},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""requester"",""/!p"":""DV_CODED_TEXT"",""/!l"":""face-to-face communication"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""216"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""199"",""/!a"":""HOSPITAL-NS"",""/!h"":""Dr. Marcus Johnson""}"
+26,openEHR-EHR-EVALUATION.adverse_reaction_risk.v1,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Allergies & Intolerances']/a[openEHR-EHR-EVALUATION.adverse_reaction_risk.v1,'Allergy Intolerance']",{},{1},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""performer"",""/!p"":""DV_CODED_TEXT"",""/!l"":""not specified"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""193"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""198"",""/!a"":""HOSPITAL-NS"",""/!h"":""Lara Markham""}"
+27,openEHR-EHR-EVALUATION.exclusion_global.v1,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Allergies & Intolerances']/a[openEHR-EHR-EVALUATION.exclusion_global.v1]",{},{},0,"{""/!5"":""EVALUATION"",""/b[at0001]/d"":""ITEM_TREE"",""/b[at0001]/a[at0002,'Global exclusion of adverse reactions']/d"":""ELEMENT"",""/b[at0001]/a[at0002,'Global exclusion of adverse reactions']/c/d"":""DV_TEXT"",""/b[at0001]/a[at0002,'Global exclusion of adverse reactions']/c/c"":""No known environmental allergies"",""/b[at0001]/a[at0002,'Global exclusion of adverse reactions']/f/d"":""DV_CODED_TEXT"",""/b[at0001]/a[at0002,'Global exclusion of adverse reactions']/f/c"":""Global exclusion of adverse reactions"",""/b[at0001]/a[at0002,'Global exclusion of adverse reactions']/f/j/d"":""CODE_PHRASE"",""/b[at0001]/a[at0002,'Global exclusion of adverse reactions']/f/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/a[at0002,'Global exclusion of adverse reactions']/f/j/m/c"":""local"",""/b[at0001]/a[at0002,'Global exclusion of adverse reactions']/f/j/r"":""at0007"",""/b[at0001]/k"":""at0001"",""/b[at0001]/f/d"":""DV_TEXT"",""/b[at0001]/f/c"":""Tree"",""/!2"":""openEHR-EHR-EVALUATION.exclusion_global.v1"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""en"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-EVALUATION.exclusion_global.v1"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!r"":""DV_TEXT"",""/!1"":""Exclusion - global"",""/!0"":""PARTY_SELF""}"
+28,openEHR-EHR-EVALUATION.exclusion_global.v1,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Allergies & Intolerances']/a[openEHR-EHR-EVALUATION.exclusion_global.v1]",{},{0},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""requester"",""/!p"":""DV_CODED_TEXT"",""/!l"":""face-to-face communication"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""216"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""199"",""/!a"":""HOSPITAL-NS"",""/!h"":""Dr. Marcus Johnson""}"
+29,openEHR-EHR-EVALUATION.exclusion_global.v1,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Allergies & Intolerances']/a[openEHR-EHR-EVALUATION.exclusion_global.v1]",{},{1},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""performer"",""/!p"":""DV_CODED_TEXT"",""/!l"":""not specified"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""193"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""198"",""/!a"":""HOSPITAL-NS"",""/!h"":""Lara Markham""}"
+30,openEHR-EHR-EVALUATION.absence.v2,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Allergies & Intolerances']/a[openEHR-EHR-EVALUATION.absence.v2]",{},{},0,"{""/!5"":""EVALUATION"",""/b[at0001]/d"":""ITEM_TREE"",""/b[at0001]/a[at0002]/d"":""ELEMENT"",""/b[at0001]/a[at0002]/c/d"":""DV_TEXT"",""/b[at0001]/a[at0002]/c/c"":""No information about allergies"",""/b[at0001]/k"":""at0001"",""/b[at0001]/f/d"":""DV_TEXT"",""/b[at0001]/f/c"":""Tree"",""/i[at0003]/d"":""ITEM_TREE"",""/i[at0003]/a[at0004]/d"":""ELEMENT"",""/i[at0003]/a[at0004]/c/d"":""DV_DATE_TIME"",""/i[at0003]/a[at0004]/c/c"":""2021-12-03T16:05:19.514071+01:00"",""/i[at0003]/a[at0004]/c/l"":63774140719,""/i[at0003]/k"":""at0003"",""/i[at0003]/f/d"":""DV_TEXT"",""/i[at0003]/f/c"":""Tree"",""/!2"":""openEHR-EHR-EVALUATION.absence.v2"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""en"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-EVALUATION.absence.v2"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!r"":""DV_TEXT"",""/!1"":""Absence of information"",""/!0"":""PARTY_SELF""}"
+31,openEHR-EHR-EVALUATION.absence.v2,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Allergies & Intolerances']/a[openEHR-EHR-EVALUATION.absence.v2]",{},{0},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""requester"",""/!p"":""DV_CODED_TEXT"",""/!l"":""face-to-face communication"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""216"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""199"",""/!a"":""HOSPITAL-NS"",""/!h"":""Dr. Marcus Johnson""}"
+32,openEHR-EHR-EVALUATION.absence.v2,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Allergies & Intolerances']/a[openEHR-EHR-EVALUATION.absence.v2]",{},{1},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""performer"",""/!p"":""DV_CODED_TEXT"",""/!l"":""not specified"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""193"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""198"",""/!a"":""HOSPITAL-NS"",""/!h"":""Lara Markham""}"
+33,openEHR-EHR-EVALUATION.problem_diagnosis.v1,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Problem List']/a[openEHR-EHR-EVALUATION.problem_diagnosis.v1]",{},{},0,"{""/!5"":""EVALUATION"",""/b[at0001]/d"":""ITEM_TREE"",""/b[at0001]/a[at0002]/d"":""ELEMENT"",""/b[at0001]/a[at0002]/c/d"":""DV_TEXT"",""/b[at0001]/a[at0002]/c/c"":""Problem/Diagnosis name 23"",""/b[at0001]/a[at0077]/d"":""ELEMENT"",""/b[at0001]/a[at0077]/c/d"":""DV_DATE_TIME"",""/b[at0001]/a[at0077]/c/c"":""2021-12-03T16:05:19.514097+01:00"",""/b[at0001]/a[at0077]/c/l"":63774140719,""/b[at0001]/a[at0005]/d"":""ELEMENT"",""/b[at0001]/a[at0005]/c/d"":""DV_CODED_TEXT"",""/b[at0001]/a[at0005]/c/c"":""Moderate"",""/b[at0001]/a[at0005]/c/j/d"":""CODE_PHRASE"",""/b[at0001]/a[at0005]/c/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/a[at0005]/c/j/m/c"":""local"",""/b[at0001]/a[at0005]/c/j/r"":""at0048"",""/b[at0001]/a[at0030,'Date of abatement']/d"":""ELEMENT"",""/b[at0001]/a[at0030,'Date of abatement']/c/d"":""DV_DATE_TIME"",""/b[at0001]/a[at0030,'Date of abatement']/c/c"":""2021-12-03T16:05:19.514119+01:00"",""/b[at0001]/a[at0030,'Date of abatement']/c/l"":63774140719,""/b[at0001]/a[at0030,'Date of abatement']/f/d"":""DV_TEXT"",""/b[at0001]/a[at0030,'Date of abatement']/f/c"":""Date of abatement"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/d"":""CLUSTER"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0003]/d"":""ELEMENT"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0003]/c/d"":""DV_CODED_TEXT"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0003]/c/c"":""Inactive"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0003]/c/j/d"":""CODE_PHRASE"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0003]/c/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0003]/c/j/m/c"":""local"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0003]/c/j/r"":""at0027"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0083]/d"":""ELEMENT"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0083]/c/d"":""DV_CODED_TEXT"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0083]/c/c"":""Relapsed"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0083]/c/j/d"":""CODE_PHRASE"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0083]/c/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0083]/c/j/m/c"":""local"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0083]/c/j/r"":""at0097"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0089]/d"":""ELEMENT"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0089]/c/d"":""DV_CODED_TEXT"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0089]/c/c"":""In remission"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0089]/c/j/d"":""CODE_PHRASE"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0089]/c/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0089]/c/j/m/c"":""local"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0089]/c/j/r"":""at0090"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0071]/d"":""ELEMENT"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0071]/c/d"":""DV_CODED_TEXT"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0071]/c/c"":""Recurrence"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0071]/c/j/d"":""CODE_PHRASE"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0071]/c/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0071]/c/j/m/c"":""local"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0071]/c/j/r"":""at0096"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/n/z/c"":""openEHR-EHR-CLUSTER.problem_qualifier.v1"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/n/y"":""1.0.4"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/n/d"":""ARCHETYPED"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/k"":""openEHR-EHR-CLUSTER.problem_qualifier.v1"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/f/d"":""DV_TEXT"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/f/c"":""Problem/Diagnosis qualifier"",""/b[at0001]/a[at0073]/d"":""ELEMENT"",""/b[at0001]/a[at0073]/c/d"":""DV_CODED_TEXT"",""/b[at0001]/a[at0073]/c/c"":""Probable"",""/b[at0001]/a[at0073]/c/j/d"":""CODE_PHRASE"",""/b[at0001]/a[at0073]/c/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/a[at0073]/c/j/m/c"":""local"",""/b[at0001]/a[at0073]/c/j/r"":""at0075"",""/b[at0001]/k"":""at0001"",""/b[at0001]/f/d"":""DV_TEXT"",""/b[at0001]/f/c"":""structure"",""/i[at0032]/d"":""ITEM_TREE"",""/i[at0032]/a[at0070]/d"":""ELEMENT"",""/i[at0032]/a[at0070]/c/d"":""DV_DATE_TIME"",""/i[at0032]/a[at0070]/c/c"":""2021-12-03T16:05:19.514148+01:00"",""/i[at0032]/a[at0070]/c/l"":63774140719,""/i[at0032]/k"":""at0032"",""/i[at0032]/f/d"":""DV_TEXT"",""/i[at0032]/f/c"":""Tree"",""/!2"":""openEHR-EHR-EVALUATION.problem_diagnosis.v1"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""en"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-EVALUATION.problem_diagnosis.v1"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!r"":""DV_TEXT"",""/!1"":""Problem/Diagnosis"",""/!0"":""PARTY_SELF""}"
+34,openEHR-EHR-EVALUATION.problem_diagnosis.v1,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Problem List']/a[openEHR-EHR-EVALUATION.problem_diagnosis.v1]",{},{0},1,"{""/b[at0001]/a[at0012]/d"":""ELEMENT"",""/b[at0001]/a[at0012]/c/d"":""DV_TEXT"",""/b[at0001]/a[at0012]/c/c"":""Body site 31""}"
+35,openEHR-EHR-EVALUATION.problem_diagnosis.v1,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Problem List']/a[openEHR-EHR-EVALUATION.problem_diagnosis.v1]",{},{0},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""requester"",""/!p"":""DV_CODED_TEXT"",""/!l"":""face-to-face communication"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""216"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""199"",""/!a"":""HOSPITAL-NS"",""/!h"":""Dr. Marcus Johnson""}"
+36,openEHR-EHR-EVALUATION.problem_diagnosis.v1,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Problem List']/a[openEHR-EHR-EVALUATION.problem_diagnosis.v1]",{},{1},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""performer"",""/!p"":""DV_CODED_TEXT"",""/!l"":""not specified"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""193"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""198"",""/!a"":""HOSPITAL-NS"",""/!h"":""Lara Markham""}"
+37,openEHR-EHR-EVALUATION.exclusion_global.v1,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Problem List']/a[openEHR-EHR-EVALUATION.exclusion_global.v1]",{},{},0,"{""/!5"":""EVALUATION"",""/b[at0001]/d"":""ITEM_TREE"",""/b[at0001]/a[at0002,'Global exclusion of problems/diagnoses']/d"":""ELEMENT"",""/b[at0001]/a[at0002,'Global exclusion of problems/diagnoses']/c/d"":""DV_TEXT"",""/b[at0001]/a[at0002,'Global exclusion of problems/diagnoses']/c/c"":""No known problems"",""/b[at0001]/a[at0002,'Global exclusion of problems/diagnoses']/f/d"":""DV_CODED_TEXT"",""/b[at0001]/a[at0002,'Global exclusion of problems/diagnoses']/f/c"":""Global exclusion of problems/diagnoses"",""/b[at0001]/a[at0002,'Global exclusion of problems/diagnoses']/f/j/d"":""CODE_PHRASE"",""/b[at0001]/a[at0002,'Global exclusion of problems/diagnoses']/f/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/a[at0002,'Global exclusion of problems/diagnoses']/f/j/m/c"":""local"",""/b[at0001]/a[at0002,'Global exclusion of problems/diagnoses']/f/j/r"":""at0003"",""/b[at0001]/k"":""at0001"",""/b[at0001]/f/d"":""DV_TEXT"",""/b[at0001]/f/c"":""Tree"",""/!2"":""openEHR-EHR-EVALUATION.exclusion_global.v1"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""en"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-EVALUATION.exclusion_global.v1"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!r"":""DV_TEXT"",""/!1"":""Exclusion - global"",""/!0"":""PARTY_SELF""}"
+38,openEHR-EHR-EVALUATION.exclusion_global.v1,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Problem List']/a[openEHR-EHR-EVALUATION.exclusion_global.v1]",{},{0},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""requester"",""/!p"":""DV_CODED_TEXT"",""/!l"":""face-to-face communication"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""216"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""199"",""/!a"":""HOSPITAL-NS"",""/!h"":""Dr. Marcus Johnson""}"
+39,openEHR-EHR-EVALUATION.exclusion_global.v1,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Problem List']/a[openEHR-EHR-EVALUATION.exclusion_global.v1]",{},{1},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""performer"",""/!p"":""DV_CODED_TEXT"",""/!l"":""not specified"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""193"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""198"",""/!a"":""HOSPITAL-NS"",""/!h"":""Lara Markham""}"
+40,openEHR-EHR-EVALUATION.absence.v2,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Problem List']/a[openEHR-EHR-EVALUATION.absence.v2]",{},{},0,"{""/!5"":""EVALUATION"",""/b[at0001]/d"":""ITEM_TREE"",""/b[at0001]/a[at0002]/d"":""ELEMENT"",""/b[at0001]/a[at0002]/c/d"":""DV_TEXT"",""/b[at0001]/a[at0002]/c/c"":""No information about current problems"",""/b[at0001]/k"":""at0001"",""/b[at0001]/f/d"":""DV_TEXT"",""/b[at0001]/f/c"":""Tree"",""/i[at0003]/d"":""ITEM_TREE"",""/i[at0003]/a[at0004]/d"":""ELEMENT"",""/i[at0003]/a[at0004]/c/d"":""DV_DATE_TIME"",""/i[at0003]/a[at0004]/c/c"":""2021-12-03T16:05:19.514175+01:00"",""/i[at0003]/a[at0004]/c/l"":63774140719,""/i[at0003]/k"":""at0003"",""/i[at0003]/f/d"":""DV_TEXT"",""/i[at0003]/f/c"":""Tree"",""/!2"":""openEHR-EHR-EVALUATION.absence.v2"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""en"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-EVALUATION.absence.v2"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!r"":""DV_TEXT"",""/!1"":""Absence of information"",""/!0"":""PARTY_SELF""}"
+41,openEHR-EHR-EVALUATION.absence.v2,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Problem List']/a[openEHR-EHR-EVALUATION.absence.v2]",{},{0},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""requester"",""/!p"":""DV_CODED_TEXT"",""/!l"":""face-to-face communication"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""216"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""199"",""/!a"":""HOSPITAL-NS"",""/!h"":""Dr. Marcus Johnson""}"
+42,openEHR-EHR-EVALUATION.absence.v2,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Problem List']/a[openEHR-EHR-EVALUATION.absence.v2]",{},{1},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""performer"",""/!p"":""DV_CODED_TEXT"",""/!l"":""not specified"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""193"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""198"",""/!a"":""HOSPITAL-NS"",""/!h"":""Lara Markham""}"
+43,openEHR-EHR-ACTION.medication.v1,ACTION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Immunizations']/a[openEHR-EHR-ACTION.medication.v1,'Immunization statement']",{},{},0,"{""/!5"":""ACTION"",""/g[at0017]/d"":""ITEM_TREE"",""/g[at0017]/a[at0020,'Immunisation item']/d"":""ELEMENT"",""/g[at0017]/a[at0020,'Immunisation item']/c/d"":""DV_TEXT"",""/g[at0017]/a[at0020,'Immunisation item']/c/c"":""Immunisation item 11"",""/g[at0017]/a[at0020,'Immunisation item']/f/d"":""DV_TEXT"",""/g[at0017]/a[at0020,'Immunisation item']/f/c"":""Immunisation item"",""/g[at0017]/a[at0140]/d"":""CLUSTER"",""/g[at0017]/a[at0140]/a[at0147]/d"":""ELEMENT"",""/g[at0017]/a[at0140]/a[at0147]/c/d"":""DV_TEXT"",""/g[at0017]/a[at0140]/a[at0147]/c/c"":""Route 76"",""/g[at0017]/a[at0140]/a[at0141,'Target site']/d"":""ELEMENT"",""/g[at0017]/a[at0140]/a[at0141,'Target site']/c/d"":""DV_TEXT"",""/g[at0017]/a[at0140]/a[at0141,'Target site']/c/c"":""Target site 95"",""/g[at0017]/a[at0140]/a[at0141,'Target site']/f/d"":""DV_TEXT"",""/g[at0017]/a[at0140]/a[at0141,'Target site']/f/c"":""Target site"",""/g[at0017]/a[at0140]/k"":""at0140"",""/g[at0017]/a[at0140]/f/d"":""DV_TEXT"",""/g[at0017]/a[at0140]/f/c"":""Administration details"",""/g[at0017]/a[at0025]/d"":""ELEMENT"",""/g[at0017]/a[at0025]/c/d"":""DV_COUNT"",""/g[at0017]/a[at0025]/c/l"":8,""/g[at0017]/k"":""at0017"",""/g[at0017]/f/d"":""DV_TEXT"",""/g[at0017]/f/c"":""Tree"",""/!r"":""DV_TEXT"",""/!1"":""Immunization statement"",""/!2"":""openEHR-EHR-ACTION.medication.v1"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""en"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-ACTION.medication.v1"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!bi"":""DV_DATE_TIME"",""/!bl"":""2021-12-03T16:05:19.514212+01:00"",""/!bg"":63774140719,""/!bh"":""ISM_TRANSITION"",""/!bf"":""DV_CODED_TEXT"",""/!be"":""active"",""/!bm"":""CODE_PHRASE"",""/!bd"":""TERMINOLOGY_ID"",""/!bj"":""openehr"",""/!bk"":""245"",""/!0"":""PARTY_SELF""}"
+44,openEHR-EHR-ACTION.medication.v1,ACTION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Immunizations']/a[openEHR-EHR-ACTION.medication.v1,'Immunization statement']",{},{0},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""requester"",""/!p"":""DV_CODED_TEXT"",""/!l"":""face-to-face communication"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""216"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""199"",""/!a"":""HOSPITAL-NS"",""/!h"":""Dr. Marcus Johnson""}"
+45,openEHR-EHR-ACTION.medication.v1,ACTION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Immunizations']/a[openEHR-EHR-ACTION.medication.v1,'Immunization statement']",{},{1},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""performer"",""/!p"":""DV_CODED_TEXT"",""/!l"":""not specified"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""193"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""198"",""/!a"":""HOSPITAL-NS"",""/!h"":""Lara Markham""}"
+46,openEHR-EHR-EVALUATION.absence.v2,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Immunizations']/a[openEHR-EHR-EVALUATION.absence.v2]",{},{},0,"{""/!5"":""EVALUATION"",""/b[at0001]/d"":""ITEM_TREE"",""/b[at0001]/a[at0002]/d"":""ELEMENT"",""/b[at0001]/a[at0002]/c/d"":""DV_TEXT"",""/b[at0001]/a[at0002]/c/c"":""No information about immunizations"",""/b[at0001]/k"":""at0001"",""/b[at0001]/f/d"":""DV_TEXT"",""/b[at0001]/f/c"":""Tree"",""/i[at0003]/d"":""ITEM_TREE"",""/i[at0003]/a[at0004]/d"":""ELEMENT"",""/i[at0003]/a[at0004]/c/d"":""DV_DATE_TIME"",""/i[at0003]/a[at0004]/c/c"":""2021-12-03T16:05:19.514237+01:00"",""/i[at0003]/a[at0004]/c/l"":63774140719,""/i[at0003]/k"":""at0003"",""/i[at0003]/f/d"":""DV_TEXT"",""/i[at0003]/f/c"":""Tree"",""/!2"":""openEHR-EHR-EVALUATION.absence.v2"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""en"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-EVALUATION.absence.v2"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!r"":""DV_TEXT"",""/!1"":""Absence of information"",""/!0"":""PARTY_SELF""}"
+47,openEHR-EHR-EVALUATION.absence.v2,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Immunizations']/a[openEHR-EHR-EVALUATION.absence.v2]",{},{0},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""requester"",""/!p"":""DV_CODED_TEXT"",""/!l"":""face-to-face communication"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""216"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""199"",""/!a"":""HOSPITAL-NS"",""/!h"":""Dr. Marcus Johnson""}"
+48,openEHR-EHR-EVALUATION.absence.v2,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Immunizations']/a[openEHR-EHR-EVALUATION.absence.v2]",{},{1},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""performer"",""/!p"":""DV_CODED_TEXT"",""/!l"":""not specified"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""193"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""198"",""/!a"":""HOSPITAL-NS"",""/!h"":""Lara Markham""}"
+49,openEHR-EHR-ACTION.procedure.v1,ACTION,"/h[openEHR-EHR-SECTION.adhoc.v1,'History of Procedures']/a[openEHR-EHR-ACTION.procedure.v1]",{},{},0,"{""/!5"":""ACTION"",""/g[at0001]/d"":""ITEM_TREE"",""/g[at0001]/a[at0002]/d"":""ELEMENT"",""/g[at0001]/a[at0002]/c/d"":""DV_TEXT"",""/g[at0001]/a[at0002]/c/c"":""Procedure name 5"",""/g[at0001]/k"":""at0001"",""/g[at0001]/f/d"":""DV_TEXT"",""/g[at0001]/f/c"":""Tree"",""/!2"":""openEHR-EHR-ACTION.procedure.v1"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""en"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-ACTION.procedure.v1"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!r"":""DV_TEXT"",""/!1"":""Procedure"",""/!bi"":""DV_DATE_TIME"",""/!bl"":""2021-12-03T16:05:19.514267+01:00"",""/!bg"":63774140719,""/!bh"":""ISM_TRANSITION"",""/!bf"":""DV_CODED_TEXT"",""/!be"":""planned"",""/!bm"":""CODE_PHRASE"",""/!bd"":""TERMINOLOGY_ID"",""/!bj"":""openehr"",""/!bk"":""526"",""/!0"":""PARTY_SELF""}"
+50,openEHR-EHR-ACTION.procedure.v1,ACTION,"/h[openEHR-EHR-SECTION.adhoc.v1,'History of Procedures']/a[openEHR-EHR-ACTION.procedure.v1]",{},{0},1,"{""/g[at0001]/a[at0063]/d"":""ELEMENT"",""/g[at0001]/a[at0063]/c/d"":""DV_TEXT"",""/g[at0001]/a[at0063]/c/c"":""Body site 65""}"
+51,openEHR-EHR-ACTION.procedure.v1,ACTION,"/h[openEHR-EHR-SECTION.adhoc.v1,'History of Procedures']/a[openEHR-EHR-ACTION.procedure.v1]",{},{0},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""requester"",""/!p"":""DV_CODED_TEXT"",""/!l"":""face-to-face communication"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""216"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""199"",""/!a"":""HOSPITAL-NS"",""/!h"":""Dr. Marcus Johnson""}"
+52,openEHR-EHR-ACTION.procedure.v1,ACTION,"/h[openEHR-EHR-SECTION.adhoc.v1,'History of Procedures']/a[openEHR-EHR-ACTION.procedure.v1]",{},{1},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""performer"",""/!p"":""DV_CODED_TEXT"",""/!l"":""not specified"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""193"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""198"",""/!a"":""HOSPITAL-NS"",""/!h"":""Lara Markham""}"
+53,openEHR-EHR-EVALUATION.absence.v2,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'History of Procedures']/a[openEHR-EHR-EVALUATION.absence.v2]",{},{},0,"{""/!5"":""EVALUATION"",""/b[at0001]/d"":""ITEM_TREE"",""/b[at0001]/a[at0002]/d"":""ELEMENT"",""/b[at0001]/a[at0002]/c/d"":""DV_TEXT"",""/b[at0001]/a[at0002]/c/c"":""No information about past history of procedures"",""/b[at0001]/k"":""at0001"",""/b[at0001]/f/d"":""DV_TEXT"",""/b[at0001]/f/c"":""Tree"",""/i[at0003]/d"":""ITEM_TREE"",""/i[at0003]/a[at0004]/d"":""ELEMENT"",""/i[at0003]/a[at0004]/c/d"":""DV_DATE_TIME"",""/i[at0003]/a[at0004]/c/c"":""2021-12-03T16:05:19.514291+01:00"",""/i[at0003]/a[at0004]/c/l"":63774140719,""/i[at0003]/k"":""at0003"",""/i[at0003]/f/d"":""DV_TEXT"",""/i[at0003]/f/c"":""Tree"",""/!2"":""openEHR-EHR-EVALUATION.absence.v2"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""en"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-EVALUATION.absence.v2"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!r"":""DV_TEXT"",""/!1"":""Absence of information"",""/!0"":""PARTY_SELF""}"
+54,openEHR-EHR-EVALUATION.absence.v2,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'History of Procedures']/a[openEHR-EHR-EVALUATION.absence.v2]",{},{0},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""requester"",""/!p"":""DV_CODED_TEXT"",""/!l"":""face-to-face communication"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""216"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""199"",""/!a"":""HOSPITAL-NS"",""/!h"":""Dr. Marcus Johnson""}"
+55,openEHR-EHR-EVALUATION.absence.v2,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'History of Procedures']/a[openEHR-EHR-EVALUATION.absence.v2]",{},{1},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""performer"",""/!p"":""DV_CODED_TEXT"",""/!l"":""not specified"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""193"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""198"",""/!a"":""HOSPITAL-NS"",""/!h"":""Lara Markham""}"
+56,openEHR-EHR-EVALUATION.exclusion_global.v1,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'History of Procedures']/a[openEHR-EHR-EVALUATION.exclusion_global.v1]",{},{},0,"{""/!5"":""EVALUATION"",""/b[at0001]/d"":""ITEM_TREE"",""/b[at0001]/a[at0002,'Global exclusion of procedures']/d"":""ELEMENT"",""/b[at0001]/a[at0002,'Global exclusion of procedures']/c/d"":""DV_TEXT"",""/b[at0001]/a[at0002,'Global exclusion of procedures']/c/c"":""No known procedures"",""/b[at0001]/a[at0002,'Global exclusion of procedures']/f/d"":""DV_CODED_TEXT"",""/b[at0001]/a[at0002,'Global exclusion of procedures']/f/c"":""Global exclusion of procedures"",""/b[at0001]/a[at0002,'Global exclusion of procedures']/f/j/d"":""CODE_PHRASE"",""/b[at0001]/a[at0002,'Global exclusion of procedures']/f/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/a[at0002,'Global exclusion of procedures']/f/j/m/c"":""local"",""/b[at0001]/a[at0002,'Global exclusion of procedures']/f/j/r"":""at0006"",""/b[at0001]/k"":""at0001"",""/b[at0001]/f/d"":""DV_TEXT"",""/b[at0001]/f/c"":""Tree"",""/!2"":""openEHR-EHR-EVALUATION.exclusion_global.v1"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""en"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-EVALUATION.exclusion_global.v1"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!r"":""DV_TEXT"",""/!1"":""Exclusion - global"",""/!0"":""PARTY_SELF""}"
+57,openEHR-EHR-EVALUATION.exclusion_global.v1,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'History of Procedures']/a[openEHR-EHR-EVALUATION.exclusion_global.v1]",{},{0},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""requester"",""/!p"":""DV_CODED_TEXT"",""/!l"":""face-to-face communication"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""216"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""199"",""/!a"":""HOSPITAL-NS"",""/!h"":""Dr. Marcus Johnson""}"
+58,openEHR-EHR-EVALUATION.exclusion_global.v1,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'History of Procedures']/a[openEHR-EHR-EVALUATION.exclusion_global.v1]",{},{1},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""performer"",""/!p"":""DV_CODED_TEXT"",""/!l"":""not specified"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""193"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""198"",""/!a"":""HOSPITAL-NS"",""/!h"":""Lara Markham""}"
+59,openEHR-EHR-EVALUATION.device_summary.v0,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Medical Devices']/a[openEHR-EHR-EVALUATION.device_summary.v0,'Device use statement']",{},{},0,"{""/!5"":""EVALUATION"",""/b[at0001]/d"":""ITEM_TREE"",""/b[at0001]/k"":""at0001"",""/b[at0001]/f/d"":""DV_TEXT"",""/b[at0001]/f/c"":""Tree"",""/!r"":""DV_TEXT"",""/!1"":""Device use statement"",""/!2"":""openEHR-EHR-EVALUATION.device_summary.v0"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""en"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-EVALUATION.device_summary.v0"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!0"":""PARTY_SELF""}"
+60,openEHR-EHR-EVALUATION.device_summary.v0,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Medical Devices']/a[openEHR-EHR-EVALUATION.device_summary.v0,'Device use statement']",{},{0},1,"{""/b[at0001]/a[at0022]/d"":""CLUSTER"",""/b[at0001]/a[at0022]/a[at0007]/d"":""ELEMENT"",""/b[at0001]/a[at0022]/a[at0007]/c/d"":""DV_TEXT"",""/b[at0001]/a[at0022]/a[at0007]/c/c"":""Device name 57"",""/b[at0001]/a[at0022]/a[at0012]/d"":""ELEMENT"",""/b[at0001]/a[at0022]/a[at0012]/c/d"":""DV_TEXT"",""/b[at0001]/a[at0022]/a[at0012]/c/c"":""Body site 62"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/d"":""CLUSTER"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0001]/d"":""ELEMENT"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0001]/c/d"":""DV_TEXT"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0001]/c/c"":""Device name 78"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0003]/d"":""ELEMENT"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0003]/c/d"":""DV_TEXT"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0003]/c/c"":""Type 30"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0002]/d"":""ELEMENT"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0002]/c/d"":""DV_TEXT"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0002]/c/c"":""Description 82"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0021]/d"":""ELEMENT"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0021]/c/d"":""DV_IDENTIFIER"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0021]/c/4"":""Issuer"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0021]/c/6"":""Assigner"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0021]/c/5"":""73b166ae-1c28-4ce0-8c08-a9587d8fd95a"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0021]/c/3"":""Prescription"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0004]/d"":""ELEMENT"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0004]/c/d"":""DV_TEXT"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0004]/c/c"":""Manufacturer 71"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0005]/d"":""ELEMENT"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0005]/c/d"":""DV_DATE_TIME"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0005]/c/c"":""2021-12-03T16:05:19.514334+01:00"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0005]/c/l"":63774140719,""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0020]/d"":""ELEMENT"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0020]/c/d"":""DV_TEXT"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0020]/c/c"":""Serial number 12"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0022]/d"":""ELEMENT"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0022]/c/d"":""DV_TEXT"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0022]/c/c"":""Catalogue number 39"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0023]/d"":""ELEMENT"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0023]/c/d"":""DV_TEXT"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0023]/c/c"":""Model number 8"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0006]/d"":""ELEMENT"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0006]/c/d"":""DV_TEXT"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0006]/c/c"":""Batch/Lot number 52"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0025]/d"":""ELEMENT"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0025]/c/d"":""DV_TEXT"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0025]/c/c"":""Software version 16"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0007]/d"":""ELEMENT"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0007]/c/d"":""DV_DATE_TIME"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0007]/c/c"":""2021-12-03T16:05:19.514362+01:00"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0007]/c/l"":63774140719,""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0008]/d"":""ELEMENT"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0008]/c/d"":""DV_TEXT"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0008]/c/c"":""Comment 41"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/n/z/c"":""openEHR-EHR-CLUSTER.device.v1"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/n/y"":""1.0.4"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/n/d"":""ARCHETYPED"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/k"":""openEHR-EHR-CLUSTER.device.v1"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/f/d"":""DV_TEXT"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/f/c"":""Medical device"",""/b[at0001]/a[at0022]/k"":""at0022"",""/b[at0001]/a[at0022]/f/d"":""DV_TEXT"",""/b[at0001]/a[at0022]/f/c"":""Device details""}"
+61,openEHR-EHR-EVALUATION.device_summary.v0,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Medical Devices']/a[openEHR-EHR-EVALUATION.device_summary.v0,'Device use statement']",{},"{0,0}",2,"{""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0024]/d"":""ELEMENT"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0024]/c/d"":""DV_IDENTIFIER"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0024]/c/4"":""Issuer"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0024]/c/6"":""Assigner"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0024]/c/5"":""60287ff3-ec0f-4cd5-9000-2c05af2e6a84"",""/b[at0001]/a[at0022]/a[openEHR-EHR-CLUSTER.device.v1]/a[at0024]/c/3"":""Prescription""}"
+62,openEHR-EHR-EVALUATION.device_summary.v0,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Medical Devices']/a[openEHR-EHR-EVALUATION.device_summary.v0,'Device use statement']",{},{0},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""requester"",""/!p"":""DV_CODED_TEXT"",""/!l"":""face-to-face communication"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""216"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""199"",""/!a"":""HOSPITAL-NS"",""/!h"":""Dr. Marcus Johnson""}"
+63,openEHR-EHR-EVALUATION.device_summary.v0,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Medical Devices']/a[openEHR-EHR-EVALUATION.device_summary.v0,'Device use statement']",{},{1},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""performer"",""/!p"":""DV_CODED_TEXT"",""/!l"":""not specified"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""193"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""198"",""/!a"":""HOSPITAL-NS"",""/!h"":""Lara Markham""}"
+64,openEHR-EHR-OBSERVATION.laboratory_test_result.v1,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/a[openEHR-EHR-OBSERVATION.laboratory_test_result.v1]",{},{},0,"{""/!5"":""OBSERVATION"",""/b[at0001]/d"":""HISTORY"",""/b[at0001]/k"":""at0001"",""/b[at0001]/o/d"":""DV_DATE_TIME"",""/b[at0001]/o/c"":""2021-12-03T17:34:06.849379+01:00"",""/b[at0001]/o/l"":63774146046,""/b[at0001]/f/d"":""DV_TEXT"",""/b[at0001]/f/c"":""Event Series"",""/!2"":""openEHR-EHR-OBSERVATION.laboratory_test_result.v1"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""en"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-OBSERVATION.laboratory_test_result.v1"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!r"":""DV_TEXT"",""/!1"":""Laboratory test result"",""/!0"":""PARTY_SELF""}"
+65,openEHR-EHR-OBSERVATION.laboratory_test_result.v1,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/a[openEHR-EHR-OBSERVATION.laboratory_test_result.v1]",{},{0},1,"{""/b[at0001]/e[at0002]/d"":""POINT_EVENT"",""/b[at0001]/e[at0002]/b[at0003]/d"":""ITEM_TREE"",""/b[at0001]/e[at0002]/b[at0003]/a[at0005]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0005]/c/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0005]/c/c"":""Test name 22"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.specimen.v1]/d"":""CLUSTER"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.specimen.v1]/a[at0029]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.specimen.v1]/a[at0029]/c/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.specimen.v1]/a[at0029]/c/c"":""Specimen type 42"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.specimen.v1]/a[at0007,'Method']/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.specimen.v1]/a[at0007,'Method']/c/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.specimen.v1]/a[at0007,'Method']/c/c"":""Method 30"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.specimen.v1]/a[at0007,'Method']/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.specimen.v1]/a[at0007,'Method']/f/c"":""Method"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.specimen.v1]/a[at0087,'Body site']/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.specimen.v1]/a[at0087,'Body site']/c/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.specimen.v1]/a[at0087,'Body site']/c/c"":""Body site 14"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.specimen.v1]/a[at0087,'Body site']/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.specimen.v1]/a[at0087,'Body site']/f/c"":""Body site"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.specimen.v1]/n/z/c"":""openEHR-EHR-CLUSTER.specimen.v1"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.specimen.v1]/n/y"":""1.0.4"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.specimen.v1]/n/d"":""ARCHETYPED"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.specimen.v1]/k"":""openEHR-EHR-CLUSTER.specimen.v1"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.specimen.v1]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.specimen.v1]/f/c"":""Specimen"",""/b[at0001]/e[at0002]/b[at0003]/a[at0077]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0077]/c/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0077]/c/c"":""Laboratory"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.laboratory_test_analyte.v1]/d"":""CLUSTER"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.laboratory_test_analyte.v1]/a[at0024]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.laboratory_test_analyte.v1]/a[at0024]/c/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.laboratory_test_analyte.v1]/a[at0024]/c/c"":""Analyte name 79"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.laboratory_test_analyte.v1]/n/z/c"":""openEHR-EHR-CLUSTER.laboratory_test_analyte.v1"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.laboratory_test_analyte.v1]/n/y"":""1.0.4"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.laboratory_test_analyte.v1]/n/d"":""ARCHETYPED"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.laboratory_test_analyte.v1]/k"":""openEHR-EHR-CLUSTER.laboratory_test_analyte.v1"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.laboratory_test_analyte.v1]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.laboratory_test_analyte.v1]/f/c"":""Laboratory analyte result"",""/b[at0001]/e[at0002]/b[at0003]/a[at0057,'Interpretation']/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0057,'Interpretation']/c/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0057,'Interpretation']/c/c"":""Interpretation 32"",""/b[at0001]/e[at0002]/b[at0003]/a[at0057,'Interpretation']/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0057,'Interpretation']/f/c"":""Interpretation"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.multimedia_source.v0]/d"":""CLUSTER"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.multimedia_source.v0]/a[at0002]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.multimedia_source.v0]/a[at0002]/c/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.multimedia_source.v0]/a[at0002]/c/c"":""Resource name 96"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.multimedia_source.v0]/a[at0001]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.multimedia_source.v0]/a[at0001]/c/d"":""DV_MULTIMEDIA"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.multimedia_source.v0]/a[at0001]/c/0"":""alternate text"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.multimedia_source.v0]/a[at0001]/c/8/d"":""DV_URI"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.multimedia_source.v0]/a[at0001]/c/8/c"":""http://med.tube.com/sample"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.multimedia_source.v0]/a[at0001]/c/2/d"":""CODE_PHRASE"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.multimedia_source.v0]/a[at0001]/c/2/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.multimedia_source.v0]/a[at0001]/c/2/m/c"":""IANA_media-types"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.multimedia_source.v0]/a[at0001]/c/2/r"":""video/MPV"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.multimedia_source.v0]/a[at0001]/c/ba"":504903212,""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.multimedia_source.v0]/n/z/c"":""openEHR-EHR-CLUSTER.multimedia_source.v0"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.multimedia_source.v0]/n/y"":""1.0.4"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.multimedia_source.v0]/n/d"":""ARCHETYPED"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.multimedia_source.v0]/k"":""openEHR-EHR-CLUSTER.multimedia_source.v0"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.multimedia_source.v0]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.multimedia_source.v0]/f/c"":""Multimedia source"",""/b[at0001]/e[at0002]/b[at0003]/k"":""at0003"",""/b[at0001]/e[at0002]/b[at0003]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/f/c"":""Tree"",""/b[at0001]/e[at0002]/k"":""at0002"",""/b[at0001]/e[at0002]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/f/c"":""Any event"",""/b[at0001]/e[at0002]/p/d"":""DV_DATE_TIME"",""/b[at0001]/e[at0002]/p/c"":""2021-12-03T17:34:06.849379+01:00"",""/b[at0001]/e[at0002]/p/l"":63774146046}"
+66,openEHR-EHR-OBSERVATION.laboratory_test_result.v1,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/a[openEHR-EHR-OBSERVATION.laboratory_test_result.v1]",{},{0},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""requester"",""/!p"":""DV_CODED_TEXT"",""/!l"":""face-to-face communication"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""216"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""199"",""/!a"":""HOSPITAL-NS"",""/!h"":""Dr. Marcus Johnson""}"
+67,openEHR-EHR-OBSERVATION.laboratory_test_result.v1,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/a[openEHR-EHR-OBSERVATION.laboratory_test_result.v1]",{},{1},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""performer"",""/!p"":""DV_CODED_TEXT"",""/!l"":""not specified"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""193"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""198"",""/!a"":""HOSPITAL-NS"",""/!h"":""Lara Markham""}"
+68,openEHR-EHR-OBSERVATION.imaging_exam_result.v0,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/a[openEHR-EHR-OBSERVATION.imaging_exam_result.v0]",{},{},0,"{""/!5"":""OBSERVATION"",""/b[at0001]/d"":""HISTORY"",""/b[at0001]/k"":""at0001"",""/b[at0001]/o/d"":""DV_DATE_TIME"",""/b[at0001]/o/c"":""2021-12-03T17:34:06.849379+01:00"",""/b[at0001]/o/l"":63774146046,""/b[at0001]/f/d"":""DV_TEXT"",""/b[at0001]/f/c"":""Event Series"",""/i[at0025]/d"":""ITEM_TREE"",""/i[at0025]/a[at0049]/d"":""ELEMENT"",""/i[at0025]/a[at0049]/c/d"":""DV_TEXT"",""/i[at0025]/a[at0049]/c/c"":""Technique 82"",""/i[at0025]/a[at0057]/d"":""ELEMENT"",""/i[at0025]/a[at0057]/c/d"":""DV_TEXT"",""/i[at0025]/a[at0057]/c/c"":""Imaging quality 89"",""/i[at0025]/k"":""at0025"",""/i[at0025]/f/d"":""DV_TEXT"",""/i[at0025]/f/c"":""Tree"",""/!2"":""openEHR-EHR-OBSERVATION.imaging_exam_result.v0"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""en"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-OBSERVATION.imaging_exam_result.v0"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!r"":""DV_TEXT"",""/!1"":""Imaging examination result"",""/!0"":""PARTY_SELF""}"
+69,openEHR-EHR-OBSERVATION.imaging_exam_result.v0,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/a[openEHR-EHR-OBSERVATION.imaging_exam_result.v0]",{},{0},1,"{""/b[at0001]/e[at0002]/d"":""POINT_EVENT"",""/b[at0001]/e[at0002]/b[at0003]/d"":""ITEM_TREE"",""/b[at0001]/e[at0002]/b[at0003]/a[at0004]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0004]/c/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0004]/c/c"":""Test name 15"",""/b[at0001]/e[at0002]/b[at0003]/a[at0005]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0005]/c/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0005]/c/c"":""Modality 22"",""/b[at0001]/e[at0002]/b[at0003]/a[at0055]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0055]/c/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0055]/c/c"":""Anatomical site 35"",""/b[at0001]/e[at0002]/b[at0003]/a[at0007]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0007]/c/d"":""DV_CODED_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0007]/c/c"":""Registered"",""/b[at0001]/e[at0002]/b[at0003]/a[at0007]/c/j/d"":""CODE_PHRASE"",""/b[at0001]/e[at0002]/b[at0003]/a[at0007]/c/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/e[at0002]/b[at0003]/a[at0007]/c/j/m/c"":""local"",""/b[at0001]/e[at0002]/b[at0003]/a[at0007]/c/j/r"":""at0009"",""/b[at0001]/e[at0002]/b[at0003]/a[at0008]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0008]/c/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0008]/c/c"":""Findings 82"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.imaging_finding.v0]/d"":""CLUSTER"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.imaging_finding.v0]/a[at0024]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.imaging_finding.v0]/a[at0024]/c/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.imaging_finding.v0]/a[at0024]/c/c"":""Finding name 89"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.imaging_finding.v0]/a[at0033]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.imaging_finding.v0]/a[at0033]/c/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.imaging_finding.v0]/a[at0033]/c/c"":""Anatomical location 48"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.imaging_finding.v0]/a[at0028]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.imaging_finding.v0]/a[at0028]/c/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.imaging_finding.v0]/a[at0028]/c/c"":""Description 70"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.imaging_finding.v0]/a[at0029]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.imaging_finding.v0]/a[at0029]/c/d"":""DV_CODED_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.imaging_finding.v0]/a[at0029]/c/c"":""Improving"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.imaging_finding.v0]/a[at0029]/c/j/d"":""CODE_PHRASE"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.imaging_finding.v0]/a[at0029]/c/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.imaging_finding.v0]/a[at0029]/c/j/m/c"":""local"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.imaging_finding.v0]/a[at0029]/c/j/r"":""at0030"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.imaging_finding.v0]/n/z/c"":""openEHR-EHR-CLUSTER.imaging_finding.v0"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.imaging_finding.v0]/n/y"":""1.0.4"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.imaging_finding.v0]/n/d"":""ARCHETYPED"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.imaging_finding.v0]/k"":""openEHR-EHR-CLUSTER.imaging_finding.v0"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.imaging_finding.v0]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.imaging_finding.v0]/f/c"":""Imaging finding"",""/b[at0001]/e[at0002]/b[at0003]/a[at0056]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0056]/c/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0056]/c/c"":""Comparison with previous 93"",""/b[at0001]/e[at0002]/b[at0003]/a[at0021]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0021]/c/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0021]/c/c"":""Conclusion 70"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.multimedia_source.v0]/d"":""CLUSTER"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.multimedia_source.v0]/a[at0002]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.multimedia_source.v0]/a[at0002]/c/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.multimedia_source.v0]/a[at0002]/c/c"":""Resource name 71"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.multimedia_source.v0]/a[at0001]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.multimedia_source.v0]/a[at0001]/c/d"":""DV_MULTIMEDIA"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.multimedia_source.v0]/a[at0001]/c/0"":""alternate text"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.multimedia_source.v0]/a[at0001]/c/8/d"":""DV_URI"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.multimedia_source.v0]/a[at0001]/c/8/c"":""http://med.tube.com/sample"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.multimedia_source.v0]/a[at0001]/c/2/d"":""CODE_PHRASE"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.multimedia_source.v0]/a[at0001]/c/2/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.multimedia_source.v0]/a[at0001]/c/2/m/c"":""IANA_media-types"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.multimedia_source.v0]/a[at0001]/c/2/r"":""video/MPV"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.multimedia_source.v0]/a[at0001]/c/ba"":504903212,""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.multimedia_source.v0]/n/z/c"":""openEHR-EHR-CLUSTER.multimedia_source.v0"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.multimedia_source.v0]/n/y"":""1.0.4"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.multimedia_source.v0]/n/d"":""ARCHETYPED"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.multimedia_source.v0]/k"":""openEHR-EHR-CLUSTER.multimedia_source.v0"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.multimedia_source.v0]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.multimedia_source.v0]/f/c"":""Multimedia source"",""/b[at0001]/e[at0002]/b[at0003]/k"":""at0003"",""/b[at0001]/e[at0002]/b[at0003]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/f/c"":""Tree"",""/b[at0001]/e[at0002]/k"":""at0002"",""/b[at0001]/e[at0002]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/f/c"":""Any event"",""/b[at0001]/e[at0002]/p/d"":""DV_DATE_TIME"",""/b[at0001]/e[at0002]/p/c"":""2021-12-03T17:34:06.849379+01:00"",""/b[at0001]/e[at0002]/p/l"":63774146046}"
+70,openEHR-EHR-OBSERVATION.imaging_exam_result.v0,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/a[openEHR-EHR-OBSERVATION.imaging_exam_result.v0]",{},"{0,0}",2,"{""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.imaging_finding.v0]/a[at0001]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.imaging_finding.v0]/a[at0001]/c/d"":""DV_CODED_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.imaging_finding.v0]/a[at0001]/c/c"":""Absent"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.imaging_finding.v0]/a[at0001]/c/j/d"":""CODE_PHRASE"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.imaging_finding.v0]/a[at0001]/c/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.imaging_finding.v0]/a[at0001]/c/j/m/c"":""local"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.imaging_finding.v0]/a[at0001]/c/j/r"":""at0036""}"
+71,openEHR-EHR-OBSERVATION.imaging_exam_result.v0,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/a[openEHR-EHR-OBSERVATION.imaging_exam_result.v0]",{},"{0,0}",2,"{""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.imaging_finding.v0]/a[at0003]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.imaging_finding.v0]/a[at0003]/c/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[openEHR-EHR-CLUSTER.imaging_finding.v0]/a[at0003]/c/c"":""Comment 89""}"
+72,openEHR-EHR-OBSERVATION.imaging_exam_result.v0,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/a[openEHR-EHR-OBSERVATION.imaging_exam_result.v0]",{},"{0,0}",2,"{""/b[at0001]/e[at0002]/b[at0003]/a[at0058]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0058]/c/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0058]/c/c"":""Imaging differential diagnosis 20""}"
+73,openEHR-EHR-OBSERVATION.imaging_exam_result.v0,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/a[openEHR-EHR-OBSERVATION.imaging_exam_result.v0]",{},"{0,0}",2,"{""/b[at0001]/e[at0002]/b[at0003]/a[at0020]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0020]/c/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0020]/c/c"":""Imaging diagnosis 70""}"
+74,openEHR-EHR-OBSERVATION.imaging_exam_result.v0,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/a[openEHR-EHR-OBSERVATION.imaging_exam_result.v0]",{},{0},1,"{""/i[at0025]/a[at0027]/d"":""CLUSTER"",""/i[at0025]/a[at0027]/a[at0028]/d"":""ELEMENT"",""/i[at0025]/a[at0027]/a[at0028]/c/d"":""DV_IDENTIFIER"",""/i[at0025]/a[at0027]/a[at0028]/c/4"":""Issuer"",""/i[at0025]/a[at0027]/a[at0028]/c/6"":""Assigner"",""/i[at0025]/a[at0027]/a[at0028]/c/5"":""38a6687c-5136-4e75-9f1c-126e8f0e112b"",""/i[at0025]/a[at0027]/a[at0028]/c/3"":""Prescription"",""/i[at0025]/a[at0027]/a[at0031]/d"":""ELEMENT"",""/i[at0025]/a[at0027]/a[at0031]/c/d"":""DV_IDENTIFIER"",""/i[at0025]/a[at0027]/a[at0031]/c/4"":""Issuer"",""/i[at0025]/a[at0027]/a[at0031]/c/6"":""Assigner"",""/i[at0025]/a[at0027]/a[at0031]/c/5"":""9fc6db02-81de-4ec9-afe4-f365c42019e1"",""/i[at0025]/a[at0027]/a[at0031]/c/3"":""Prescription"",""/i[at0025]/a[at0027]/a[at0032]/d"":""ELEMENT"",""/i[at0025]/a[at0027]/a[at0032]/c/d"":""DV_URI"",""/i[at0025]/a[at0027]/a[at0032]/c/c"":""http://example.com/path/resource"",""/i[at0025]/a[at0027]/a[at0033]/d"":""ELEMENT"",""/i[at0025]/a[at0027]/a[at0033]/c/d"":""DV_IDENTIFIER"",""/i[at0025]/a[at0027]/a[at0033]/c/4"":""Issuer"",""/i[at0025]/a[at0027]/a[at0033]/c/6"":""Assigner"",""/i[at0025]/a[at0027]/a[at0033]/c/5"":""a147525c-4763-4070-ba22-26e6b33348f4"",""/i[at0025]/a[at0027]/a[at0033]/c/3"":""Prescription"",""/i[at0025]/a[at0027]/k"":""at0027"",""/i[at0025]/a[at0027]/f/d"":""DV_TEXT"",""/i[at0025]/a[at0027]/f/c"":""Examination request details""}"
+75,openEHR-EHR-OBSERVATION.imaging_exam_result.v0,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/a[openEHR-EHR-OBSERVATION.imaging_exam_result.v0]",{},"{0,0}",2,"{""/i[at0025]/a[at0027]/a[at0029]/d"":""ELEMENT"",""/i[at0025]/a[at0027]/a[at0029]/c/d"":""DV_TEXT"",""/i[at0025]/a[at0027]/a[at0029]/c/c"":""Examination requested name 96""}"
+76,openEHR-EHR-OBSERVATION.imaging_exam_result.v0,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/a[openEHR-EHR-OBSERVATION.imaging_exam_result.v0]",{},"{0,0}",2,"{""/i[at0025]/a[at0027]/a[at0034,'Reported image']/d"":""CLUSTER"",""/i[at0025]/a[at0027]/a[at0034,'Reported image']/a[at0035]/d"":""ELEMENT"",""/i[at0025]/a[at0027]/a[at0034,'Reported image']/a[at0035]/c/d"":""DV_IDENTIFIER"",""/i[at0025]/a[at0027]/a[at0034,'Reported image']/a[at0035]/c/4"":""Issuer"",""/i[at0025]/a[at0027]/a[at0034,'Reported image']/a[at0035]/c/6"":""Assigner"",""/i[at0025]/a[at0027]/a[at0034,'Reported image']/a[at0035]/c/5"":""5462ef5c-2275-47c2-8fb5-f9f1d7a19613"",""/i[at0025]/a[at0027]/a[at0034,'Reported image']/a[at0035]/c/3"":""Prescription"",""/i[at0025]/a[at0027]/a[at0034,'Reported image']/a[at0036]/d"":""ELEMENT"",""/i[at0025]/a[at0027]/a[at0034,'Reported image']/a[at0036]/c/d"":""DV_IDENTIFIER"",""/i[at0025]/a[at0027]/a[at0034,'Reported image']/a[at0036]/c/4"":""Issuer"",""/i[at0025]/a[at0027]/a[at0034,'Reported image']/a[at0036]/c/6"":""Assigner"",""/i[at0025]/a[at0027]/a[at0034,'Reported image']/a[at0036]/c/5"":""55dd86d7-52ff-4064-8dc7-f8d9b2bc22e7"",""/i[at0025]/a[at0027]/a[at0034,'Reported image']/a[at0036]/c/3"":""Prescription"",""/i[at0025]/a[at0027]/a[at0034,'Reported image']/a[at0037]/d"":""ELEMENT"",""/i[at0025]/a[at0027]/a[at0034,'Reported image']/a[at0037]/c/d"":""DV_TEXT"",""/i[at0025]/a[at0027]/a[at0034,'Reported image']/a[at0037]/c/c"":""View 36"",""/i[at0025]/a[at0027]/a[at0034,'Reported image']/a[at0038]/d"":""ELEMENT"",""/i[at0025]/a[at0027]/a[at0034,'Reported image']/a[at0038]/c/d"":""DV_TEXT"",""/i[at0025]/a[at0027]/a[at0034,'Reported image']/a[at0038]/c/c"":""Position 58"",""/i[at0025]/a[at0027]/a[at0034,'Reported image']/a[at0039]/d"":""ELEMENT"",""/i[at0025]/a[at0027]/a[at0034,'Reported image']/a[at0039]/c/d"":""DV_DATE_TIME"",""/i[at0025]/a[at0027]/a[at0034,'Reported image']/a[at0039]/c/c"":""2021-12-03T16:05:19.514482+01:00"",""/i[at0025]/a[at0027]/a[at0034,'Reported image']/a[at0039]/c/l"":63774140719,""/i[at0025]/a[at0027]/a[at0034,'Reported image']/a[at0040]/d"":""ELEMENT"",""/i[at0025]/a[at0027]/a[at0034,'Reported image']/a[at0040]/c/d"":""DV_MULTIMEDIA"",""/i[at0025]/a[at0027]/a[at0034,'Reported image']/a[at0040]/c/0"":""alternate text"",""/i[at0025]/a[at0027]/a[at0034,'Reported image']/a[at0040]/c/8/d"":""DV_URI"",""/i[at0025]/a[at0027]/a[at0034,'Reported image']/a[at0040]/c/8/c"":""http://med.tube.com/sample"",""/i[at0025]/a[at0027]/a[at0034,'Reported image']/a[at0040]/c/2/d"":""CODE_PHRASE"",""/i[at0025]/a[at0027]/a[at0034,'Reported image']/a[at0040]/c/2/m/d"":""TERMINOLOGY_ID"",""/i[at0025]/a[at0027]/a[at0034,'Reported image']/a[at0040]/c/2/m/c"":""IANA_media-types"",""/i[at0025]/a[at0027]/a[at0034,'Reported image']/a[at0040]/c/2/r"":""image/png"",""/i[at0025]/a[at0027]/a[at0034,'Reported image']/a[at0040]/c/ba"":504903212,""/i[at0025]/a[at0027]/a[at0034,'Reported image']/f/d"":""DV_CODED_TEXT"",""/i[at0025]/a[at0027]/a[at0034,'Reported image']/f/c"":""Reported image"",""/i[at0025]/a[at0027]/a[at0034,'Reported image']/f/j/d"":""CODE_PHRASE"",""/i[at0025]/a[at0027]/a[at0034,'Reported image']/f/j/m/d"":""TERMINOLOGY_ID"",""/i[at0025]/a[at0027]/a[at0034,'Reported image']/f/j/m/c"":""local"",""/i[at0025]/a[at0027]/a[at0034,'Reported image']/f/j/r"":""at0053"",""/i[at0025]/a[at0027]/a[at0034,'Reported image']/k"":""at0034""}"
+77,openEHR-EHR-OBSERVATION.imaging_exam_result.v0,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/a[openEHR-EHR-OBSERVATION.imaging_exam_result.v0]",{},"{0,0}",2,"{""/i[at0025]/a[at0027]/a[at0034,'Comparison image']/d"":""CLUSTER"",""/i[at0025]/a[at0027]/a[at0034,'Comparison image']/a[at0035]/d"":""ELEMENT"",""/i[at0025]/a[at0027]/a[at0034,'Comparison image']/a[at0035]/c/d"":""DV_IDENTIFIER"",""/i[at0025]/a[at0027]/a[at0034,'Comparison image']/a[at0035]/c/4"":""Issuer"",""/i[at0025]/a[at0027]/a[at0034,'Comparison image']/a[at0035]/c/6"":""Assigner"",""/i[at0025]/a[at0027]/a[at0034,'Comparison image']/a[at0035]/c/5"":""a6c20273-7b53-4c04-9b2c-2d4c218893b2"",""/i[at0025]/a[at0027]/a[at0034,'Comparison image']/a[at0035]/c/3"":""Prescription"",""/i[at0025]/a[at0027]/a[at0034,'Comparison image']/a[at0036]/d"":""ELEMENT"",""/i[at0025]/a[at0027]/a[at0034,'Comparison image']/a[at0036]/c/d"":""DV_IDENTIFIER"",""/i[at0025]/a[at0027]/a[at0034,'Comparison image']/a[at0036]/c/4"":""Issuer"",""/i[at0025]/a[at0027]/a[at0034,'Comparison image']/a[at0036]/c/6"":""Assigner"",""/i[at0025]/a[at0027]/a[at0034,'Comparison image']/a[at0036]/c/5"":""1ba8eff7-8f3f-4625-9432-05aa01726073"",""/i[at0025]/a[at0027]/a[at0034,'Comparison image']/a[at0036]/c/3"":""Prescription"",""/i[at0025]/a[at0027]/a[at0034,'Comparison image']/a[at0037]/d"":""ELEMENT"",""/i[at0025]/a[at0027]/a[at0034,'Comparison image']/a[at0037]/c/d"":""DV_TEXT"",""/i[at0025]/a[at0027]/a[at0034,'Comparison image']/a[at0037]/c/c"":""View 27"",""/i[at0025]/a[at0027]/a[at0034,'Comparison image']/a[at0038]/d"":""ELEMENT"",""/i[at0025]/a[at0027]/a[at0034,'Comparison image']/a[at0038]/c/d"":""DV_TEXT"",""/i[at0025]/a[at0027]/a[at0034,'Comparison image']/a[at0038]/c/c"":""Position 2"",""/i[at0025]/a[at0027]/a[at0034,'Comparison image']/a[at0039]/d"":""ELEMENT"",""/i[at0025]/a[at0027]/a[at0034,'Comparison image']/a[at0039]/c/d"":""DV_DATE_TIME"",""/i[at0025]/a[at0027]/a[at0034,'Comparison image']/a[at0039]/c/c"":""2021-12-03T16:05:19.514522+01:00"",""/i[at0025]/a[at0027]/a[at0034,'Comparison image']/a[at0039]/c/l"":63774140719,""/i[at0025]/a[at0027]/a[at0034,'Comparison image']/a[at0040]/d"":""ELEMENT"",""/i[at0025]/a[at0027]/a[at0034,'Comparison image']/a[at0040]/c/d"":""DV_MULTIMEDIA"",""/i[at0025]/a[at0027]/a[at0034,'Comparison image']/a[at0040]/c/0"":""alternate text"",""/i[at0025]/a[at0027]/a[at0034,'Comparison image']/a[at0040]/c/8/d"":""DV_URI"",""/i[at0025]/a[at0027]/a[at0034,'Comparison image']/a[at0040]/c/8/c"":""http://med.tube.com/sample"",""/i[at0025]/a[at0027]/a[at0034,'Comparison image']/a[at0040]/c/2/d"":""CODE_PHRASE"",""/i[at0025]/a[at0027]/a[at0034,'Comparison image']/a[at0040]/c/2/m/d"":""TERMINOLOGY_ID"",""/i[at0025]/a[at0027]/a[at0034,'Comparison image']/a[at0040]/c/2/m/c"":""IANA_media-types"",""/i[at0025]/a[at0027]/a[at0034,'Comparison image']/a[at0040]/c/2/r"":""image/png"",""/i[at0025]/a[at0027]/a[at0034,'Comparison image']/a[at0040]/c/ba"":504903212,""/i[at0025]/a[at0027]/a[at0034,'Comparison image']/f/d"":""DV_CODED_TEXT"",""/i[at0025]/a[at0027]/a[at0034,'Comparison image']/f/c"":""Comparison image"",""/i[at0025]/a[at0027]/a[at0034,'Comparison image']/f/j/d"":""CODE_PHRASE"",""/i[at0025]/a[at0027]/a[at0034,'Comparison image']/f/j/m/d"":""TERMINOLOGY_ID"",""/i[at0025]/a[at0027]/a[at0034,'Comparison image']/f/j/m/c"":""local"",""/i[at0025]/a[at0027]/a[at0034,'Comparison image']/f/j/r"":""at0054"",""/i[at0025]/a[at0027]/a[at0034,'Comparison image']/k"":""at0034""}"
+78,openEHR-EHR-OBSERVATION.imaging_exam_result.v0,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/a[openEHR-EHR-OBSERVATION.imaging_exam_result.v0]",{},{0},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""requester"",""/!p"":""DV_CODED_TEXT"",""/!l"":""face-to-face communication"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""216"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""199"",""/!a"":""HOSPITAL-NS"",""/!h"":""Dr. Marcus Johnson""}"
+79,openEHR-EHR-OBSERVATION.imaging_exam_result.v0,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Diagnostic Results']/a[openEHR-EHR-OBSERVATION.imaging_exam_result.v0]",{},{1},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""performer"",""/!p"":""DV_CODED_TEXT"",""/!l"":""not specified"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""193"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""198"",""/!a"":""HOSPITAL-NS"",""/!h"":""Lara Markham""}"
+80,openEHR-EHR-OBSERVATION.body_weight.v2,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/a[openEHR-EHR-OBSERVATION.body_weight.v2]",{},{},0,"{""/!5"":""OBSERVATION"",""/b[at0002]/d"":""HISTORY"",""/b[at0002]/k"":""at0002"",""/b[at0002]/o/d"":""DV_DATE_TIME"",""/b[at0002]/o/c"":""2021-12-03T17:34:06.849379+01:00"",""/b[at0002]/o/l"":63774146046,""/b[at0002]/f/d"":""DV_TEXT"",""/b[at0002]/f/c"":""history"",""/!2"":""openEHR-EHR-OBSERVATION.body_weight.v2"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""en"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-OBSERVATION.body_weight.v2"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!r"":""DV_TEXT"",""/!1"":""Body weight"",""/!0"":""PARTY_SELF""}"
+81,openEHR-EHR-OBSERVATION.body_weight.v2,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/a[openEHR-EHR-OBSERVATION.body_weight.v2]",{},{0},1,"{""/b[at0002]/e[at0003]/d"":""POINT_EVENT"",""/b[at0002]/e[at0003]/b[at0001]/d"":""ITEM_TREE"",""/b[at0002]/e[at0003]/b[at0001]/a[at0004]/d"":""ELEMENT"",""/b[at0002]/e[at0003]/b[at0001]/a[at0004]/c/d"":""DV_QUANTITY"",""/b[at0002]/e[at0003]/b[at0001]/a[at0004]/c/1"":""kg"",""/b[at0002]/e[at0003]/b[at0001]/a[at0004]/c/l"":981.13,""/b[at0002]/e[at0003]/b[at0001]/k"":""at0001"",""/b[at0002]/e[at0003]/b[at0001]/f/d"":""DV_TEXT"",""/b[at0002]/e[at0003]/b[at0001]/f/c"":""Simple"",""/b[at0002]/e[at0003]/k"":""at0003"",""/b[at0002]/e[at0003]/f/d"":""DV_TEXT"",""/b[at0002]/e[at0003]/f/c"":""Any event"",""/b[at0002]/e[at0003]/p/d"":""DV_DATE_TIME"",""/b[at0002]/e[at0003]/p/c"":""2021-12-03T17:34:06.849379+01:00"",""/b[at0002]/e[at0003]/p/l"":63774146046}"
+82,openEHR-EHR-OBSERVATION.body_weight.v2,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/a[openEHR-EHR-OBSERVATION.body_weight.v2]",{},{0},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""requester"",""/!p"":""DV_CODED_TEXT"",""/!l"":""face-to-face communication"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""216"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""199"",""/!a"":""HOSPITAL-NS"",""/!h"":""Dr. Marcus Johnson""}"
+83,openEHR-EHR-OBSERVATION.body_weight.v2,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/a[openEHR-EHR-OBSERVATION.body_weight.v2]",{},{1},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""performer"",""/!p"":""DV_CODED_TEXT"",""/!l"":""not specified"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""193"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""198"",""/!a"":""HOSPITAL-NS"",""/!h"":""Lara Markham""}"
+84,openEHR-EHR-OBSERVATION.height.v2,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/a[openEHR-EHR-OBSERVATION.height.v2]",{},{},0,"{""/!5"":""OBSERVATION"",""/b[at0001]/d"":""HISTORY"",""/b[at0001]/k"":""at0001"",""/b[at0001]/o/d"":""DV_DATE_TIME"",""/b[at0001]/o/c"":""2021-12-03T17:34:06.849379+01:00"",""/b[at0001]/o/l"":63774146046,""/b[at0001]/f/d"":""DV_TEXT"",""/b[at0001]/f/c"":""history"",""/!2"":""openEHR-EHR-OBSERVATION.height.v2"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""en"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-OBSERVATION.height.v2"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!r"":""DV_TEXT"",""/!1"":""Height/Length"",""/!0"":""PARTY_SELF""}"
+85,openEHR-EHR-OBSERVATION.height.v2,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/a[openEHR-EHR-OBSERVATION.height.v2]",{},{0},1,"{""/b[at0001]/e[at0002]/d"":""POINT_EVENT"",""/b[at0001]/e[at0002]/b[at0003]/d"":""ITEM_TREE"",""/b[at0001]/e[at0002]/b[at0003]/a[at0004]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0004]/c/d"":""DV_QUANTITY"",""/b[at0001]/e[at0002]/b[at0003]/a[at0004]/c/1"":""cm"",""/b[at0001]/e[at0002]/b[at0003]/a[at0004]/c/l"":317.11,""/b[at0001]/e[at0002]/b[at0003]/k"":""at0003"",""/b[at0001]/e[at0002]/b[at0003]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/f/c"":""Simple"",""/b[at0001]/e[at0002]/k"":""at0002"",""/b[at0001]/e[at0002]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/f/c"":""Any event"",""/b[at0001]/e[at0002]/p/d"":""DV_DATE_TIME"",""/b[at0001]/e[at0002]/p/c"":""2021-12-03T17:34:06.849379+01:00"",""/b[at0001]/e[at0002]/p/l"":63774146046}"
+86,openEHR-EHR-OBSERVATION.height.v2,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/a[openEHR-EHR-OBSERVATION.height.v2]",{},{0},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""requester"",""/!p"":""DV_CODED_TEXT"",""/!l"":""face-to-face communication"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""216"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""199"",""/!a"":""HOSPITAL-NS"",""/!h"":""Dr. Marcus Johnson""}"
+87,openEHR-EHR-OBSERVATION.height.v2,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/a[openEHR-EHR-OBSERVATION.height.v2]",{},{1},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""performer"",""/!p"":""DV_CODED_TEXT"",""/!l"":""not specified"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""193"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""198"",""/!a"":""HOSPITAL-NS"",""/!h"":""Lara Markham""}"
+88,openEHR-EHR-OBSERVATION.respiration.v2,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/a[openEHR-EHR-OBSERVATION.respiration.v2]",{},{},0,"{""/!5"":""OBSERVATION"",""/b[at0001]/d"":""HISTORY"",""/b[at0001]/k"":""at0001"",""/b[at0001]/o/d"":""DV_DATE_TIME"",""/b[at0001]/o/c"":""2021-12-03T17:34:06.849379+01:00"",""/b[at0001]/o/l"":63774146046,""/b[at0001]/f/d"":""DV_TEXT"",""/b[at0001]/f/c"":""history"",""/!2"":""openEHR-EHR-OBSERVATION.respiration.v2"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""en"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-OBSERVATION.respiration.v2"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!r"":""DV_TEXT"",""/!1"":""Respiration"",""/!0"":""PARTY_SELF""}"
+89,openEHR-EHR-OBSERVATION.respiration.v2,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/a[openEHR-EHR-OBSERVATION.respiration.v2]",{},{0},1,"{""/b[at0001]/e[at0002]/d"":""POINT_EVENT"",""/b[at0001]/e[at0002]/b[at0003]/d"":""ITEM_TREE"",""/b[at0001]/e[at0002]/b[at0003]/a[at0004]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0004]/c/d"":""DV_QUANTITY"",""/b[at0001]/e[at0002]/b[at0003]/a[at0004]/c/7"":0,""/b[at0001]/e[at0002]/b[at0003]/a[at0004]/c/1"":""/min"",""/b[at0001]/e[at0002]/b[at0003]/a[at0004]/c/l"":147.0,""/b[at0001]/e[at0002]/b[at0003]/k"":""at0003"",""/b[at0001]/e[at0002]/b[at0003]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/f/c"":""List"",""/b[at0001]/e[at0002]/k"":""at0002"",""/b[at0001]/e[at0002]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/f/c"":""Any event"",""/b[at0001]/e[at0002]/p/d"":""DV_DATE_TIME"",""/b[at0001]/e[at0002]/p/c"":""2021-12-03T17:34:06.849379+01:00"",""/b[at0001]/e[at0002]/p/l"":63774146046}"
+90,openEHR-EHR-OBSERVATION.respiration.v2,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/a[openEHR-EHR-OBSERVATION.respiration.v2]",{},{0},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""requester"",""/!p"":""DV_CODED_TEXT"",""/!l"":""face-to-face communication"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""216"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""199"",""/!a"":""HOSPITAL-NS"",""/!h"":""Dr. Marcus Johnson""}"
+91,openEHR-EHR-OBSERVATION.respiration.v2,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/a[openEHR-EHR-OBSERVATION.respiration.v2]",{},{1},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""performer"",""/!p"":""DV_CODED_TEXT"",""/!l"":""not specified"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""193"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""198"",""/!a"":""HOSPITAL-NS"",""/!h"":""Lara Markham""}"
+92,openEHR-EHR-OBSERVATION.pulse.v2,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/a[openEHR-EHR-OBSERVATION.pulse.v2]",{},{},0,"{""/!5"":""OBSERVATION"",""/b[at0002]/d"":""HISTORY"",""/b[at0002]/k"":""at0002"",""/b[at0002]/o/d"":""DV_DATE_TIME"",""/b[at0002]/o/c"":""2021-12-03T17:34:06.849379+01:00"",""/b[at0002]/o/l"":63774146046,""/b[at0002]/f/d"":""DV_TEXT"",""/b[at0002]/f/c"":""history"",""/!2"":""openEHR-EHR-OBSERVATION.pulse.v2"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""en"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-OBSERVATION.pulse.v2"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!r"":""DV_TEXT"",""/!1"":""Pulse/Heart beat"",""/!0"":""PARTY_SELF""}"
+93,openEHR-EHR-OBSERVATION.pulse.v2,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/a[openEHR-EHR-OBSERVATION.pulse.v2]",{},{0},1,"{""/b[at0002]/e[at0003]/d"":""POINT_EVENT"",""/b[at0002]/e[at0003]/b[at0001]/d"":""ITEM_TREE"",""/b[at0002]/e[at0003]/b[at0001]/a[at0004]/d"":""ELEMENT"",""/b[at0002]/e[at0003]/b[at0001]/a[at0004]/c/d"":""DV_QUANTITY"",""/b[at0002]/e[at0003]/b[at0001]/a[at0004]/c/7"":0,""/b[at0002]/e[at0003]/b[at0001]/a[at0004]/c/1"":""/min"",""/b[at0002]/e[at0003]/b[at0001]/a[at0004]/c/l"":940.0,""/b[at0002]/e[at0003]/b[at0001]/k"":""at0001"",""/b[at0002]/e[at0003]/b[at0001]/f/d"":""DV_TEXT"",""/b[at0002]/e[at0003]/b[at0001]/f/c"":""structure"",""/b[at0002]/e[at0003]/k"":""at0003"",""/b[at0002]/e[at0003]/f/d"":""DV_TEXT"",""/b[at0002]/e[at0003]/f/c"":""Any event"",""/b[at0002]/e[at0003]/p/d"":""DV_DATE_TIME"",""/b[at0002]/e[at0003]/p/c"":""2021-12-03T17:34:06.849379+01:00"",""/b[at0002]/e[at0003]/p/l"":63774146046}"
+94,openEHR-EHR-OBSERVATION.pulse.v2,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/a[openEHR-EHR-OBSERVATION.pulse.v2]",{},{0},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""requester"",""/!p"":""DV_CODED_TEXT"",""/!l"":""face-to-face communication"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""216"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""199"",""/!a"":""HOSPITAL-NS"",""/!h"":""Dr. Marcus Johnson""}"
+95,openEHR-EHR-OBSERVATION.pulse.v2,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/a[openEHR-EHR-OBSERVATION.pulse.v2]",{},{1},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""performer"",""/!p"":""DV_CODED_TEXT"",""/!l"":""not specified"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""193"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""198"",""/!a"":""HOSPITAL-NS"",""/!h"":""Lara Markham""}"
+96,openEHR-EHR-OBSERVATION.body_temperature.v2,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/a[openEHR-EHR-OBSERVATION.body_temperature.v2]",{},{},0,"{""/!5"":""OBSERVATION"",""/b[at0002]/d"":""HISTORY"",""/b[at0002]/k"":""at0002"",""/b[at0002]/o/d"":""DV_DATE_TIME"",""/b[at0002]/o/c"":""2021-12-03T17:34:06.849379+01:00"",""/b[at0002]/o/l"":63774146046,""/b[at0002]/f/d"":""DV_TEXT"",""/b[at0002]/f/c"":""History"",""/!2"":""openEHR-EHR-OBSERVATION.body_temperature.v2"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""en"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-OBSERVATION.body_temperature.v2"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!r"":""DV_TEXT"",""/!1"":""Body temperature"",""/!0"":""PARTY_SELF""}"
+97,openEHR-EHR-OBSERVATION.body_temperature.v2,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/a[openEHR-EHR-OBSERVATION.body_temperature.v2]",{},{0},1,"{""/b[at0002]/e[at0003]/d"":""POINT_EVENT"",""/b[at0002]/e[at0003]/b[at0001]/d"":""ITEM_TREE"",""/b[at0002]/e[at0003]/b[at0001]/a[at0004]/d"":""ELEMENT"",""/b[at0002]/e[at0003]/b[at0001]/a[at0004]/c/d"":""DV_QUANTITY"",""/b[at0002]/e[at0003]/b[at0001]/a[at0004]/c/7"":1,""/b[at0002]/e[at0003]/b[at0001]/a[at0004]/c/1"":""Cel"",""/b[at0002]/e[at0003]/b[at0001]/a[at0004]/c/l"":79.9,""/b[at0002]/e[at0003]/b[at0001]/k"":""at0001"",""/b[at0002]/e[at0003]/b[at0001]/f/d"":""DV_TEXT"",""/b[at0002]/e[at0003]/b[at0001]/f/c"":""Tree"",""/b[at0002]/e[at0003]/k"":""at0003"",""/b[at0002]/e[at0003]/f/d"":""DV_TEXT"",""/b[at0002]/e[at0003]/f/c"":""Any event"",""/b[at0002]/e[at0003]/p/d"":""DV_DATE_TIME"",""/b[at0002]/e[at0003]/p/c"":""2021-12-03T17:34:06.849379+01:00"",""/b[at0002]/e[at0003]/p/l"":63774146046}"
+98,openEHR-EHR-OBSERVATION.body_temperature.v2,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/a[openEHR-EHR-OBSERVATION.body_temperature.v2]",{},{0},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""requester"",""/!p"":""DV_CODED_TEXT"",""/!l"":""face-to-face communication"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""216"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""199"",""/!a"":""HOSPITAL-NS"",""/!h"":""Dr. Marcus Johnson""}"
+99,openEHR-EHR-OBSERVATION.body_temperature.v2,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/a[openEHR-EHR-OBSERVATION.body_temperature.v2]",{},{1},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""performer"",""/!p"":""DV_CODED_TEXT"",""/!l"":""not specified"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""193"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""198"",""/!a"":""HOSPITAL-NS"",""/!h"":""Lara Markham""}"
+100,openEHR-EHR-OBSERVATION.head_circumference.v1,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/a[openEHR-EHR-OBSERVATION.head_circumference.v1]",{},{},0,"{""/!5"":""OBSERVATION"",""/b[at0001]/d"":""HISTORY"",""/b[at0001]/k"":""at0001"",""/b[at0001]/o/d"":""DV_DATE_TIME"",""/b[at0001]/o/c"":""2021-12-03T17:34:06.849379+01:00"",""/b[at0001]/o/l"":63774146046,""/b[at0001]/f/d"":""DV_TEXT"",""/b[at0001]/f/c"":""Event Series"",""/!2"":""openEHR-EHR-OBSERVATION.head_circumference.v1"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""en"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-OBSERVATION.head_circumference.v1"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!r"":""DV_TEXT"",""/!1"":""Head circumference"",""/!0"":""PARTY_SELF""}"
+101,openEHR-EHR-OBSERVATION.head_circumference.v1,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/a[openEHR-EHR-OBSERVATION.head_circumference.v1]",{},{0},1,"{""/b[at0001]/e[at0010]/d"":""POINT_EVENT"",""/b[at0001]/e[at0010]/b[at0003]/d"":""ITEM_TREE"",""/b[at0001]/e[at0010]/b[at0003]/a[at0004]/d"":""ELEMENT"",""/b[at0001]/e[at0010]/b[at0003]/a[at0004]/c/d"":""DV_QUANTITY"",""/b[at0001]/e[at0010]/b[at0003]/a[at0004]/c/1"":""cm"",""/b[at0001]/e[at0010]/b[at0003]/a[at0004]/c/l"":57.81,""/b[at0001]/e[at0010]/b[at0003]/k"":""at0003"",""/b[at0001]/e[at0010]/b[at0003]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0010]/b[at0003]/f/c"":""Tree"",""/b[at0001]/e[at0010]/k"":""at0010"",""/b[at0001]/e[at0010]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0010]/f/c"":""Any event"",""/b[at0001]/e[at0010]/p/d"":""DV_DATE_TIME"",""/b[at0001]/e[at0010]/p/c"":""2021-12-03T17:34:06.849379+01:00"",""/b[at0001]/e[at0010]/p/l"":63774146046}"
+102,openEHR-EHR-OBSERVATION.head_circumference.v1,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/a[openEHR-EHR-OBSERVATION.head_circumference.v1]",{},{0},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""requester"",""/!p"":""DV_CODED_TEXT"",""/!l"":""face-to-face communication"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""216"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""199"",""/!a"":""HOSPITAL-NS"",""/!h"":""Dr. Marcus Johnson""}"
+103,openEHR-EHR-OBSERVATION.head_circumference.v1,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/a[openEHR-EHR-OBSERVATION.head_circumference.v1]",{},{1},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""performer"",""/!p"":""DV_CODED_TEXT"",""/!l"":""not specified"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""193"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""198"",""/!a"":""HOSPITAL-NS"",""/!h"":""Lara Markham""}"
+104,openEHR-EHR-OBSERVATION.pulse_oximetry.v1,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/a[openEHR-EHR-OBSERVATION.pulse_oximetry.v1]",{},{},0,"{""/!5"":""OBSERVATION"",""/b[at0001]/d"":""HISTORY"",""/b[at0001]/k"":""at0001"",""/b[at0001]/o/d"":""DV_DATE_TIME"",""/b[at0001]/o/c"":""2021-12-03T17:34:06.849379+01:00"",""/b[at0001]/o/l"":63774146046,""/b[at0001]/f/d"":""DV_TEXT"",""/b[at0001]/f/c"":""Event Series"",""/!2"":""openEHR-EHR-OBSERVATION.pulse_oximetry.v1"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""en"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-OBSERVATION.pulse_oximetry.v1"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!r"":""DV_TEXT"",""/!1"":""Pulse oximetry"",""/!0"":""PARTY_SELF""}"
+105,openEHR-EHR-OBSERVATION.pulse_oximetry.v1,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/a[openEHR-EHR-OBSERVATION.pulse_oximetry.v1]",{},{0},1,"{""/b[at0001]/e[at0002]/d"":""POINT_EVENT"",""/b[at0001]/e[at0002]/b[at0003]/d"":""ITEM_TREE"",""/b[at0001]/e[at0002]/b[at0003]/a[at0006]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0006]/c/d"":""DV_PROPORTION"",""/b[at0001]/e[at0002]/b[at0003]/a[at0006]/c/bg"":89.21,""/b[at0001]/e[at0002]/b[at0003]/a[at0006]/c/bf"":100.0,""/b[at0001]/e[at0002]/b[at0003]/a[at0006]/c/3"":2,""/b[at0001]/e[at0002]/b[at0003]/k"":""at0003"",""/b[at0001]/e[at0002]/b[at0003]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/f/c"":""Tree"",""/b[at0001]/e[at0002]/k"":""at0002"",""/b[at0001]/e[at0002]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/f/c"":""Any event"",""/b[at0001]/e[at0002]/p/d"":""DV_DATE_TIME"",""/b[at0001]/e[at0002]/p/c"":""2021-12-03T17:34:06.849379+01:00"",""/b[at0001]/e[at0002]/p/l"":63774146046}"
+106,openEHR-EHR-OBSERVATION.pulse_oximetry.v1,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/a[openEHR-EHR-OBSERVATION.pulse_oximetry.v1]",{},{0},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""requester"",""/!p"":""DV_CODED_TEXT"",""/!l"":""face-to-face communication"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""216"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""199"",""/!a"":""HOSPITAL-NS"",""/!h"":""Dr. Marcus Johnson""}"
+107,openEHR-EHR-OBSERVATION.pulse_oximetry.v1,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/a[openEHR-EHR-OBSERVATION.pulse_oximetry.v1]",{},{1},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""performer"",""/!p"":""DV_CODED_TEXT"",""/!l"":""not specified"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""193"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""198"",""/!a"":""HOSPITAL-NS"",""/!h"":""Lara Markham""}"
+108,openEHR-EHR-OBSERVATION.body_mass_index.v2,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/a[openEHR-EHR-OBSERVATION.body_mass_index.v2]",{},{},0,"{""/!5"":""OBSERVATION"",""/b[at0001]/d"":""HISTORY"",""/b[at0001]/k"":""at0001"",""/b[at0001]/o/d"":""DV_DATE_TIME"",""/b[at0001]/o/c"":""2021-12-03T17:34:06.849379+01:00"",""/b[at0001]/o/l"":63774146046,""/b[at0001]/f/d"":""DV_TEXT"",""/b[at0001]/f/c"":""history"",""/!2"":""openEHR-EHR-OBSERVATION.body_mass_index.v2"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""en"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-OBSERVATION.body_mass_index.v2"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!r"":""DV_TEXT"",""/!1"":""Body mass index"",""/!0"":""PARTY_SELF""}"
+109,openEHR-EHR-OBSERVATION.body_mass_index.v2,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/a[openEHR-EHR-OBSERVATION.body_mass_index.v2]",{},{0},1,"{""/b[at0001]/e[at0002]/d"":""POINT_EVENT"",""/b[at0001]/e[at0002]/b[at0003]/d"":""ITEM_TREE"",""/b[at0001]/e[at0002]/b[at0003]/a[at0004]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0004]/c/d"":""DV_QUANTITY"",""/b[at0001]/e[at0002]/b[at0003]/a[at0004]/c/7"":1,""/b[at0001]/e[at0002]/b[at0003]/a[at0004]/c/1"":""kg/m2"",""/b[at0001]/e[at0002]/b[at0003]/a[at0004]/c/l"":864.9,""/b[at0001]/e[at0002]/b[at0003]/k"":""at0003"",""/b[at0001]/e[at0002]/b[at0003]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/f/c"":""Single"",""/b[at0001]/e[at0002]/k"":""at0002"",""/b[at0001]/e[at0002]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/f/c"":""Any event"",""/b[at0001]/e[at0002]/p/d"":""DV_DATE_TIME"",""/b[at0001]/e[at0002]/p/c"":""2021-12-03T17:34:06.849379+01:00"",""/b[at0001]/e[at0002]/p/l"":63774146046}"
+110,openEHR-EHR-OBSERVATION.body_mass_index.v2,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/a[openEHR-EHR-OBSERVATION.body_mass_index.v2]",{},{0},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""requester"",""/!p"":""DV_CODED_TEXT"",""/!l"":""face-to-face communication"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""216"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""199"",""/!a"":""HOSPITAL-NS"",""/!h"":""Dr. Marcus Johnson""}"
+111,openEHR-EHR-OBSERVATION.body_mass_index.v2,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/a[openEHR-EHR-OBSERVATION.body_mass_index.v2]",{},{1},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""performer"",""/!p"":""DV_CODED_TEXT"",""/!l"":""not specified"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""193"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""198"",""/!a"":""HOSPITAL-NS"",""/!h"":""Lara Markham""}"
+112,openEHR-EHR-OBSERVATION.blood_pressure.v2,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/a[openEHR-EHR-OBSERVATION.blood_pressure.v2]",{},{},0,"{""/!5"":""OBSERVATION"",""/b[at0001]/d"":""HISTORY"",""/b[at0001]/k"":""at0001"",""/b[at0001]/o/d"":""DV_DATE_TIME"",""/b[at0001]/o/c"":""2021-12-03T17:34:06.849379+01:00"",""/b[at0001]/o/l"":63774146046,""/b[at0001]/f/d"":""DV_TEXT"",""/b[at0001]/f/c"":""History"",""/!2"":""openEHR-EHR-OBSERVATION.blood_pressure.v2"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""en"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-OBSERVATION.blood_pressure.v2"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!r"":""DV_TEXT"",""/!1"":""Blood pressure"",""/!0"":""PARTY_SELF""}"
+113,openEHR-EHR-OBSERVATION.blood_pressure.v2,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/a[openEHR-EHR-OBSERVATION.blood_pressure.v2]",{},{0},1,"{""/b[at0001]/e[at0006]/d"":""POINT_EVENT"",""/b[at0001]/e[at0006]/b[at0003]/d"":""ITEM_TREE"",""/b[at0001]/e[at0006]/b[at0003]/a[at0004]/d"":""ELEMENT"",""/b[at0001]/e[at0006]/b[at0003]/a[at0004]/c/d"":""DV_QUANTITY"",""/b[at0001]/e[at0006]/b[at0003]/a[at0004]/c/7"":0,""/b[at0001]/e[at0006]/b[at0003]/a[at0004]/c/1"":""mm[Hg]"",""/b[at0001]/e[at0006]/b[at0003]/a[at0004]/c/l"":266.0,""/b[at0001]/e[at0006]/b[at0003]/a[at0005]/d"":""ELEMENT"",""/b[at0001]/e[at0006]/b[at0003]/a[at0005]/c/d"":""DV_QUANTITY"",""/b[at0001]/e[at0006]/b[at0003]/a[at0005]/c/7"":0,""/b[at0001]/e[at0006]/b[at0003]/a[at0005]/c/1"":""mm[Hg]"",""/b[at0001]/e[at0006]/b[at0003]/a[at0005]/c/l"":756.0,""/b[at0001]/e[at0006]/b[at0003]/k"":""at0003"",""/b[at0001]/e[at0006]/b[at0003]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0006]/b[at0003]/f/c"":""blood pressure"",""/b[at0001]/e[at0006]/k"":""at0006"",""/b[at0001]/e[at0006]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0006]/f/c"":""Any event"",""/b[at0001]/e[at0006]/p/d"":""DV_DATE_TIME"",""/b[at0001]/e[at0006]/p/c"":""2021-12-03T17:34:06.849379+01:00"",""/b[at0001]/e[at0006]/p/l"":63774146046}"
+114,openEHR-EHR-OBSERVATION.blood_pressure.v2,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/a[openEHR-EHR-OBSERVATION.blood_pressure.v2]",{},{0},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""requester"",""/!p"":""DV_CODED_TEXT"",""/!l"":""face-to-face communication"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""216"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""199"",""/!a"":""HOSPITAL-NS"",""/!h"":""Dr. Marcus Johnson""}"
+115,openEHR-EHR-OBSERVATION.blood_pressure.v2,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Vital Signs']/a[openEHR-EHR-OBSERVATION.blood_pressure.v2]",{},{1},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""performer"",""/!p"":""DV_CODED_TEXT"",""/!l"":""not specified"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""193"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""198"",""/!a"":""HOSPITAL-NS"",""/!h"":""Lara Markham""}"
+116,openEHR-EHR-EVALUATION.problem_diagnosis.v1,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Past History of Illnesses']/a[openEHR-EHR-EVALUATION.problem_diagnosis.v1]",{},{},0,"{""/!5"":""EVALUATION"",""/b[at0001]/d"":""ITEM_TREE"",""/b[at0001]/a[at0002]/d"":""ELEMENT"",""/b[at0001]/a[at0002]/c/d"":""DV_TEXT"",""/b[at0001]/a[at0002]/c/c"":""Problem/Diagnosis name 37"",""/b[at0001]/a[at0077]/d"":""ELEMENT"",""/b[at0001]/a[at0077]/c/d"":""DV_DATE_TIME"",""/b[at0001]/a[at0077]/c/c"":""2021-12-03T16:05:19.514663+01:00"",""/b[at0001]/a[at0077]/c/l"":63774140719,""/b[at0001]/a[at0005]/d"":""ELEMENT"",""/b[at0001]/a[at0005]/c/d"":""DV_CODED_TEXT"",""/b[at0001]/a[at0005]/c/c"":""Mild"",""/b[at0001]/a[at0005]/c/j/d"":""CODE_PHRASE"",""/b[at0001]/a[at0005]/c/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/a[at0005]/c/j/m/c"":""local"",""/b[at0001]/a[at0005]/c/j/r"":""at0047"",""/b[at0001]/a[at0030,'Date of abatement']/d"":""ELEMENT"",""/b[at0001]/a[at0030,'Date of abatement']/c/d"":""DV_DATE_TIME"",""/b[at0001]/a[at0030,'Date of abatement']/c/c"":""2021-12-03T16:05:19.51469+01:00"",""/b[at0001]/a[at0030,'Date of abatement']/c/l"":63774140719,""/b[at0001]/a[at0030,'Date of abatement']/f/d"":""DV_TEXT"",""/b[at0001]/a[at0030,'Date of abatement']/f/c"":""Date of abatement"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/d"":""CLUSTER"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0003]/d"":""ELEMENT"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0003]/c/d"":""DV_CODED_TEXT"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0003]/c/c"":""Active"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0003]/c/j/d"":""CODE_PHRASE"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0003]/c/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0003]/c/j/m/c"":""local"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0003]/c/j/r"":""at0026"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0083]/d"":""ELEMENT"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0083]/c/d"":""DV_CODED_TEXT"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0083]/c/c"":""Resolved"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0083]/c/j/d"":""CODE_PHRASE"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0083]/c/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0083]/c/j/m/c"":""local"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0083]/c/j/r"":""at0084"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0089]/d"":""ELEMENT"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0089]/c/d"":""DV_CODED_TEXT"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0089]/c/c"":""In remission"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0089]/c/j/d"":""CODE_PHRASE"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0089]/c/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0089]/c/j/m/c"":""local"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0089]/c/j/r"":""at0090"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0071]/d"":""ELEMENT"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0071]/c/d"":""DV_CODED_TEXT"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0071]/c/c"":""Recurrence"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0071]/c/j/d"":""CODE_PHRASE"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0071]/c/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0071]/c/j/m/c"":""local"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0071]/c/j/r"":""at0096"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/n/z/c"":""openEHR-EHR-CLUSTER.problem_qualifier.v1"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/n/y"":""1.0.4"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/n/d"":""ARCHETYPED"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/k"":""openEHR-EHR-CLUSTER.problem_qualifier.v1"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/f/d"":""DV_TEXT"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/f/c"":""Problem/Diagnosis qualifier"",""/b[at0001]/a[at0073]/d"":""ELEMENT"",""/b[at0001]/a[at0073]/c/d"":""DV_CODED_TEXT"",""/b[at0001]/a[at0073]/c/c"":""Suspected"",""/b[at0001]/a[at0073]/c/j/d"":""CODE_PHRASE"",""/b[at0001]/a[at0073]/c/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/a[at0073]/c/j/m/c"":""local"",""/b[at0001]/a[at0073]/c/j/r"":""at0074"",""/b[at0001]/k"":""at0001"",""/b[at0001]/f/d"":""DV_TEXT"",""/b[at0001]/f/c"":""structure"",""/i[at0032]/d"":""ITEM_TREE"",""/i[at0032]/a[at0070]/d"":""ELEMENT"",""/i[at0032]/a[at0070]/c/d"":""DV_DATE_TIME"",""/i[at0032]/a[at0070]/c/c"":""2021-12-03T16:05:19.514719+01:00"",""/i[at0032]/a[at0070]/c/l"":63774140719,""/i[at0032]/k"":""at0032"",""/i[at0032]/f/d"":""DV_TEXT"",""/i[at0032]/f/c"":""Tree"",""/!2"":""openEHR-EHR-EVALUATION.problem_diagnosis.v1"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""en"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-EVALUATION.problem_diagnosis.v1"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!r"":""DV_TEXT"",""/!1"":""Problem/Diagnosis"",""/!0"":""PARTY_SELF""}"
+117,openEHR-EHR-EVALUATION.problem_diagnosis.v1,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Past History of Illnesses']/a[openEHR-EHR-EVALUATION.problem_diagnosis.v1]",{},{0},1,"{""/b[at0001]/a[at0012]/d"":""ELEMENT"",""/b[at0001]/a[at0012]/c/d"":""DV_TEXT"",""/b[at0001]/a[at0012]/c/c"":""Body site 67""}"
+118,openEHR-EHR-EVALUATION.problem_diagnosis.v1,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Past History of Illnesses']/a[openEHR-EHR-EVALUATION.problem_diagnosis.v1]",{},{0},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""requester"",""/!p"":""DV_CODED_TEXT"",""/!l"":""face-to-face communication"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""216"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""199"",""/!a"":""HOSPITAL-NS"",""/!h"":""Dr. Marcus Johnson""}"
+119,openEHR-EHR-EVALUATION.problem_diagnosis.v1,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Past History of Illnesses']/a[openEHR-EHR-EVALUATION.problem_diagnosis.v1]",{},{1},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""performer"",""/!p"":""DV_CODED_TEXT"",""/!l"":""not specified"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""193"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""198"",""/!a"":""HOSPITAL-NS"",""/!h"":""Lara Markham""}"
+120,openEHR-EHR-EVALUATION.pregnancy_summary.v0,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Pregnancy']/a[openEHR-EHR-EVALUATION.pregnancy_summary.v0]",{},{},0,"{""/!5"":""EVALUATION"",""/b[at0001]/d"":""ITEM_TREE"",""/b[at0001]/a[at0141]/d"":""ELEMENT"",""/b[at0001]/a[at0141]/c/d"":""DV_CODED_TEXT"",""/b[at0001]/a[at0141]/c/c"":""Currently pregnant"",""/b[at0001]/a[at0141]/c/j/d"":""CODE_PHRASE"",""/b[at0001]/a[at0141]/c/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/a[at0141]/c/j/m/c"":""local"",""/b[at0001]/a[at0141]/c/j/r"":""at0142"",""/b[at0001]/a[at0145]/d"":""CLUSTER"",""/b[at0001]/a[at0145]/a[at0094]/d"":""ELEMENT"",""/b[at0001]/a[at0145]/a[at0094]/c/d"":""DV_TEXT"",""/b[at0001]/a[at0145]/a[at0094]/c/c"":""Pregnancy outcome 79"",""/b[at0001]/a[at0145]/k"":""at0145"",""/b[at0001]/a[at0145]/f/d"":""DV_TEXT"",""/b[at0001]/a[at0145]/f/c"":""Per pregnancy"",""/b[at0001]/k"":""at0001"",""/b[at0001]/f/d"":""DV_TEXT"",""/b[at0001]/f/c"":""Tree"",""/!2"":""openEHR-EHR-EVALUATION.pregnancy_summary.v0"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""en"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-EVALUATION.pregnancy_summary.v0"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!r"":""DV_TEXT"",""/!1"":""Pregnancy summary"",""/!0"":""PARTY_SELF""}"
+121,openEHR-EHR-EVALUATION.pregnancy_summary.v0,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Pregnancy']/a[openEHR-EHR-EVALUATION.pregnancy_summary.v0]",{},{0},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""requester"",""/!p"":""DV_CODED_TEXT"",""/!l"":""face-to-face communication"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""216"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""199"",""/!a"":""HOSPITAL-NS"",""/!h"":""Dr. Marcus Johnson""}"
+122,openEHR-EHR-EVALUATION.pregnancy_summary.v0,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Pregnancy']/a[openEHR-EHR-EVALUATION.pregnancy_summary.v0]",{},{1},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""performer"",""/!p"":""DV_CODED_TEXT"",""/!l"":""not specified"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""193"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""198"",""/!a"":""HOSPITAL-NS"",""/!h"":""Lara Markham""}"
+123,openEHR-EHR-EVALUATION.estimated_date_delivery.v0,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Pregnancy']/a[openEHR-EHR-EVALUATION.estimated_date_delivery.v0]",{},{},0,"{""/!5"":""EVALUATION"",""/b[at0002]/d"":""ITEM_TREE"",""/b[at0002]/a[at0003]/d"":""ELEMENT"",""/b[at0002]/a[at0003]/c/d"":""DV_DATE_TIME"",""/b[at0002]/a[at0003]/c/c"":""2021-12-03T16:05:19.514747+01:00"",""/b[at0002]/a[at0003]/c/l"":63774140719,""/b[at0002]/a[at0004]/d"":""ELEMENT"",""/b[at0002]/a[at0004]/c/d"":""DV_DATE_TIME"",""/b[at0002]/a[at0004]/c/c"":""2021-12-03T16:05:19.514768+01:00"",""/b[at0002]/a[at0004]/c/l"":63774140719,""/b[at0002]/a[at0006]/d"":""CLUSTER"",""/b[at0002]/a[at0006]/a[at0008]/d"":""ELEMENT"",""/b[at0002]/a[at0006]/a[at0008]/c/d"":""DV_DATE_TIME"",""/b[at0002]/a[at0006]/a[at0008]/c/c"":""2021-12-03T16:05:19.514787+01:00"",""/b[at0002]/a[at0006]/a[at0008]/c/l"":63774140719,""/b[at0002]/a[at0006]/k"":""at0006"",""/b[at0002]/a[at0006]/f/d"":""DV_TEXT"",""/b[at0002]/a[at0006]/f/c"":""By ultrasound"",""/b[at0002]/k"":""at0002"",""/b[at0002]/f/d"":""DV_TEXT"",""/b[at0002]/f/c"":""Item tree"",""/i[at0001]/d"":""ITEM_TREE"",""/i[at0001]/a[at0013]/d"":""ELEMENT"",""/i[at0001]/a[at0013]/c/d"":""DV_DATE_TIME"",""/i[at0001]/a[at0013]/c/c"":""2021-12-03T16:05:19.514827+01:00"",""/i[at0001]/a[at0013]/c/l"":63774140719,""/i[at0001]/k"":""at0001"",""/i[at0001]/f/d"":""DV_TEXT"",""/i[at0001]/f/c"":""Item tree"",""/!2"":""openEHR-EHR-EVALUATION.estimated_date_delivery.v0"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""en"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-EVALUATION.estimated_date_delivery.v0"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!r"":""DV_TEXT"",""/!1"":""Estimated date of delivery"",""/!0"":""PARTY_SELF""}"
+124,openEHR-EHR-EVALUATION.estimated_date_delivery.v0,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Pregnancy']/a[openEHR-EHR-EVALUATION.estimated_date_delivery.v0]",{},{0},1,"{""/b[at0002]/a[at0009]/d"":""CLUSTER"",""/b[at0002]/a[at0009]/a[at0010]/d"":""ELEMENT"",""/b[at0002]/a[at0009]/a[at0010]/c/d"":""DV_DATE_TIME"",""/b[at0002]/a[at0009]/a[at0010]/c/c"":""2021-12-03T16:05:19.514807+01:00"",""/b[at0002]/a[at0009]/a[at0010]/c/l"":63774140719,""/b[at0002]/a[at0009]/k"":""at0009"",""/b[at0002]/a[at0009]/f/d"":""DV_TEXT"",""/b[at0002]/a[at0009]/f/c"":""Agreed EDD""}"
+125,openEHR-EHR-EVALUATION.estimated_date_delivery.v0,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Pregnancy']/a[openEHR-EHR-EVALUATION.estimated_date_delivery.v0]",{},{0},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""requester"",""/!p"":""DV_CODED_TEXT"",""/!l"":""face-to-face communication"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""216"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""199"",""/!a"":""HOSPITAL-NS"",""/!h"":""Dr. Marcus Johnson""}"
+126,openEHR-EHR-EVALUATION.estimated_date_delivery.v0,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Pregnancy']/a[openEHR-EHR-EVALUATION.estimated_date_delivery.v0]",{},{1},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""performer"",""/!p"":""DV_CODED_TEXT"",""/!l"":""not specified"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""193"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""198"",""/!a"":""HOSPITAL-NS"",""/!h"":""Lara Markham""}"
+127,openEHR-EHR-OBSERVATION.exclusion_pregnancy.v0,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Pregnancy']/a[openEHR-EHR-OBSERVATION.exclusion_pregnancy.v0]",{},{},0,"{""/!5"":""OBSERVATION"",""/b[at0001]/d"":""HISTORY"",""/b[at0001]/k"":""at0001"",""/b[at0001]/o/d"":""DV_DATE_TIME"",""/b[at0001]/o/c"":""2021-12-03T17:34:06.849379+01:00"",""/b[at0001]/o/l"":63774146046,""/b[at0001]/f/d"":""DV_TEXT"",""/b[at0001]/f/c"":""History"",""/!2"":""openEHR-EHR-OBSERVATION.exclusion_pregnancy.v0"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""en"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-OBSERVATION.exclusion_pregnancy.v0"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!r"":""DV_TEXT"",""/!1"":""Exclusion of pregnancy"",""/!0"":""PARTY_SELF""}"
+128,openEHR-EHR-OBSERVATION.exclusion_pregnancy.v0,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Pregnancy']/a[openEHR-EHR-OBSERVATION.exclusion_pregnancy.v0]",{},{0},1,"{""/b[at0001]/e[at0002]/d"":""POINT_EVENT"",""/b[at0001]/e[at0002]/b[at0003]/d"":""ITEM_TREE"",""/b[at0001]/e[at0002]/b[at0003]/a[at0006]/d"":""ELEMENT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0006]/c/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/a[at0006]/c/c"":""Not pregnant"",""/b[at0001]/e[at0002]/b[at0003]/k"":""at0003"",""/b[at0001]/e[at0002]/b[at0003]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/b[at0003]/f/c"":""Tree"",""/b[at0001]/e[at0002]/k"":""at0002"",""/b[at0001]/e[at0002]/f/d"":""DV_TEXT"",""/b[at0001]/e[at0002]/f/c"":""Any event"",""/b[at0001]/e[at0002]/p/d"":""DV_DATE_TIME"",""/b[at0001]/e[at0002]/p/c"":""2021-12-03T17:34:06.849379+01:00"",""/b[at0001]/e[at0002]/p/l"":63774146046}"
+129,openEHR-EHR-OBSERVATION.exclusion_pregnancy.v0,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Pregnancy']/a[openEHR-EHR-OBSERVATION.exclusion_pregnancy.v0]",{},{0},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""requester"",""/!p"":""DV_CODED_TEXT"",""/!l"":""face-to-face communication"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""216"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""199"",""/!a"":""HOSPITAL-NS"",""/!h"":""Dr. Marcus Johnson""}"
+130,openEHR-EHR-OBSERVATION.exclusion_pregnancy.v0,OBSERVATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Pregnancy']/a[openEHR-EHR-OBSERVATION.exclusion_pregnancy.v0]",{},{1},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""performer"",""/!p"":""DV_CODED_TEXT"",""/!l"":""not specified"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""193"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""198"",""/!a"":""HOSPITAL-NS"",""/!h"":""Lara Markham""}"
+131,openEHR-EHR-EVALUATION.tobacco_smoking_summary.v1,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Social History']/a[openEHR-EHR-EVALUATION.tobacco_smoking_summary.v1]",{},{},0,"{""/!5"":""EVALUATION"",""/b[at0001]/d"":""ITEM_TREE"",""/b[at0001]/a[at0089]/d"":""ELEMENT"",""/b[at0001]/a[at0089]/c/d"":""DV_CODED_TEXT"",""/b[at0001]/a[at0089]/c/c"":""Never smoked"",""/b[at0001]/a[at0089]/c/j/d"":""CODE_PHRASE"",""/b[at0001]/a[at0089]/c/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/a[at0089]/c/j/m/c"":""local"",""/b[at0001]/a[at0089]/c/j/r"":""at0006"",""/b[at0001]/k"":""at0001"",""/b[at0001]/f/d"":""DV_TEXT"",""/b[at0001]/f/c"":""Tree"",""/!2"":""openEHR-EHR-EVALUATION.tobacco_smoking_summary.v1"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""en"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-EVALUATION.tobacco_smoking_summary.v1"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!r"":""DV_TEXT"",""/!1"":""Tobacco smoking summary"",""/!0"":""PARTY_SELF""}"
+132,openEHR-EHR-EVALUATION.tobacco_smoking_summary.v1,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Social History']/a[openEHR-EHR-EVALUATION.tobacco_smoking_summary.v1]",{},{0},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""requester"",""/!p"":""DV_CODED_TEXT"",""/!l"":""face-to-face communication"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""216"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""199"",""/!a"":""HOSPITAL-NS"",""/!h"":""Dr. Marcus Johnson""}"
+133,openEHR-EHR-EVALUATION.tobacco_smoking_summary.v1,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Social History']/a[openEHR-EHR-EVALUATION.tobacco_smoking_summary.v1]",{},{1},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""performer"",""/!p"":""DV_CODED_TEXT"",""/!l"":""not specified"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""193"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""198"",""/!a"":""HOSPITAL-NS"",""/!h"":""Lara Markham""}"
+134,openEHR-EHR-EVALUATION.alcohol_consumption_summary.v1,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Social History']/a[openEHR-EHR-EVALUATION.alcohol_consumption_summary.v1]",{},{},0,"{""/!5"":""EVALUATION"",""/b[at0001]/d"":""ITEM_TREE"",""/b[at0001]/a[at0089]/d"":""ELEMENT"",""/b[at0001]/a[at0089]/c/d"":""DV_CODED_TEXT"",""/b[at0001]/a[at0089]/c/c"":""Lifetime non-drinker"",""/b[at0001]/a[at0089]/c/j/d"":""CODE_PHRASE"",""/b[at0001]/a[at0089]/c/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/a[at0089]/c/j/m/c"":""local"",""/b[at0001]/a[at0089]/c/j/r"":""at0006"",""/b[at0001]/k"":""at0001"",""/b[at0001]/f/d"":""DV_TEXT"",""/b[at0001]/f/c"":""Tree"",""/!2"":""openEHR-EHR-EVALUATION.alcohol_consumption_summary.v1"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""en"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-EVALUATION.alcohol_consumption_summary.v1"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!r"":""DV_TEXT"",""/!1"":""Alcohol consumption summary"",""/!0"":""PARTY_SELF""}"
+135,openEHR-EHR-EVALUATION.alcohol_consumption_summary.v1,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Social History']/a[openEHR-EHR-EVALUATION.alcohol_consumption_summary.v1]",{},{0},1,"{""/b[at0001]/a[at0064]/d"":""CLUSTER"",""/b[at0001]/a[at0064]/a[at0023]/d"":""ELEMENT"",""/b[at0001]/a[at0064]/a[at0023]/c/d"":""DV_QUANTITY"",""/b[at0001]/a[at0064]/a[at0023]/c/7"":1,""/b[at0001]/a[at0064]/a[at0023]/c/1"":""1/d"",""/b[at0001]/a[at0064]/a[at0023]/c/l"":86.5,""/b[at0001]/a[at0064]/k"":""at0064"",""/b[at0001]/a[at0064]/f/d"":""DV_TEXT"",""/b[at0001]/a[at0064]/f/c"":""Per episode""}"
+136,openEHR-EHR-EVALUATION.alcohol_consumption_summary.v1,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Social History']/a[openEHR-EHR-EVALUATION.alcohol_consumption_summary.v1]",{},{0},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""requester"",""/!p"":""DV_CODED_TEXT"",""/!l"":""face-to-face communication"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""216"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""199"",""/!a"":""HOSPITAL-NS"",""/!h"":""Dr. Marcus Johnson""}"
+137,openEHR-EHR-EVALUATION.alcohol_consumption_summary.v1,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Social History']/a[openEHR-EHR-EVALUATION.alcohol_consumption_summary.v1]",{},{1},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""performer"",""/!p"":""DV_CODED_TEXT"",""/!l"":""not specified"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""193"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""198"",""/!a"":""HOSPITAL-NS"",""/!h"":""Lara Markham""}"
+138,openEHR-EHR-ACTION.care_plan.v0,ACTION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Plan of Care']/a[openEHR-EHR-ACTION.care_plan.v0]",{},{},0,"{""/!5"":""ACTION"",""/g[at0019]/d"":""ITEM_TREE"",""/g[at0019]/a[at0002]/d"":""ELEMENT"",""/g[at0019]/a[at0002]/c/d"":""DV_TEXT"",""/g[at0019]/a[at0002]/c/c"":""Care Plan Name 53"",""/g[at0019]/a[at0021]/d"":""ELEMENT"",""/g[at0019]/a[at0021]/c/d"":""DV_TEXT"",""/g[at0019]/a[at0021]/c/c"":""Description 15"",""/g[at0019]/a[at0025]/d"":""ELEMENT"",""/g[at0019]/a[at0025]/c/d"":""DV_TEXT"",""/g[at0019]/a[at0025]/c/c"":""Reason 5"",""/g[at0019]/k"":""at0019"",""/g[at0019]/f/d"":""DV_TEXT"",""/g[at0019]/f/c"":""Tree"",""/i[at0015]/d"":""ITEM_TREE"",""/i[at0015]/a[at0016]/d"":""ELEMENT"",""/i[at0015]/a[at0016]/c/d"":""DV_IDENTIFIER"",""/i[at0015]/a[at0016]/c/4"":""Issuer"",""/i[at0015]/a[at0016]/c/6"":""Assigner"",""/i[at0015]/a[at0016]/c/5"":""0942fb74-27f8-48c6-869e-10192740c371"",""/i[at0015]/a[at0016]/c/3"":""Prescription"",""/i[at0015]/a[at0017]/d"":""ELEMENT"",""/i[at0015]/a[at0017]/c/d"":""DV_DATE_TIME"",""/i[at0015]/a[at0017]/c/c"":""2021-12-03T16:05:19.514877+01:00"",""/i[at0015]/a[at0017]/c/l"":63774140719,""/i[at0015]/k"":""at0015"",""/i[at0015]/f/d"":""DV_TEXT"",""/i[at0015]/f/c"":""Tree"",""/!2"":""openEHR-EHR-ACTION.care_plan.v0"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""en"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-ACTION.care_plan.v0"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!r"":""DV_TEXT"",""/!1"":""Care Plan"",""/!bi"":""DV_DATE_TIME"",""/!bl"":""2021-12-03T16:05:19.514899+01:00"",""/!bg"":63774140719,""/!bh"":""ISM_TRANSITION"",""/!bf"":""DV_CODED_TEXT"",""/!be"":""suspended"",""/!bm"":""CODE_PHRASE"",""/!bd"":""TERMINOLOGY_ID"",""/!bj"":""openehr"",""/!bk"":""530"",""/!0"":""PARTY_SELF""}"
+139,openEHR-EHR-ACTION.care_plan.v0,ACTION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Plan of Care']/a[openEHR-EHR-ACTION.care_plan.v0]",{},{0},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""requester"",""/!p"":""DV_CODED_TEXT"",""/!l"":""face-to-face communication"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""216"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""199"",""/!a"":""HOSPITAL-NS"",""/!h"":""Dr. Marcus Johnson""}"
+140,openEHR-EHR-ACTION.care_plan.v0,ACTION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Plan of Care']/a[openEHR-EHR-ACTION.care_plan.v0]",{},{1},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""performer"",""/!p"":""DV_CODED_TEXT"",""/!l"":""not specified"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""193"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""198"",""/!a"":""HOSPITAL-NS"",""/!h"":""Lara Markham""}"
+141,openEHR-EHR-INSTRUCTION.service_request.v1,INSTRUCTION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Plan of Care']/a[openEHR-EHR-INSTRUCTION.service_request.v1]",{},{},0,"{""/!5"":""INSTRUCTION"",""/i[at0008]/d"":""ITEM_TREE"",""/i[at0008]/a[at0010]/d"":""ELEMENT"",""/i[at0008]/a[at0010]/c/d"":""DV_TEXT"",""/i[at0008]/a[at0010]/c/c"":""Requester order identifier 77"",""/i[at0008]/a[at0011]/d"":""ELEMENT"",""/i[at0008]/a[at0011]/c/d"":""DV_TEXT"",""/i[at0008]/a[at0011]/c/c"":""Receiver order identifier 84"",""/i[at0008]/a[at0127]/d"":""ELEMENT"",""/i[at0008]/a[at0127]/c/d"":""DV_TEXT"",""/i[at0008]/a[at0127]/c/c"":""Request status 67"",""/i[at0008]/k"":""at0008"",""/i[at0008]/f/d"":""DV_TEXT"",""/i[at0008]/f/c"":""Tree"",""/!2"":""openEHR-EHR-INSTRUCTION.service_request.v1"",""/!c8"":""DV_TEXT"",""/!c0"":""Human readable instruction narrative"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""en"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!bo"":""HIER_OBJECT_ID"",""/!bn"":""30d4c457-09ad-451b-abb0-45e0f7c6aa58"",""/!3"":""openEHR-EHR-INSTRUCTION.service_request.v1"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!r"":""DV_TEXT"",""/!1"":""Service request"",""/!db"":""DV_DATE_TIME"",""/!dg"":""2021-12-03T16:05:19.515085+01:00"",""/!da"":63774140719,""/!0"":""PARTY_SELF""}"
+142,openEHR-EHR-INSTRUCTION.service_request.v1,INSTRUCTION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Plan of Care']/a[openEHR-EHR-INSTRUCTION.service_request.v1]",{},{0},1,"{""/q[at0001]/d"":""ACTIVITY"",""/q[at0001]/g[at0009]/d"":""ITEM_TREE"",""/q[at0001]/g[at0009]/a[at0121]/d"":""ELEMENT"",""/q[at0001]/g[at0009]/a[at0121]/c/d"":""DV_TEXT"",""/q[at0001]/g[at0009]/a[at0121]/c/c"":""Service name 99"",""/q[at0001]/g[at0009]/a[at0148]/d"":""ELEMENT"",""/q[at0001]/g[at0009]/a[at0148]/c/d"":""DV_TEXT"",""/q[at0001]/g[at0009]/a[at0148]/c/c"":""Service type 78"",""/q[at0001]/g[at0009]/a[at0135]/d"":""ELEMENT"",""/q[at0001]/g[at0009]/a[at0135]/c/d"":""DV_TEXT"",""/q[at0001]/g[at0009]/a[at0135]/c/c"":""Description 60"",""/q[at0001]/g[at0009]/a[at0064]/d"":""ELEMENT"",""/q[at0001]/g[at0009]/a[at0064]/c/d"":""DV_TEXT"",""/q[at0001]/g[at0009]/a[at0064]/c/c"":""Reason description 72"",""/q[at0001]/g[at0009]/a[at0068]/d"":""ELEMENT"",""/q[at0001]/g[at0009]/a[at0068]/c/d"":""DV_CODED_TEXT"",""/q[at0001]/g[at0009]/a[at0068]/c/c"":""Routine"",""/q[at0001]/g[at0009]/a[at0068]/c/j/d"":""CODE_PHRASE"",""/q[at0001]/g[at0009]/a[at0068]/c/j/m/d"":""TERMINOLOGY_ID"",""/q[at0001]/g[at0009]/a[at0068]/c/j/m/c"":""local"",""/q[at0001]/g[at0009]/a[at0068]/c/j/r"":""at0138"",""/q[at0001]/g[at0009]/a[at0040]/d"":""ELEMENT"",""/q[at0001]/g[at0009]/a[at0040]/c/d"":""DV_DATE_TIME"",""/q[at0001]/g[at0009]/a[at0040]/c/c"":""2021-12-03T16:05:19.51495+01:00"",""/q[at0001]/g[at0009]/a[at0040]/c/l"":63774140719,""/q[at0001]/g[at0009]/a[at0145]/d"":""ELEMENT"",""/q[at0001]/g[at0009]/a[at0145]/c/d"":""DV_DATE_TIME"",""/q[at0001]/g[at0009]/a[at0145]/c/c"":""2021-12-03T16:05:19.514985+01:00"",""/q[at0001]/g[at0009]/a[at0145]/c/l"":63774140719,""/q[at0001]/g[at0009]/a[at0144]/d"":""ELEMENT"",""/q[at0001]/g[at0009]/a[at0144]/c/d"":""DV_DATE_TIME"",""/q[at0001]/g[at0009]/a[at0144]/c/c"":""2021-12-03T16:05:19.515006+01:00"",""/q[at0001]/g[at0009]/a[at0144]/c/l"":63774140719,""/q[at0001]/g[at0009]/a[at0147]/d"":""ELEMENT"",""/q[at0001]/g[at0009]/a[at0147]/c/d"":""DV_BOOLEAN"",""/q[at0001]/g[at0009]/a[at0147]/c/c"":true,""/q[at0001]/g[at0009]/a[at0076]/d"":""ELEMENT"",""/q[at0001]/g[at0009]/a[at0076]/c/d"":""DV_BOOLEAN"",""/q[at0001]/g[at0009]/a[at0076]/c/c"":true,""/q[at0001]/g[at0009]/a[at0078]/d"":""ELEMENT"",""/q[at0001]/g[at0009]/a[at0078]/c/d"":""DV_TEXT"",""/q[at0001]/g[at0009]/a[at0078]/c/c"":""Information description 91"",""/q[at0001]/g[at0009]/a[at0150]/d"":""ELEMENT"",""/q[at0001]/g[at0009]/a[at0150]/c/d"":""DV_TEXT"",""/q[at0001]/g[at0009]/a[at0150]/c/c"":""Comment 26"",""/q[at0001]/g[at0009]/k"":""at0009"",""/q[at0001]/g[at0009]/f/d"":""DV_TEXT"",""/q[at0001]/g[at0009]/f/c"":""Tree"",""/q[at0001]/k"":""at0001"",""/q[at0001]/bb/d"":""DV_PARSABLE"",""/q[at0001]/bb/c"":""R3/2021-12-03T16:00:00+01:00/P1M"",""/q[at0001]/bb/bd"":""timing"",""/q[at0001]/be"":""/.*/"",""/q[at0001]/f/d"":""DV_TEXT"",""/q[at0001]/f/c"":""Current Activity""}"
+143,openEHR-EHR-INSTRUCTION.service_request.v1,INSTRUCTION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Plan of Care']/a[openEHR-EHR-INSTRUCTION.service_request.v1]",{},"{0,0}",2,"{""/q[at0001]/g[at0009]/a[at0062]/d"":""ELEMENT"",""/q[at0001]/g[at0009]/a[at0062]/c/d"":""DV_TEXT"",""/q[at0001]/g[at0009]/a[at0062]/c/c"":""Reason for request 32""}"
+144,openEHR-EHR-INSTRUCTION.service_request.v1,INSTRUCTION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Plan of Care']/a[openEHR-EHR-INSTRUCTION.service_request.v1]",{},"{0,0}",2,"{""/q[at0001]/g[at0009]/a[at0152]/d"":""ELEMENT"",""/q[at0001]/g[at0009]/a[at0152]/c/d"":""DV_TEXT"",""/q[at0001]/g[at0009]/a[at0152]/c/c"":""Clinical indication 44""}"
+145,openEHR-EHR-INSTRUCTION.service_request.v1,INSTRUCTION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Plan of Care']/a[openEHR-EHR-INSTRUCTION.service_request.v1]",{},"{0,0}",2,"{""/q[at0001]/g[at0009]/a[at0065]/d"":""ELEMENT"",""/q[at0001]/g[at0009]/a[at0065]/c/d"":""DV_TEXT"",""/q[at0001]/g[at0009]/a[at0065]/c/c"":""Intent 67""}"
+146,openEHR-EHR-INSTRUCTION.service_request.v1,INSTRUCTION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Plan of Care']/a[openEHR-EHR-INSTRUCTION.service_request.v1]",{},{0},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""requester"",""/!p"":""DV_CODED_TEXT"",""/!l"":""face-to-face communication"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""216"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""199"",""/!a"":""HOSPITAL-NS"",""/!h"":""Dr. Marcus Johnson""}"
+147,openEHR-EHR-INSTRUCTION.service_request.v1,INSTRUCTION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Plan of Care']/a[openEHR-EHR-INSTRUCTION.service_request.v1]",{},{1},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""performer"",""/!p"":""DV_CODED_TEXT"",""/!l"":""not specified"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""193"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""198"",""/!a"":""HOSPITAL-NS"",""/!h"":""Lara Markham""}"
+148,openEHR-EHR-EVALUATION.problem_diagnosis.v1,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Functional Status']/a[openEHR-EHR-EVALUATION.problem_diagnosis.v1]",{},{},0,"{""/!5"":""EVALUATION"",""/b[at0001]/d"":""ITEM_TREE"",""/b[at0001]/a[at0002]/d"":""ELEMENT"",""/b[at0001]/a[at0002]/c/d"":""DV_TEXT"",""/b[at0001]/a[at0002]/c/c"":""Problem/Diagnosis name 10"",""/b[at0001]/a[at0077]/d"":""ELEMENT"",""/b[at0001]/a[at0077]/c/d"":""DV_DATE_TIME"",""/b[at0001]/a[at0077]/c/c"":""2021-12-03T16:05:19.515116+01:00"",""/b[at0001]/a[at0077]/c/l"":63774140719,""/b[at0001]/a[at0005]/d"":""ELEMENT"",""/b[at0001]/a[at0005]/c/d"":""DV_CODED_TEXT"",""/b[at0001]/a[at0005]/c/c"":""Severe"",""/b[at0001]/a[at0005]/c/j/d"":""CODE_PHRASE"",""/b[at0001]/a[at0005]/c/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/a[at0005]/c/j/m/c"":""local"",""/b[at0001]/a[at0005]/c/j/r"":""at0049"",""/b[at0001]/a[at0030,'Date of abatement']/d"":""ELEMENT"",""/b[at0001]/a[at0030,'Date of abatement']/c/d"":""DV_DATE_TIME"",""/b[at0001]/a[at0030,'Date of abatement']/c/c"":""2021-12-03T16:05:19.515138+01:00"",""/b[at0001]/a[at0030,'Date of abatement']/c/l"":63774140719,""/b[at0001]/a[at0030,'Date of abatement']/f/d"":""DV_TEXT"",""/b[at0001]/a[at0030,'Date of abatement']/f/c"":""Date of abatement"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/d"":""CLUSTER"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0003]/d"":""ELEMENT"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0003]/c/d"":""DV_CODED_TEXT"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0003]/c/c"":""Active"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0003]/c/j/d"":""CODE_PHRASE"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0003]/c/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0003]/c/j/m/c"":""local"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0003]/c/j/r"":""at0026"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0083]/d"":""ELEMENT"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0083]/c/d"":""DV_CODED_TEXT"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0083]/c/c"":""Resolved"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0083]/c/j/d"":""CODE_PHRASE"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0083]/c/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0083]/c/j/m/c"":""local"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0083]/c/j/r"":""at0084"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0089]/d"":""ELEMENT"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0089]/c/d"":""DV_CODED_TEXT"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0089]/c/c"":""In remission"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0089]/c/j/d"":""CODE_PHRASE"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0089]/c/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0089]/c/j/m/c"":""local"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0089]/c/j/r"":""at0090"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0071]/d"":""ELEMENT"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0071]/c/d"":""DV_CODED_TEXT"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0071]/c/c"":""Recurrence"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0071]/c/j/d"":""CODE_PHRASE"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0071]/c/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0071]/c/j/m/c"":""local"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/a[at0071]/c/j/r"":""at0096"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/n/z/c"":""openEHR-EHR-CLUSTER.problem_qualifier.v1"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/n/y"":""1.0.4"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/n/d"":""ARCHETYPED"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/k"":""openEHR-EHR-CLUSTER.problem_qualifier.v1"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/f/d"":""DV_TEXT"",""/b[at0001]/a[openEHR-EHR-CLUSTER.problem_qualifier.v1]/f/c"":""Problem/Diagnosis qualifier"",""/b[at0001]/a[at0073]/d"":""ELEMENT"",""/b[at0001]/a[at0073]/c/d"":""DV_CODED_TEXT"",""/b[at0001]/a[at0073]/c/c"":""Probable"",""/b[at0001]/a[at0073]/c/j/d"":""CODE_PHRASE"",""/b[at0001]/a[at0073]/c/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/a[at0073]/c/j/m/c"":""local"",""/b[at0001]/a[at0073]/c/j/r"":""at0075"",""/b[at0001]/k"":""at0001"",""/b[at0001]/f/d"":""DV_TEXT"",""/b[at0001]/f/c"":""structure"",""/i[at0032]/d"":""ITEM_TREE"",""/i[at0032]/a[at0070]/d"":""ELEMENT"",""/i[at0032]/a[at0070]/c/d"":""DV_DATE_TIME"",""/i[at0032]/a[at0070]/c/c"":""2021-12-03T16:05:19.515165+01:00"",""/i[at0032]/a[at0070]/c/l"":63774140719,""/i[at0032]/k"":""at0032"",""/i[at0032]/f/d"":""DV_TEXT"",""/i[at0032]/f/c"":""Tree"",""/!2"":""openEHR-EHR-EVALUATION.problem_diagnosis.v1"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""en"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-EVALUATION.problem_diagnosis.v1"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!r"":""DV_TEXT"",""/!1"":""Problem/Diagnosis"",""/!0"":""PARTY_SELF""}"
+149,openEHR-EHR-EVALUATION.problem_diagnosis.v1,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Functional Status']/a[openEHR-EHR-EVALUATION.problem_diagnosis.v1]",{},{0},1,"{""/b[at0001]/a[at0012]/d"":""ELEMENT"",""/b[at0001]/a[at0012]/c/d"":""DV_TEXT"",""/b[at0001]/a[at0012]/c/c"":""Body site 88""}"
+150,openEHR-EHR-EVALUATION.problem_diagnosis.v1,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Functional Status']/a[openEHR-EHR-EVALUATION.problem_diagnosis.v1]",{},{0},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""requester"",""/!p"":""DV_CODED_TEXT"",""/!l"":""face-to-face communication"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""216"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""199"",""/!a"":""HOSPITAL-NS"",""/!h"":""Dr. Marcus Johnson""}"
+151,openEHR-EHR-EVALUATION.problem_diagnosis.v1,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Functional Status']/a[openEHR-EHR-EVALUATION.problem_diagnosis.v1]",{},{1},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""performer"",""/!p"":""DV_CODED_TEXT"",""/!l"":""not specified"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""193"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""198"",""/!a"":""HOSPITAL-NS"",""/!h"":""Lara Markham""}"
+152,openEHR-EHR-EVALUATION.clinical_synopsis.v1,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Functional Status']/a[openEHR-EHR-EVALUATION.clinical_synopsis.v1,'Clinical impression']",{},{},0,"{""/!5"":""EVALUATION"",""/b[at0001]/d"":""ITEM_TREE"",""/b[at0001]/a[at0002,'Impression']/d"":""ELEMENT"",""/b[at0001]/a[at0002,'Impression']/c/d"":""DV_TEXT"",""/b[at0001]/a[at0002,'Impression']/c/c"":""Impression 51"",""/b[at0001]/a[at0002,'Impression']/f/d"":""DV_TEXT"",""/b[at0001]/a[at0002,'Impression']/f/c"":""Impression"",""/b[at0001]/k"":""at0001"",""/b[at0001]/f/d"":""DV_TEXT"",""/b[at0001]/f/c"":""List"",""/!r"":""DV_TEXT"",""/!1"":""Clinical impression"",""/!2"":""openEHR-EHR-EVALUATION.clinical_synopsis.v1"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""en"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-EVALUATION.clinical_synopsis.v1"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!0"":""PARTY_SELF""}"
+153,openEHR-EHR-EVALUATION.clinical_synopsis.v1,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Functional Status']/a[openEHR-EHR-EVALUATION.clinical_synopsis.v1,'Clinical impression']",{},{0},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""requester"",""/!p"":""DV_CODED_TEXT"",""/!l"":""face-to-face communication"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""216"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""199"",""/!a"":""HOSPITAL-NS"",""/!h"":""Dr. Marcus Johnson""}"
+154,openEHR-EHR-EVALUATION.clinical_synopsis.v1,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Functional Status']/a[openEHR-EHR-EVALUATION.clinical_synopsis.v1,'Clinical impression']",{},{1},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""performer"",""/!p"":""DV_CODED_TEXT"",""/!l"":""not specified"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""193"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""198"",""/!a"":""HOSPITAL-NS"",""/!h"":""Lara Markham""}"
+155,openEHR-EHR-EVALUATION.advance_care_directive.v1,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Advanced Directives']/a[openEHR-EHR-EVALUATION.advance_care_directive.v1]",{},{},0,"{""/!5"":""EVALUATION"",""/b[at0001]/d"":""ITEM_TREE"",""/b[at0001]/a[at0005]/d"":""ELEMENT"",""/b[at0001]/a[at0005]/c/d"":""DV_TEXT"",""/b[at0001]/a[at0005]/c/c"":""Type of directive 83"",""/b[at0001]/a[at0004]/d"":""ELEMENT"",""/b[at0001]/a[at0004]/c/d"":""DV_CODED_TEXT"",""/b[at0001]/a[at0004]/c/c"":""Present"",""/b[at0001]/a[at0004]/c/j/d"":""CODE_PHRASE"",""/b[at0001]/a[at0004]/c/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/a[at0004]/c/j/m/c"":""local"",""/b[at0001]/a[at0004]/c/j/r"":""at0044"",""/b[at0001]/a[at0006]/d"":""ELEMENT"",""/b[at0001]/a[at0006]/c/d"":""DV_TEXT"",""/b[at0001]/a[at0006]/c/c"":""Description 26"",""/b[at0001]/a[at0038]/d"":""ELEMENT"",""/b[at0001]/a[at0038]/c/d"":""DV_TEXT"",""/b[at0001]/a[at0038]/c/c"":""Comment 85"",""/b[at0001]/k"":""at0001"",""/b[at0001]/f/d"":""DV_TEXT"",""/b[at0001]/f/c"":""Item tree"",""/i[at0010]/d"":""ITEM_TREE"",""/i[at0010]/a[at0053]/d"":""ELEMENT"",""/i[at0010]/a[at0053]/c/d"":""DV_DATE_TIME"",""/i[at0010]/a[at0053]/c/c"":""2021-12-03T16:05:19.5152+01:00"",""/i[at0010]/a[at0053]/c/l"":63774140719,""/i[at0010]/a[at0054]/d"":""ELEMENT"",""/i[at0010]/a[at0054]/c/d"":""DV_DATE_TIME"",""/i[at0010]/a[at0054]/c/c"":""2021-12-03T16:05:19.515221+01:00"",""/i[at0010]/a[at0054]/c/l"":63774140719,""/i[at0010]/a[at0056]/d"":""ELEMENT"",""/i[at0010]/a[at0056]/c/d"":""DV_DATE_TIME"",""/i[at0010]/a[at0056]/c/c"":""2021-12-03T16:05:19.51524+01:00"",""/i[at0010]/a[at0056]/c/l"":63774140719,""/i[at0010]/a[at0055]/d"":""ELEMENT"",""/i[at0010]/a[at0055]/c/d"":""DV_DATE_TIME"",""/i[at0010]/a[at0055]/c/c"":""2021-12-03T16:05:19.515259+01:00"",""/i[at0010]/a[at0055]/c/l"":63774140719,""/i[at0010]/k"":""at0010"",""/i[at0010]/f/d"":""DV_TEXT"",""/i[at0010]/f/c"":""Item tree"",""/!2"":""openEHR-EHR-EVALUATION.advance_care_directive.v1"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""en"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-EVALUATION.advance_care_directive.v1"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!r"":""DV_TEXT"",""/!1"":""Advance care directive"",""/!0"":""PARTY_SELF""}"
+156,openEHR-EHR-EVALUATION.advance_care_directive.v1,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Advanced Directives']/a[openEHR-EHR-EVALUATION.advance_care_directive.v1]",{},{0},1,"{""/b[at0001]/a[at0007]/d"":""ELEMENT"",""/b[at0001]/a[at0007]/c/d"":""DV_TEXT"",""/b[at0001]/a[at0007]/c/c"":""Condition 81""}"
+157,openEHR-EHR-EVALUATION.advance_care_directive.v1,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Advanced Directives']/a[openEHR-EHR-EVALUATION.advance_care_directive.v1]",{},{0},1,"{""/b[at0001]/a[at0058]/d"":""CLUSTER"",""/b[at0001]/a[at0058]/a[at0030]/d"":""ELEMENT"",""/b[at0001]/a[at0058]/a[at0030]/c/d"":""DV_TEXT"",""/b[at0001]/a[at0058]/a[at0030]/c/c"":""Location 48"",""/b[at0001]/a[at0058]/k"":""at0058"",""/b[at0001]/a[at0058]/f/d"":""DV_TEXT"",""/b[at0001]/a[at0058]/f/c"":""Directive location""}"
+158,openEHR-EHR-EVALUATION.advance_care_directive.v1,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Advanced Directives']/a[openEHR-EHR-EVALUATION.advance_care_directive.v1]",{},{0},1,"{""/i[at0010]/a[at0027]/d"":""ELEMENT"",""/i[at0010]/a[at0027]/c/d"":""DV_TEXT"",""/i[at0010]/a[at0027]/c/c"":""Mandate 2""}"
+159,openEHR-EHR-EVALUATION.advance_care_directive.v1,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Advanced Directives']/a[openEHR-EHR-EVALUATION.advance_care_directive.v1]",{},{0},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""requester"",""/!p"":""DV_CODED_TEXT"",""/!l"":""face-to-face communication"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""216"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""199"",""/!a"":""HOSPITAL-NS"",""/!h"":""Dr. Marcus Johnson""}"
+160,openEHR-EHR-EVALUATION.advance_care_directive.v1,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Advanced Directives']/a[openEHR-EHR-EVALUATION.advance_care_directive.v1]",{},{1},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""performer"",""/!p"":""DV_CODED_TEXT"",""/!l"":""not specified"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""193"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""198"",""/!a"":""HOSPITAL-NS"",""/!h"":""Lara Markham""}"
+161,openEHR-EHR-EVALUATION.limitation_of_treatment.v0,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Advanced Directives']/a[openEHR-EHR-EVALUATION.limitation_of_treatment.v0]",{},{},0,"{""/!5"":""EVALUATION"",""/b[at0001]/d"":""ITEM_TREE"",""/b[at0001]/a[at0002]/d"":""ELEMENT"",""/b[at0001]/a[at0002]/c/d"":""DV_CODED_TEXT"",""/b[at0001]/a[at0002]/c/c"":""No limitation of treatment"",""/b[at0001]/a[at0002]/c/j/d"":""CODE_PHRASE"",""/b[at0001]/a[at0002]/c/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/a[at0002]/c/j/m/c"":""local"",""/b[at0001]/a[at0002]/c/j/r"":""at0003"",""/b[at0001]/a[at0021]/d"":""ELEMENT"",""/b[at0001]/a[at0021]/c/d"":""DV_TEXT"",""/b[at0001]/a[at0021]/c/c"":""Rationale 34"",""/b[at0001]/a[at0022]/d"":""ELEMENT"",""/b[at0001]/a[at0022]/c/d"":""DV_CODED_TEXT"",""/b[at0001]/a[at0022]/c/c"":""Patient aware of the decision/s"",""/b[at0001]/a[at0022]/c/j/d"":""CODE_PHRASE"",""/b[at0001]/a[at0022]/c/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/a[at0022]/c/j/m/c"":""local"",""/b[at0001]/a[at0022]/c/j/r"":""at0023"",""/b[at0001]/a[at0025]/d"":""ELEMENT"",""/b[at0001]/a[at0025]/c/d"":""DV_TEXT"",""/b[at0001]/a[at0025]/c/c"":""Carer awareness 12"",""/b[at0001]/a[at0026]/d"":""ELEMENT"",""/b[at0001]/a[at0026]/c/d"":""DV_TEXT"",""/b[at0001]/a[at0026]/c/c"":""Comment 73"",""/b[at0001]/k"":""at0001"",""/b[at0001]/f/d"":""DV_TEXT"",""/b[at0001]/f/c"":""Tree"",""/i[at0027]/d"":""ITEM_TREE"",""/i[at0027]/a[at029]/d"":""ELEMENT"",""/i[at0027]/a[at029]/c/d"":""DV_DATE_TIME"",""/i[at0027]/a[at029]/c/c"":""2021-12-03T16:05:19.515306+01:00"",""/i[at0027]/a[at029]/c/l"":63774140719,""/i[at0027]/a[at0030]/d"":""ELEMENT"",""/i[at0027]/a[at0030]/c/d"":""DV_DATE_TIME"",""/i[at0027]/a[at0030]/c/c"":""2021-12-03T16:05:19.515328+01:00"",""/i[at0027]/a[at0030]/c/l"":63774140719,""/i[at0027]/k"":""at0027"",""/i[at0027]/f/d"":""DV_TEXT"",""/i[at0027]/f/c"":""Tree"",""/!2"":""openEHR-EHR-EVALUATION.limitation_of_treatment.v0"",""/!6"":""CODE_PHRASE"",""/!4"":""TERMINOLOGY_ID"",""/!7"":""ISO_639-1"",""/!y"":""en"",""/!ba"":""CODE_PHRASE"",""/!9"":""TERMINOLOGY_ID"",""/!bb"":""IANA_character-sets"",""/!bc"":""UTF-8"",""/!3"":""openEHR-EHR-EVALUATION.limitation_of_treatment.v0"",""/!8"":""1.0.4"",""/!z"":""ARCHETYPED"",""/!r"":""DV_TEXT"",""/!1"":""Limitation of treatment"",""/!0"":""PARTY_SELF""}"
+162,openEHR-EHR-EVALUATION.limitation_of_treatment.v0,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Advanced Directives']/a[openEHR-EHR-EVALUATION.limitation_of_treatment.v0]",{},{0},1,"{""/b[at0001]/a[at0006]/d"":""CLUSTER"",""/b[at0001]/a[at0006]/a[at0007]/d"":""ELEMENT"",""/b[at0001]/a[at0006]/a[at0007]/c/d"":""DV_CODED_TEXT"",""/b[at0001]/a[at0006]/a[at0007]/c/c"":""Cardiopulmonary resuscitation"",""/b[at0001]/a[at0006]/a[at0007]/c/j/d"":""CODE_PHRASE"",""/b[at0001]/a[at0006]/a[at0007]/c/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/a[at0006]/a[at0007]/c/j/m/c"":""local"",""/b[at0001]/a[at0006]/a[at0007]/c/j/r"":""at0008"",""/b[at0001]/a[at0006]/a[at0017]/d"":""ELEMENT"",""/b[at0001]/a[at0006]/a[at0017]/c/d"":""DV_CODED_TEXT"",""/b[at0001]/a[at0006]/a[at0017]/c/c"":""Not permitted"",""/b[at0001]/a[at0006]/a[at0017]/c/j/d"":""CODE_PHRASE"",""/b[at0001]/a[at0006]/a[at0017]/c/j/m/d"":""TERMINOLOGY_ID"",""/b[at0001]/a[at0006]/a[at0017]/c/j/m/c"":""local"",""/b[at0001]/a[at0006]/a[at0017]/c/j/r"":""at0019"",""/b[at0001]/a[at0006]/a[at0020]/d"":""ELEMENT"",""/b[at0001]/a[at0006]/a[at0020]/c/d"":""DV_TEXT"",""/b[at0001]/a[at0006]/a[at0020]/c/c"":""Qualification 27"",""/b[at0001]/a[at0006]/k"":""at0006"",""/b[at0001]/a[at0006]/f/d"":""DV_TEXT"",""/b[at0001]/a[at0006]/f/c"":""Per limitation""}"
+163,openEHR-EHR-EVALUATION.limitation_of_treatment.v0,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Advanced Directives']/a[openEHR-EHR-EVALUATION.limitation_of_treatment.v0]",{},{0},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""requester"",""/!p"":""DV_CODED_TEXT"",""/!l"":""face-to-face communication"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""216"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""199"",""/!a"":""HOSPITAL-NS"",""/!h"":""Dr. Marcus Johnson""}"
+164,openEHR-EHR-EVALUATION.limitation_of_treatment.v0,EVALUATION,"/h[openEHR-EHR-SECTION.adhoc.v1,'Advanced Directives']/a[openEHR-EHR-EVALUATION.limitation_of_treatment.v0]",{},{1},1,"{""/!e"":""PARTICIPATION"",""/!j"":""DV_TEXT"",""/!i"":""performer"",""/!p"":""DV_CODED_TEXT"",""/!l"":""not specified"",""/!g"":""CODE_PHRASE"",""/!c"":""TERMINOLOGY_ID"",""/!d"":""openehr"",""/!n"":""193"",""/!b"":""PARTY_IDENTIFIED"",""/!q"":""PARTY_REF"",""/!f"":""HOSPITAL-NS"",""/!k"":""PERSON"",""/!o"":""GENERIC_ID"",""/!m"":""198"",""/!a"":""HOSPITAL-NS"",""/!h"":""Lara Markham""}"
diff --git a/serialisation/src/test/resources/csv/MULTI_OCCURRENCE.csv b/serialisation/src/test/resources/csv/MULTI_OCCURRENCE.csv
new file mode 100644
index 000000000..6cbf0a33b
--- /dev/null
+++ b/serialisation/src/test/resources/csv/MULTI_OCCURRENCE.csv
@@ -0,0 +1,8 @@
+NUM,ENTITY_CONCEPT,RM_ENTITY,ENTITY_PATH,ENTITY_IDX,FIELD_IDX,FIELD_IDX_LEN,FIELDS
+0,openEHR-EHR-COMPOSITION.encounter.v1,COMPOSITION,/,{},{},0,"{""/_type"":""COMPOSITION"",""/category/_type"":""DV_CODED_TEXT"",""/category/value"":""event"",""/category/defining_code/_type"":""CODE_PHRASE"",""/category/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/category/defining_code/terminology_id/value"":""openehr"",""/category/defining_code/code_string"":""433"",""/context/_type"":""EVENT_CONTEXT"",""/context/start_time/_type"":""DV_DATE_TIME"",""/context/start_time/value"":""2020-10-06T13:30:34.314872+02:00"",""/context/start_time/magnitude"":63737580634,""/context/end_time/_type"":""DV_DATE_TIME"",""/context/end_time/value"":""2020-10-06T13:30:34.317875+02:00"",""/context/end_time/magnitude"":63737580634,""/context/setting/_type"":""DV_CODED_TEXT"",""/context/setting/value"":""dental care"",""/context/setting/defining_code/_type"":""CODE_PHRASE"",""/context/setting/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/context/setting/defining_code/terminology_id/value"":""openehr"",""/context/setting/defining_code/code_string"":""236"",""/archetype_node_id"":""openEHR-EHR-COMPOSITION.encounter.v1"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""de"",""/uid/_type"":""OBJECT_VERSION_ID"",""/uid/value"":""95705e9e-d658-4e60-8e42-240db4478179::ehrbase.org::1"",""/archetype_details/archetype_id/value"":""openEHR-EHR-COMPOSITION.encounter.v1"",""/archetype_details/template_id/value"":""ehrbase_multi_occurrence.de.v1"",""/archetype_details/rm_version"":""1.0.4"",""/archetype_details/_type"":""ARCHETYPED"",""/name/_type"":""DV_TEXT"",""/name/value"":""Encounter"",""/territory/_type"":""CODE_PHRASE"",""/territory/terminology_id/_type"":""TERMINOLOGY_ID"",""/territory/terminology_id/value"":""ISO_3166-1"",""/territory/code_string"":""DE"",""/composer/_type"":""PARTY_IDENTIFIED"",""/composer/name"":""Test""}"
+1,openEHR-EHR-OBSERVATION.body_temperature.v2,OBSERVATION,/content[openEHR-EHR-OBSERVATION.body_temperature.v2],{0},{},0,"{""/_type"":""OBSERVATION"",""/data[at0002]/_type"":""HISTORY"",""/data[at0002]/archetype_node_id"":""at0002"",""/data[at0002]/origin/_type"":""DV_DATE_TIME"",""/data[at0002]/origin/value"":""2020-10-06T13:30:34.326872+02:00"",""/data[at0002]/origin/magnitude"":63737580634,""/data[at0002]/name/_type"":""DV_TEXT"",""/data[at0002]/name/value"":""History"",""/protocol[at0020]/_type"":""ITEM_TREE"",""/protocol[at0020]/items[at0021]/_type"":""ELEMENT"",""/protocol[at0020]/items[at0021]/value/_type"":""DV_CODED_TEXT"",""/protocol[at0020]/items[at0021]/value/value"":""Forehead"",""/protocol[at0020]/items[at0021]/value/defining_code/_type"":""CODE_PHRASE"",""/protocol[at0020]/items[at0021]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/protocol[at0020]/items[at0021]/value/defining_code/terminology_id/value"":""local"",""/protocol[at0020]/items[at0021]/value/defining_code/code_string"":""at0061"",""/protocol[at0020]/archetype_node_id"":""at0020"",""/protocol[at0020]/name/_type"":""DV_TEXT"",""/protocol[at0020]/name/value"":""Protocol"",""/archetype_node_id"":""openEHR-EHR-OBSERVATION.body_temperature.v2"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""de"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/name/_type"":""DV_TEXT"",""/name/value"":""Body temperature"",""/subject/_type"":""PARTY_SELF""}"
+2,openEHR-EHR-OBSERVATION.body_temperature.v2,OBSERVATION,/content[openEHR-EHR-OBSERVATION.body_temperature.v2],{0},{0},1,"{""/data[at0002]/events[at0003]/_type"":""POINT_EVENT"",""/data[at0002]/events[at0003]/data[at0001]/_type"":""ITEM_TREE"",""/data[at0002]/events[at0003]/data[at0001]/items[at0004]/_type"":""ELEMENT"",""/data[at0002]/events[at0003]/data[at0001]/items[at0004]/value/_type"":""DV_QUANTITY"",""/data[at0002]/events[at0003]/data[at0001]/items[at0004]/value/units"":""Cel"",""/data[at0002]/events[at0003]/data[at0001]/items[at0004]/value/magnitude"":22.0,""/data[at0002]/events[at0003]/data[at0001]/archetype_node_id"":""at0001"",""/data[at0002]/events[at0003]/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0002]/events[at0003]/data[at0001]/name/value"":""Tree"",""/data[at0002]/events[at0003]/state[at0029]/_type"":""ITEM_TREE"",""/data[at0002]/events[at0003]/state[at0029]/items[at0030]/_type"":""ELEMENT"",""/data[at0002]/events[at0003]/state[at0029]/items[at0030]/value/_type"":""DV_CODED_TEXT"",""/data[at0002]/events[at0003]/state[at0029]/items[at0030]/value/value"":""Appropriate clothing/bedding"",""/data[at0002]/events[at0003]/state[at0029]/items[at0030]/value/defining_code/_type"":""CODE_PHRASE"",""/data[at0002]/events[at0003]/state[at0029]/items[at0030]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0002]/events[at0003]/state[at0029]/items[at0030]/value/defining_code/terminology_id/value"":""local"",""/data[at0002]/events[at0003]/state[at0029]/items[at0030]/value/defining_code/code_string"":""at0033"",""/data[at0002]/events[at0003]/state[at0029]/items[at0065]/_type"":""ELEMENT"",""/data[at0002]/events[at0003]/state[at0029]/items[at0065]/value/_type"":""DV_COUNT"",""/data[at0002]/events[at0003]/state[at0029]/items[at0065]/value/magnitude"":3,""/data[at0002]/events[at0003]/state[at0029]/archetype_node_id"":""at0029"",""/data[at0002]/events[at0003]/state[at0029]/name/_type"":""DV_TEXT"",""/data[at0002]/events[at0003]/state[at0029]/name/value"":""State"",""/data[at0002]/events[at0003]/archetype_node_id"":""at0003"",""/data[at0002]/events[at0003]/name/_type"":""DV_TEXT"",""/data[at0002]/events[at0003]/name/value"":""Any event"",""/data[at0002]/events[at0003]/time/_type"":""DV_DATE_TIME"",""/data[at0002]/events[at0003]/time/value"":""2020-10-06T13:30:34.328873+02:00"",""/data[at0002]/events[at0003]/time/magnitude"":63737580634}"
+3,openEHR-EHR-OBSERVATION.body_temperature.v2,OBSERVATION,/content[openEHR-EHR-OBSERVATION.body_temperature.v2],{0},{1},1,"{""/data[at0002]/events[at0003]/_type"":""POINT_EVENT"",""/data[at0002]/events[at0003]/data[at0001]/_type"":""ITEM_TREE"",""/data[at0002]/events[at0003]/data[at0001]/items[at0004]/_type"":""ELEMENT"",""/data[at0002]/events[at0003]/data[at0001]/items[at0004]/value/_type"":""DV_QUANTITY"",""/data[at0002]/events[at0003]/data[at0001]/items[at0004]/value/units"":""Cel"",""/data[at0002]/events[at0003]/data[at0001]/items[at0004]/value/magnitude"":11.0,""/data[at0002]/events[at0003]/data[at0001]/archetype_node_id"":""at0001"",""/data[at0002]/events[at0003]/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0002]/events[at0003]/data[at0001]/name/value"":""Tree"",""/data[at0002]/events[at0003]/state[at0029]/_type"":""ITEM_TREE"",""/data[at0002]/events[at0003]/state[at0029]/items[at0030]/_type"":""ELEMENT"",""/data[at0002]/events[at0003]/state[at0029]/items[at0030]/value/_type"":""DV_CODED_TEXT"",""/data[at0002]/events[at0003]/state[at0029]/items[at0030]/value/value"":""Appropriate clothing/bedding"",""/data[at0002]/events[at0003]/state[at0029]/items[at0030]/value/defining_code/_type"":""CODE_PHRASE"",""/data[at0002]/events[at0003]/state[at0029]/items[at0030]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0002]/events[at0003]/state[at0029]/items[at0030]/value/defining_code/terminology_id/value"":""local"",""/data[at0002]/events[at0003]/state[at0029]/items[at0030]/value/defining_code/code_string"":""at0033"",""/data[at0002]/events[at0003]/state[at0029]/items[at0065]/_type"":""ELEMENT"",""/data[at0002]/events[at0003]/state[at0029]/items[at0065]/value/_type"":""DV_COUNT"",""/data[at0002]/events[at0003]/state[at0029]/items[at0065]/value/magnitude"":3,""/data[at0002]/events[at0003]/state[at0029]/archetype_node_id"":""at0029"",""/data[at0002]/events[at0003]/state[at0029]/name/_type"":""DV_TEXT"",""/data[at0002]/events[at0003]/state[at0029]/name/value"":""State"",""/data[at0002]/events[at0003]/archetype_node_id"":""at0003"",""/data[at0002]/events[at0003]/name/_type"":""DV_TEXT"",""/data[at0002]/events[at0003]/name/value"":""Any event"",""/data[at0002]/events[at0003]/time/_type"":""DV_DATE_TIME"",""/data[at0002]/events[at0003]/time/value"":""2020-10-06T13:30:34.328873+02:00"",""/data[at0002]/events[at0003]/time/magnitude"":63737580634}"
+4,openEHR-EHR-OBSERVATION.body_temperature.v2,OBSERVATION,/content[openEHR-EHR-OBSERVATION.body_temperature.v2],{1},{},0,"{""/_type"":""OBSERVATION"",""/data[at0002]/_type"":""HISTORY"",""/data[at0002]/archetype_node_id"":""at0002"",""/data[at0002]/origin/_type"":""DV_DATE_TIME"",""/data[at0002]/origin/value"":""2020-10-06T13:30:34.328873+02:00"",""/data[at0002]/origin/magnitude"":63737580634,""/data[at0002]/name/_type"":""DV_TEXT"",""/data[at0002]/name/value"":""History"",""/protocol[at0020]/_type"":""ITEM_TREE"",""/protocol[at0020]/items[at0021]/_type"":""ELEMENT"",""/protocol[at0020]/items[at0021]/value/_type"":""DV_TEXT"",""/protocol[at0020]/items[at0021]/value/value"":""location"",""/protocol[at0020]/archetype_node_id"":""at0020"",""/protocol[at0020]/name/_type"":""DV_TEXT"",""/protocol[at0020]/name/value"":""Protocol"",""/archetype_node_id"":""openEHR-EHR-OBSERVATION.body_temperature.v2"",""/language/_type"":""CODE_PHRASE"",""/language/terminology_id/_type"":""TERMINOLOGY_ID"",""/language/terminology_id/value"":""ISO_639-1"",""/language/code_string"":""de"",""/encoding/_type"":""CODE_PHRASE"",""/encoding/terminology_id/_type"":""TERMINOLOGY_ID"",""/encoding/terminology_id/value"":""IANA_character-sets"",""/encoding/code_string"":""UTF-8"",""/name/_type"":""DV_TEXT"",""/name/value"":""Body temperature"",""/subject/_type"":""PARTY_SELF""}"
+5,openEHR-EHR-OBSERVATION.body_temperature.v2,OBSERVATION,/content[openEHR-EHR-OBSERVATION.body_temperature.v2],{1},{0},1,"{""/data[at0002]/events[at0003]/_type"":""POINT_EVENT"",""/data[at0002]/events[at0003]/data[at0001]/_type"":""ITEM_TREE"",""/data[at0002]/events[at0003]/data[at0001]/items[at0004]/_type"":""ELEMENT"",""/data[at0002]/events[at0003]/data[at0001]/items[at0004]/value/_type"":""DV_QUANTITY"",""/data[at0002]/events[at0003]/data[at0001]/items[at0004]/value/units"":""Cel"",""/data[at0002]/events[at0003]/data[at0001]/items[at0004]/value/magnitude"":22.0,""/data[at0002]/events[at0003]/data[at0001]/archetype_node_id"":""at0001"",""/data[at0002]/events[at0003]/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0002]/events[at0003]/data[at0001]/name/value"":""Tree"",""/data[at0002]/events[at0003]/state[at0029]/_type"":""ITEM_TREE"",""/data[at0002]/events[at0003]/state[at0029]/items[at0030]/_type"":""ELEMENT"",""/data[at0002]/events[at0003]/state[at0029]/items[at0030]/value/_type"":""DV_CODED_TEXT"",""/data[at0002]/events[at0003]/state[at0029]/items[at0030]/value/value"":""Appropriate clothing/bedding"",""/data[at0002]/events[at0003]/state[at0029]/items[at0030]/value/defining_code/_type"":""CODE_PHRASE"",""/data[at0002]/events[at0003]/state[at0029]/items[at0030]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0002]/events[at0003]/state[at0029]/items[at0030]/value/defining_code/terminology_id/value"":""local"",""/data[at0002]/events[at0003]/state[at0029]/items[at0030]/value/defining_code/code_string"":""at0033"",""/data[at0002]/events[at0003]/state[at0029]/items[at0065]/_type"":""ELEMENT"",""/data[at0002]/events[at0003]/state[at0029]/items[at0065]/value/_type"":""DV_COUNT"",""/data[at0002]/events[at0003]/state[at0029]/items[at0065]/value/magnitude"":3,""/data[at0002]/events[at0003]/state[at0029]/archetype_node_id"":""at0029"",""/data[at0002]/events[at0003]/state[at0029]/name/_type"":""DV_TEXT"",""/data[at0002]/events[at0003]/state[at0029]/name/value"":""State"",""/data[at0002]/events[at0003]/archetype_node_id"":""at0003"",""/data[at0002]/events[at0003]/name/_type"":""DV_TEXT"",""/data[at0002]/events[at0003]/name/value"":""Any event"",""/data[at0002]/events[at0003]/time/_type"":""DV_DATE_TIME"",""/data[at0002]/events[at0003]/time/value"":""2020-10-06T13:30:34.328873+02:00"",""/data[at0002]/events[at0003]/time/magnitude"":63737580634}"
+6,openEHR-EHR-OBSERVATION.body_temperature.v2,OBSERVATION,/content[openEHR-EHR-OBSERVATION.body_temperature.v2],{1},{1},1,"{""/data[at0002]/events[at0003]/_type"":""POINT_EVENT"",""/data[at0002]/events[at0003]/data[at0001]/_type"":""ITEM_TREE"",""/data[at0002]/events[at0003]/data[at0001]/items[at0004]/_type"":""ELEMENT"",""/data[at0002]/events[at0003]/data[at0001]/items[at0004]/value/_type"":""DV_QUANTITY"",""/data[at0002]/events[at0003]/data[at0001]/items[at0004]/value/units"":""Cel"",""/data[at0002]/events[at0003]/data[at0001]/items[at0004]/value/magnitude"":11.0,""/data[at0002]/events[at0003]/data[at0001]/archetype_node_id"":""at0001"",""/data[at0002]/events[at0003]/data[at0001]/name/_type"":""DV_TEXT"",""/data[at0002]/events[at0003]/data[at0001]/name/value"":""Tree"",""/data[at0002]/events[at0003]/state[at0029]/_type"":""ITEM_TREE"",""/data[at0002]/events[at0003]/state[at0029]/items[at0030]/_type"":""ELEMENT"",""/data[at0002]/events[at0003]/state[at0029]/items[at0030]/value/_type"":""DV_CODED_TEXT"",""/data[at0002]/events[at0003]/state[at0029]/items[at0030]/value/value"":""Appropriate clothing/bedding"",""/data[at0002]/events[at0003]/state[at0029]/items[at0030]/value/defining_code/_type"":""CODE_PHRASE"",""/data[at0002]/events[at0003]/state[at0029]/items[at0030]/value/defining_code/terminology_id/_type"":""TERMINOLOGY_ID"",""/data[at0002]/events[at0003]/state[at0029]/items[at0030]/value/defining_code/terminology_id/value"":""local"",""/data[at0002]/events[at0003]/state[at0029]/items[at0030]/value/defining_code/code_string"":""at0033"",""/data[at0002]/events[at0003]/state[at0029]/items[at0065]/_type"":""ELEMENT"",""/data[at0002]/events[at0003]/state[at0029]/items[at0065]/value/_type"":""DV_COUNT"",""/data[at0002]/events[at0003]/state[at0029]/items[at0065]/value/magnitude"":3,""/data[at0002]/events[at0003]/state[at0029]/archetype_node_id"":""at0029"",""/data[at0002]/events[at0003]/state[at0029]/name/_type"":""DV_TEXT"",""/data[at0002]/events[at0003]/state[at0029]/name/value"":""State"",""/data[at0002]/events[at0003]/archetype_node_id"":""at0003"",""/data[at0002]/events[at0003]/name/_type"":""DV_TEXT"",""/data[at0002]/events[at0003]/name/value"":""Any event"",""/data[at0002]/events[at0003]/time/_type"":""DV_DATE_TIME"",""/data[at0002]/events[at0003]/time/value"":""2020-10-06T13:30:34.328873+02:00"",""/data[at0002]/events[at0003]/time/magnitude"":63737580634}"
diff --git a/serialisation_conformance_test/src/test/java/org/ehrbase/conformance_test/matrix/MatrixConformanceTest.java b/serialisation_conformance_test/src/test/java/org/ehrbase/conformance_test/matrix/MatrixConformanceTest.java
new file mode 100644
index 000000000..5d8a9255f
--- /dev/null
+++ b/serialisation_conformance_test/src/test/java/org/ehrbase/conformance_test/matrix/MatrixConformanceTest.java
@@ -0,0 +1,172 @@
+/*
+ * Copyright (c) 2021 vitasystems GmbH and Hannover Medical School.
+ *
+ * This file is part of project openEHR_SDK
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * https://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.ehrbase.conformance_test.matrix;
+
+import com.fasterxml.jackson.core.JsonProcessingException;
+import com.fasterxml.jackson.databind.ObjectMapper;
+import com.nedap.archie.rm.composition.Composition;
+import java.io.IOException;
+import java.nio.charset.StandardCharsets;
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.List;
+import java.util.Map;
+import org.apache.commons.io.IOUtils;
+import org.apache.commons.lang3.ArrayUtils;
+import org.assertj.core.api.SoftAssertions;
+import org.ehrbase.conformance_test.templateprovider.TestDataTemplateProvider;
+import org.ehrbase.serialisation.RMDataFormat;
+import org.ehrbase.serialisation.flatencoding.FlatFormat;
+import org.ehrbase.serialisation.flatencoding.FlatJasonProvider;
+import org.ehrbase.serialisation.jsonencoding.ArchieObjectMapperProvider;
+import org.ehrbase.serialisation.matrixencoding.FixedCodeSetEncoder;
+import org.ehrbase.serialisation.matrixencoding.MatrixFormat;
+import org.ehrbase.test_data.composition.CompositionTestDataConformanceSDTJson;
+import org.ehrbase.test_data.composition.CompositionTestDataSimSDTJson;
+import org.ehrbase.test_data.composition.CompositionTestDataSimSDTJsonInterface;
+import org.ehrbase.validation.CompositionValidator;
+import org.junit.jupiter.params.ParameterizedTest;
+import org.junit.jupiter.params.provider.Arguments;
+import org.junit.jupiter.params.provider.MethodSource;
+
+class MatrixConformanceTest {
+
+ private static final TestDataTemplateProvider TEMPLATE_PROVIDER = new TestDataTemplateProvider();
+
+ private static List testRoundTripArguments() {
+ List arguments = new ArrayList<>();
+
+ Arrays.stream(CompositionTestDataConformanceSDTJson.values()).forEach(test -> {
+ switch (test) {
+ default:
+ arguments.add(Arguments.of(test, new String[] {}, new String[] {}, new String[] {}));
+ }
+ });
+ arguments.add(Arguments.of(
+ CompositionTestDataSimSDTJson.ALL_TYPES,
+ new String[] {
+ "Missing path: test_all_types/test_all_types:0/identifier|id, value: 55175056",
+ "Missing path: test_all_types/test_all_types:0/proportion_any|type, value: 1"
+ },
+ new String[] {
+ "Extra path: test_all_types/test_all_types:0/identifier, value: 55175056",
+ "Extra path: test_all_types/test_all_types:0/proportion_any|type, value: 1.0"
+ },
+ new String[] {}));
+ return arguments;
+ }
+
+ @ParameterizedTest
+ @MethodSource("testRoundTripArguments")
+ void testRoundTrip(
+ CompositionTestDataSimSDTJsonInterface testData,
+ String[] expectedMissing,
+ String[] expectedExtra,
+ String[] expectedValidationErrorPath)
+ throws IOException {
+
+ MatrixFormat cut = new MatrixFormat(TEMPLATE_PROVIDER);
+
+ test(testData, expectedMissing, expectedExtra, expectedValidationErrorPath, cut);
+ }
+
+ @ParameterizedTest
+ @MethodSource("testRoundTripArguments")
+ void testRoundTripEncoding(
+ CompositionTestDataSimSDTJsonInterface testData,
+ String[] expectedMissing,
+ String[] expectedExtra,
+ String[] expectedValidationErrorPath)
+ throws IOException {
+
+ MatrixFormat cut = new MatrixFormat(TEMPLATE_PROVIDER, new FixedCodeSetEncoder());
+
+ test(testData, expectedMissing, expectedExtra, expectedValidationErrorPath, cut);
+ }
+
+ private void test(
+ CompositionTestDataSimSDTJsonInterface testData,
+ String[] expectedMissing,
+ String[] expectedExtra,
+ String[] expectedValidationErrorPath,
+ MatrixFormat cut)
+ throws IOException {
+ String templateId = testData.getTemplate().getTemplateId();
+
+ RMDataFormat flatJson = new FlatJasonProvider(TEMPLATE_PROVIDER).buildFlatJson(FlatFormat.SIM_SDT, templateId);
+
+ String flat = IOUtils.toString(testData.getStream(), StandardCharsets.UTF_8);
+ Composition composition = flatJson.unmarshal(flat);
+
+ String db_encoded = cut.marshal(composition);
+
+ Composition actual = cut.unmarshal(db_encoded);
+
+ SoftAssertions softAssertions = new SoftAssertions();
+
+ softAssertions.assertThat(actual).isNotNull();
+
+ CompositionValidator rmObjectValidator = new CompositionValidator();
+
+ softAssertions
+ .assertThat(rmObjectValidator.validate(
+ actual, TEMPLATE_PROVIDER.buildIntrospect(templateId).orElseThrow()))
+ .filteredOn(d -> !ArrayUtils.contains(expectedValidationErrorPath, d.getAqlPath()))
+ .isEmpty();
+
+ String actualString = flatJson.marshal(actual);
+
+ String expected = IOUtils.toString(testData.getStream(), StandardCharsets.UTF_8);
+
+ List errors = compere(actualString, expected);
+
+ softAssertions
+ .assertThat(errors)
+ .filteredOn(s -> s.startsWith("Missing"))
+ .containsExactlyInAnyOrder(expectedMissing);
+
+ softAssertions
+ .assertThat(errors)
+ .filteredOn(s -> s.startsWith("Extra"))
+ .containsExactlyInAnyOrder(expectedExtra);
+
+ softAssertions.assertAll();
+ }
+
+ private List compere(String actualJson, String expectedJson) throws JsonProcessingException {
+ List errors = new ArrayList<>();
+ ObjectMapper objectMapper = ArchieObjectMapperProvider.getObjectMapper();
+
+ Map actual = objectMapper.readValue(actualJson, Map.class);
+ Map expected = objectMapper.readValue(expectedJson, Map.class);
+
+ actual.forEach((key, value) -> {
+ if (!expected.containsKey(key) || !expected.get(key).equals(value)) {
+ errors.add(String.format("Missing path: %s, value: %s", key, value));
+ }
+ });
+
+ expected.forEach((key, value) -> {
+ if (!actual.containsKey(key) || !actual.get(key).equals(value)) {
+ errors.add(String.format("Extra path: %s, value: %s", key, value));
+ }
+ });
+
+ return errors;
+ }
+}
diff --git a/util/src/main/java/org/ehrbase/util/rmconstants/RmConstants.java b/util/src/main/java/org/ehrbase/util/rmconstants/RmConstants.java
index b02ba3aa6..0a065637f 100644
--- a/util/src/main/java/org/ehrbase/util/rmconstants/RmConstants.java
+++ b/util/src/main/java/org/ehrbase/util/rmconstants/RmConstants.java
@@ -38,4 +38,5 @@ private RmConstants() {}
public static final String EVENT = "EVENT";
public static final String POINT_EVENT = "POINT_EVENT";
public static final String INTERVAL_EVENT = "INTERVAL_EVENT";
+ public static final String FEEDER_AUDIT = "FEEDER_AUDIT";
}
diff --git a/web-template/pom.xml b/web-template/pom.xml
index c60ead903..037aa1d37 100644
--- a/web-template/pom.xml
+++ b/web-template/pom.xml
@@ -63,6 +63,10 @@
com.jayway.jsonpath
json-path
+
+ org.apache.commons
+ commons-csv
+
org.ehrbase.openehr.sdk
test-data