@prefix fhir: <http://hl7.org/fhir/> .
@prefix loinc: <https://loinc.org/rdf/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@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/Observation/Observation-541a72a8-df75-4484-ac89-ac4923f03b81> a fhir:Observation ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "Observation-541a72a8-df75-4484-ac89-ac4923f03b81"] ; # 
  fhir:meta [
     fhir:lastUpdated [ fhir:v "2024-05-03T14:28:17.000+00:00"^^xsd:dateTime ]
  ] ; # 
  fhir:language [ fhir:v "en"] ; # 
  fhir:text [
     fhir:status [ fhir:v "additional" ] ;
     fhir:div [ fhir:v "<div xml:lang=\"en\" xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\">Acute Asthmatic attack. Was wheezing for days prior to admission.</div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:status [ fhir:v "final"] ; # 
  fhir:code [
     fhir:coding ( [
       a loinc:46241-6 ;
       fhir:system [
         fhir:v "http://loinc.org"^^xsd:anyURI ;
         fhir:l <http://loinc.org>
       ] ;
       fhir:code [ fhir:v "46241-6" ]
     ] ) ;
     fhir:text [ fhir:v "Reason for admission" ]
  ] ; # 
  fhir:subject [
     fhir:l <http://hl7.org/fhir/uv/fhir-clinical-document/Patient/patient-example> ;
     fhir:reference [ fhir:v "Patient/patient-example" ] ;
     fhir:display [ fhir:v "Eve Everiewoman" ]
  ] ; # 
  fhir:encounter [
     fhir:display [ fhir:v "http://fhir.healthintersections.com.au/open/Encounter/encounter-example" ]
  ] ; # 
  fhir:effective [
     a fhir:DateTime ;
     fhir:v "2023-08-03"^^xsd:date
  ] ; # 
  fhir:performer ( [
     fhir:l <http://hl7.org/fhir/uv/fhir-clinical-document/Practitioner/Doctor2> ;
     fhir:reference [ fhir:v "Practitioner/Doctor2" ] ;
     fhir:display [ fhir:v "Dr Careful" ]
  ] ) ; # 
  fhir:value [
     a fhir:String ;
     fhir:v "Acute Asthmatic attack. Was wheezing for days prior to admission."
  ] . # 

<http://hl7.org/fhir/uv/fhir-clinical-document/Patient/patient-example> a fhir:Uv .

<http://hl7.org/fhir/uv/fhir-clinical-document/Practitioner/Doctor2> a fhir:Uv .

# -------------------------------------------------------------------------------------

