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

Location 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 xsd: <http://www.w3.org/2001/XMLSchema#> .

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

 a fhir:Location;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "location-200014"];
  fhir:Resource.meta [
     fhir:Meta.lastUpdated [ fhir:value "2018-10-18T16:04:38.978+00:00"^^xsd:dateTime ];
     fhir:Meta.profile [
       fhir:value "https://fhir.hl7.org.uk/STU3/StructureDefinition/CareConnect-Location-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>: location-200014</p><p><b>meta</b>: </p><p><b>identifier</b>: RC8-EDP</p><p><b>name</b>: Pinderfields: Emergency Department</p><p><b>type</b>: Emergency trauma unit <span style=\"background: LightGoldenRodYellow\">(Details : {http://hl7.org/fhir/v3/RoleCode code 'ETU' = 'Emergency trauma unit', given as 'Emergency trauma unit'})</span></p><p><b>telecom</b>: ph: airwave-87351940(MOBILE)</p><h3>Positions</h3><table class=\"grid\"><tr><td>-</td><td><b>Longitude</b></td><td><b>Latitude</b></td></tr><tr><td>*</td><td>-1.4885550000</td><td>53.6924180000</td></tr></table><p><b>managingOrganization</b>: <a href=\"Location-location-200014.html\">Mid Yorkshire Hospitals Nhs Trust. Generated Summary: id: organization-200001; RC8; name: North Riding NHS Trust</a></p></div>"
  ];
  fhir:Location.identifier [
     fhir:index 0;
     fhir:Identifier.system [ fhir:value "https://fhir.yas.nhs.uk/Location/Identifier" ];
     fhir:Identifier.value [ fhir:value "RC8-EDP" ]
  ];
  fhir:Location.name [ fhir:value "Pinderfields: Emergency Department"];
  fhir:Location.type [
     fhir:CodeableConcept.coding [
       fhir:index 0;
       fhir:Coding.system [ fhir:value "http://hl7.org/fhir/v3/RoleCode" ];
       fhir:Coding.code [ fhir:value "ETU" ];
       fhir:Coding.display [ fhir:value "Emergency trauma unit" ]     ]
  ];
  fhir:Location.telecom [
     fhir:index 0;
     fhir:ContactPoint.system [ fhir:value "phone" ];
     fhir:ContactPoint.value [ fhir:value "airwave-87351940" ];
     fhir:ContactPoint.use [ fhir:value "mobile" ]
  ];
  fhir:Location.position [
     fhir:Location.position.longitude [ fhir:value "-1.4885550000"^^xsd:decimal ];
     fhir:Location.position.latitude [ fhir:value "53.6924180000"^^xsd:decimal ]
  ];
  fhir:Location.managingOrganization [
     fhir:Reference.reference [ fhir:value "Organization/organization-200001" ];
     fhir:Reference.display [ fhir:value "Mid Yorkshire Hospitals Nhs Trust" ]
  ].

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

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