@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 -------------------------------------------------------------------

<http://hl7.org/fhir/uv/fhir-clinical-document/Encounter/revised-encounter-example> a fhir:Encounter ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "revised-encounter-example"] ;
  fhir:Resource.meta [
     fhir:Meta.lastUpdated [ fhir:value "2024-05-07T11:28:17.000+00:00"^^xsd:dateTime ]
  ] ;
  fhir:Resource.language [ fhir:value "en"] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ] ;
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\"><p class=\"res-header-id\"><b>Generated Narrative: Encounter revised-encounter-example</b></p><a name=\"revised-encounter-example\"> </a><a name=\"hcrevised-encounter-example\"> </a><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\">Last updated: 2024-05-07 11:28:17+0000; Language: en</p></div><p><b>identifier</b>: S100</p><p><b>status</b>: Finished</p><p><b>class</b>: <a href=\"http://terminology.hl7.org/7.2.0/CodeSystem-v3-ActCode.html#v3-ActCode-IMP\">ActCode: IMP</a> (inpatient encounter)</p><p><b>type</b>: <span title=\"Codes:\">Orthopedic Admission</span></p><p><b>subject</b>: <a href=\"Patient-revised-Patient.html\">Eve Everywoman</a></p><p><b>period</b>: 2024-05-03 13:28:17+0000 --&gt; 2024-05-07 11:28:17+0000</p><h3>Hospitalizations</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>DischargeDisposition</b></td></tr><tr><td style=\"display: none\">*</td><td><span title=\"Codes:\">Discharged to care of GP</span></td></tr></table></div>"
  ] ;
  fhir:Encounter.identifier [
     fhir:index -1 ;
     fhir:Identifier.value [ fhir:value "S100" ]
  ] ;
  fhir:Encounter.status [ fhir:value "finished"] ;
  fhir:Encounter.class [
     fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-ActCode" ] ;
     fhir:Coding.code [ fhir:value "IMP" ] ;
     fhir:Coding.display [ fhir:value "inpatient encounter" ]
  ] ;
  fhir:Encounter.type [
     fhir:index -1 ;
     fhir:CodeableConcept.text [ fhir:value "Orthopedic Admission" ]
  ] ;
  fhir:Encounter.subject [
     fhir:link <http://hl7.org/fhir/uv/fhir-clinical-document/Patient/revised-Patient> ;
     fhir:Reference.reference [ fhir:value "Patient/revised-Patient" ] ;
     fhir:Reference.display [ fhir:value "Eve Everywoman" ]
  ] ;
  fhir:Encounter.period [
     fhir:Period.start [ fhir:value "2024-05-03T13:28:17.000+00:00"^^xsd:dateTime ] ;
     fhir:Period.end [ fhir:value "2024-05-07T11:28:17.000+00:00"^^xsd:dateTime ]
  ] ;
  fhir:Encounter.hospitalization [
     fhir:Encounter.hospitalization.dischargeDisposition [
       fhir:CodeableConcept.text [ fhir:value "Discharged to care of GP" ]
     ]
  ] .

<http://hl7.org/fhir/uv/fhir-clinical-document/Patient/revised-Patient> a fhir:uv .

# - ontology header ------------------------------------------------------------

<http://hl7.org/fhir/uv/fhir-clinical-document/Encounter/revised-encounter-example.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/uv/fhir-clinical-document/Encounter/revised-encounter-example.ttl> .

# -------------------------------------------------------------------------------------

