@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/vrdr/Observation/PlaceOfInjury-Example1> a fhir:Observation ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "PlaceOfInjury-Example1"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://hl7.org/fhir/us/vrdr/StructureDefinition/vrdr-place-of-injury"^^xsd:anyURI ;
       fhir:link <http://hl7.org/fhir/us/vrdr/StructureDefinition/vrdr-place-of-injury>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Observation PlaceOfInjury-Example1</b></p><a name=\"PlaceOfInjury-Example1\"> </a><a name=\"hcPlaceOfInjury-Example1\"> </a><a name=\"PlaceOfInjury-Example1-en-US\"> </a><p><b>status</b>: Final</p><p><b>code</b>: <span title=\"Codes:{http://loinc.org 11376-1}\">Injury location</span></p><p><b>subject</b>: NCHS generated</p><p><b>value</b>: <span title=\"Codes:{http://loinc.org LA14084-0}\">Home</span></p></div>"
  ] ; # 
  fhir:status [ fhir:v "final"] ; # 
  fhir:code [
     fhir:coding ( [
       a loinc:11376-1 ;
       fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "11376-1" ]
     ] )
  ] ; # 
  fhir:subject [
     fhir:display [ fhir:v "NCHS generated" ]
  ] ; # 
  fhir:value [
     a fhir:CodeableConcept ;
     fhir:coding ( [
       a loinc:LA14084-0 ;
       fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "LA14084-0" ] ;
       fhir:display [ fhir:v "Home" ]
     ] )
  ] . # 

# -------------------------------------------------------------------------------------

