INTEROPen CareConnect Base STU3 Implementation Guide
3.0.0 - CI Build

INTEROPen CareConnect Base STU3 Implementation Guide - Local Development build (v3.0.0). See the Directory of published versions

Encounter emergency example - TTL Representation

(back to description)

Raw ttl

Source view

@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 sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

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

 a fhir:Encounter;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "encounter-735"];
  fhir:Resource.meta [
     fhir:Meta.lastUpdated [ fhir:value "2018-12-06T13:44:10.257+00:00"^^xsd:dateTime ];
     fhir:Meta.profile [
       fhir:value "https://fhir.hl7.org.uk/STU3/StructureDefinition/CareConnect-Encounter-1";
       fhir:index 0     ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative with Details</b></p><p><b>id</b>: encounter-735</p><p><b>meta</b>: </p><p><b>identifier</b>: 663</p><p><b>status</b>: in-progress</p><p><b>class</b>: emergency (Details: http://hl7.org/fhir/v3/ActCode code EMER = 'emergency', stated as 'emergency')</p><p><b>type</b>: Ambulance-based care <span style=\"background: LightGoldenRodYellow\">(Details : {SNOMED CT code '11424001' = 'Ambulance-based care', given as 'Ambulance-based care'})</span></p><p><b>subject</b>: <a href=\"Encounter-encounter-735.html\">Miss Bernie Kanfeld. Generated Summary: id: patient-1; 9876543210, ABC8650149; Bernie Kanfeld (OFFICIAL); ph: 0115 9737320(HOME), bernie.kanfeld@nhsdigital.nhs.uk(HOME); gender: female; birthDate: 1998-03-19; <span title=\"Codes: {http://hl7.org/fhir/v3/MaritalStatus S}\">Never Married</span></a></p><p><b>period</b>: 6 Dec 2018, 13:39:04 --&gt; (ongoing)</p><h3>Locations</h3><table class=\"grid\"><tr><td>-</td><td><b>Location</b></td><td><b>Status</b></td></tr><tr><td>*</td><td><a href=\"Encounter-encounter-735.html\">Pinderfields: Emergency Department. Generated Summary: id: location-200014; RC8-EDP; name: Pinderfields: Emergency Department; <span title=\"Codes: {http://hl7.org/fhir/v3/RoleCode ETU}\">Emergency trauma unit</span>; ph: airwave-87351940(MOBILE)</a></td><td>planned</td></tr></table><p><b>serviceProvider</b>: <a href=\"Encounter-encounter-735.html\">North Riding NHS Trust. Generated Summary: id: organization-200001; RC8; name: North Riding NHS Trust</a></p><p><b>partOf</b>: <a href=\"Encounter-encounter-735.html\">Generated Summary: id: encounter-1; status: arrived; <span title=\"{http://hl7.org/fhir/v3/ActCode IMP}\">inpatient encounter</span>; <span title=\"Codes: {http://snomed.info/sct 281685003}\">Admission for care</span>; <span title=\"Codes: {http://hl7.org/fhir/v3/ActPriority R}\">routine</span>; period: 20 Oct 2010, 18:16:00 --&gt; (ongoing)</a></p></div>"
  ];
  fhir:Encounter.identifier [
     fhir:index 0;
     fhir:Identifier.system [ fhir:value "https://fhir.yas.nhs.uk/Encounter/Identifier" ];
     fhir:Identifier.value [ fhir:value "663" ]
  ];
  fhir:Encounter.status [ fhir:value "in-progress"];
  fhir:Encounter.class [
     fhir:Coding.system [ fhir:value "http://hl7.org/fhir/v3/ActCode" ];
     fhir:Coding.code [ fhir:value "EMER" ];
     fhir:Coding.display [ fhir:value "emergency" ]
  ];
  fhir:Encounter.type [
     fhir:index 0;
     fhir:CodeableConcept.coding [
       fhir:index 0;
       a sct:11424001;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
       fhir:Coding.code [ fhir:value "11424001" ];
       fhir:Coding.display [ fhir:value "Ambulance-based care" ]     ]
  ];
  fhir:Encounter.subject [
     fhir:Reference.reference [ fhir:value "Patient/patient-1" ];
     fhir:Reference.display [ fhir:value "Miss Bernie Kanfeld" ]
  ];
  fhir:Encounter.period [
     fhir:Period.start [ fhir:value "2018-12-06T13:39:04+00:00"^^xsd:dateTime ]
  ];
  fhir:Encounter.location [
     fhir:index 0;
     fhir:Encounter.location.location [
       fhir:Reference.reference [ fhir:value "Location/location-200014" ];
       fhir:Reference.display [ fhir:value "Pinderfields: Emergency Department" ]     ];
     fhir:Encounter.location.status [ fhir:value "planned" ]
  ];
  fhir:Encounter.serviceProvider [
     fhir:Reference.reference [ fhir:value "Organization/organization-200001" ];
     fhir:Reference.display [ fhir:value "North Riding NHS Trust" ]
  ];
  fhir:Encounter.partOf [
     fhir:Reference.reference [ fhir:value "Encounter/encounter-1" ]
  ].

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

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