Mona FHIR Implementation Guide
0.4.50648 - ci-build

Mona FHIR Implementation Guide - Local Development build (v0.4.50648). See the Directory of published versions

: EncounterRequiredFieldsExample - TTL Representation

Raw ttl | Download


@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

 a fhir:Encounter;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "EncounterRequiredFieldsExample"];
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "https://fhir.mona.icu/StructureDefinition/mona-encounter";
       fhir:index 0;
       fhir:link <https://fhir.mona.icu/StructureDefinition/mona-encounter>     ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative</b></p><p><b>identifier</b>: id: some-patient-case</p><p><b>status</b>: in-progress</p><p><b>class</b>: <span title=\"{http://terminology.hl7.org/CodeSystem/v3-ActCode IMP}\">inpatient encounter</span></p><p><b>subject</b>: <a href=\"Patient-PatientExample.html\">Generated Summary: id: some-patient-number; John Doe (OFFICIAL); gender: male; birthDate: 1951-05-28; deceased: 2020-12-13</a></p><p><b>period</b>: Apr 14, 2021, 12:06:11 PM --&gt; (ongoing)</p><blockquote><p><b>location</b></p><p><b>location</b>: <a href=\"Location-WardExample.html\">Generated Summary: status: active; name: Ward A; alias: Ward; <span title=\"Codes: {http://terminology.hl7.org/CodeSystem/location-physical-type wa}\">Ward</span></a></p><p><b>status</b>: active</p><p><b>physicalType</b>: <span title=\"Codes: {http://terminology.hl7.org/CodeSystem/location-physical-type wa}\">Ward</span></p><p><b>period</b>: 2021-04-14 --&gt; (ongoing)</p></blockquote><blockquote><p><b>location</b></p><p><b>location</b>: <a href=\"Location-BedExample.html\">Generated Summary: status: active; name: Bed 1; alias: Bed; <span title=\"Codes: {http://terminology.hl7.org/CodeSystem/location-physical-type bd}\">Bed</span></a></p><p><b>status</b>: active</p><p><b>physicalType</b>: <span title=\"Codes: {http://terminology.hl7.org/CodeSystem/location-physical-type bd}\">Bed</span></p><p><b>period</b>: 2021-04-14 --&gt; (ongoing)</p></blockquote></div>"
  ];
  fhir:Encounter.identifier [
     fhir:index 0;
     fhir:Identifier.system [ fhir:value "https://fhir.mona.icu/Identifier/mona-encounter-patient-case" ];
     fhir:Identifier.value [ fhir:value "some-patient-case" ]
  ];
  fhir:Encounter.status [ fhir:value "in-progress"];
  fhir:Encounter.class [
     fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-ActCode" ];
     fhir:Coding.code [ fhir:value "IMP" ]
  ];
  fhir:Encounter.subject [
     fhir:Reference.reference [ fhir:value "Patient/PatientExample" ]
  ];
  fhir:Encounter.period [
     fhir:Period.start [ fhir:value "2021-04-14T12:06:11+00:00"^^xsd:dateTime ]
  ];
  fhir:Encounter.location [
     fhir:index 0;
     fhir:Encounter.location.location [
       fhir:Reference.reference [ fhir:value "Location/WardExample" ]     ];
     fhir:Encounter.location.status [ fhir:value "active" ];
     fhir:Encounter.location.physicalType [
       fhir:CodeableConcept.coding [
         fhir:index 0;
         fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/location-physical-type" ];
         fhir:Coding.code [ fhir:value "wa" ]       ]     ];
     fhir:Encounter.location.period [
       fhir:Period.start [ fhir:value "2021-04-14"^^xsd:date ]     ]
  ], [
     fhir:index 1;
     fhir:Encounter.location.location [
       fhir:Reference.reference [ fhir:value "Location/BedExample" ]     ];
     fhir:Encounter.location.status [ fhir:value "active" ];
     fhir:Encounter.location.physicalType [
       fhir:CodeableConcept.coding [
         fhir:index 0;
         fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/location-physical-type" ];
         fhir:Coding.code [ fhir:value "bd" ]       ]     ];
     fhir:Encounter.location.period [
       fhir:Period.start [ fhir:value "2021-04-14"^^xsd:date ]     ]
  ].

# - ontology header ------------------------------------------------------------

 a owl:Ontology;
  owl:imports fhir:fhir.ttl.