@prefix fhir: <http://hl7.org/fhir/> .
@prefix loinc: <https://loinc.org/rdf/> .
@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/us/mihr/Observation/observation-child-john-smith-example> a fhir:Observation ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "observation-child-john-smith-example"] ; # 
  fhir:meta [
     fhir:versionId [ fhir:v "2" ] ;
     fhir:lastUpdated [ fhir:v "2022-03-15T19:44:07.305+00:00"^^xsd:dateTime ] ;
     fhir:source [ fhir:v "#6e8TbvYYQXBdERa1"^^xsd:anyURI ] ;
     fhir:profile ( [
       fhir:v "http://hl7.org/fhir/us/vr-common-library/StructureDefinition/Observation-apgar-score"^^xsd:anyURI ;
       fhir:link <http://hl7.org/fhir/us/vr-common-library/StructureDefinition/Observation-apgar-score>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative: Observation</b><a name=\"observation-child-john-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 Observation &quot;observation-child-john-smith-example&quot; Version &quot;2&quot; Updated &quot;2022-03-15 19:44:07+0000&quot; </p><p style=\"margin-bottom: 0px\">Information Source: #6e8TbvYYQXBdERa1!</p><p style=\"margin-bottom: 0px\">Profile: <a href=\"http://hl7.org/fhir/us/vr-common-library/STU1/StructureDefinition-Observation-apgar-score.html\">Observation - APGAR Score</a></p></div><p><b>status</b>: final</p><p><b>code</b>: 5 minute Apgar Score <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"https://loinc.org/\">LOINC</a>#9274-2)</span></p><p><b>subject</b>: <a href=\"Patient-patient-child-john-smith-example.html\">Patient/patient-child-john-smith-example: John Smith</a> &quot; SMITH&quot;</p><p><b>value</b>: 7</p></div>"
  ] ; # 
  fhir:status [ fhir:v "final"] ; # 
  fhir:code [
     fhir:coding ( [
       a loinc:9274-2 ;
       fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "9274-2" ] ;
       fhir:display [ fhir:v "5 minute Apgar Score" ]
     ] ) ;
     fhir:text [ fhir:v "5 minute Apgar Score" ]
  ] ; # 
  fhir:subject [
     fhir:link <http://hl7.org/fhir/us/mihr/Patient/patient-child-john-smith-example> ;
     fhir:reference [ fhir:v "Patient/patient-child-john-smith-example" ] ;
     fhir:display [ fhir:v "John Smith" ]
  ] ; # 
  fhir:value [ fhir:v "7"^^xsd:integer] . # 

<http://hl7.org/fhir/us/mihr/Patient/patient-child-john-smith-example> a fhir:us .

# -------------------------------------------------------------------------------------

