@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 -------------------------------------------------------------------

<http://hl7.org/fhir/us/mihr/Encounter/encounter-delivery-jane-smith-example> a fhir:Encounter ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "encounter-delivery-jane-smith-example"] ; # 
  fhir:meta [
     fhir:versionId [ fhir:v "2" ] ;
     fhir:lastUpdated [ fhir:v "2022-03-15T17:01:29.270+00:00"^^xsd:dateTime ] ;
     fhir:source [ fhir:v "#FPZcqaEWOKVCssxi"^^xsd:anyURI ] ;
     fhir:profile ( [
       fhir:v "http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"^^xsd:anyURI ;
       fhir:link <http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative: Encounter</b><a name=\"encounter-delivery-jane-smith-example\"> </a></p><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\">Resource Encounter &quot;encounter-delivery-jane-smith-example&quot; Version &quot;2&quot; Updated &quot;2022-03-15 17:01:29+0000&quot; </p><p style=\"margin-bottom: 0px\">Information Source: #FPZcqaEWOKVCssxi!</p><p style=\"margin-bottom: 0px\">Profile: <a href=\"http://hl7.org/fhir/us/core/STU5.0.1/StructureDefinition-us-core-encounter.html\">US Core Encounter Profile</a></p></div><p><b>status</b>: finished</p><p><b>class</b>: Inpatient Encounter (Details: http://terminology.hl7.org/CodeSystem/v3-ActCode code IMP = 'inpatient encounter', stated as 'Inpatient Encounter')</p><p><b>type</b>: Encounter for problem <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"https://browser.ihtsdotools.org/\">SNOMED CT</a>#185347001)</span></p><p><b>subject</b>: <a href=\"Patient-patient-jane-smith-example.html\">Patient/patient-jane-smith-example</a> &quot; SMITH&quot;</p><p><b>period</b>: 2021-09-26 12:00:14-0500 --&gt; 2021-09-27 18:00:14-0500</p></div>"
  ] ; # 
  fhir:status [ fhir:v "finished"] ; # 
  fhir:class [
     fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v3-ActCode"^^xsd:anyURI ] ;
     fhir:code [ fhir:v "IMP" ] ;
     fhir:display [ fhir:v "Inpatient Encounter" ]
  ] ; # 
  fhir:type ( [
     fhir:coding ( [
       a sct:185347001 ;
       fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "185347001" ]
     ] ) ;
     fhir:text [ fhir:v "Encounter for problem" ]
  ] ) ; # 
  fhir:subject [
     fhir:link <http://hl7.org/fhir/us/mihr/Patient/patient-jane-smith-example> ;
     fhir:reference [ fhir:v "Patient/patient-jane-smith-example" ]
  ] ; # 
  fhir:period [
     fhir:start [ fhir:v "2021-09-26T12:00:14-05:00"^^xsd:dateTime ] ;
     fhir:end [ fhir:v "2021-09-27T18:00:14-05:00"^^xsd:dateTime ]
  ] . # 

<http://hl7.org/fhir/us/mihr/Patient/patient-jane-smith-example> a fhir:us .

# -------------------------------------------------------------------------------------

