@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:List; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "example-simple-empty"]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "
\n

Patient Admission Waitoing list

\n
" ]; fhir:List.status [ fhir:value "current"]; fhir:List.mode [ fhir:value "snapshot"]; fhir:List.code [ fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://acme.com/list-codes" ]; fhir:Coding.code [ fhir:value "346638" ]; fhir:Coding.display [ fhir:value "Patient Admission List" ] ] ]; fhir:List.date [ fhir:value "2016-07-14T11:54:05+10:00"^^xsd:dateTime] . # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl; owl:versionIRI . # -------------------------------------------------------------------------------------