@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/CauseOfDeathPart1-Example1> a fhir:Observation ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "CauseOfDeathPart1-Example1"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://hl7.org/fhir/us/vrdr/StructureDefinition/vrdr-cause-of-death-part1"^^xsd:anyURI ;
       fhir:link <http://hl7.org/fhir/us/vrdr/StructureDefinition/vrdr-cause-of-death-part1>
     ] )
  ] ; # 
  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 CauseOfDeathPart1-Example1</b></p><a name=\"CauseOfDeathPart1-Example1\"> </a><a name=\"hcCauseOfDeathPart1-Example1\"> </a><a name=\"CauseOfDeathPart1-Example1-en-US\"> </a><p><b>status</b>: Final</p><p><b>code</b>: <span title=\"Codes:{http://loinc.org 69453-9}\">Cause of death [US Standard Certificate of Death]</span></p><p><b>subject</b>: <a href=\"Patient-Decedent-Example1.html\">Madelyn Patel (official) Female, DoB: 1978-03-12 ( Social Beneficiary Identifier: SSN#987654321)</a></p><p><b>performer</b>: <a href=\"Practitioner-Certifier-Example1.html\">Practitioner Jim Black (official)</a></p><p><b>value</b>: <span title=\"Codes:\">Cardiopulmonary arrest</span></p><blockquote><p><b>component</b></p><p><b>code</b>: <span title=\"Codes:{http://hl7.org/fhir/us/vrdr/CodeSystem/vrdr-component-cs lineNumber}\">line number</span></p><p><b>value</b>: 1</p></blockquote><blockquote><p><b>component</b></p><p><b>code</b>: <span title=\"Codes:{http://loinc.org 69440-6}\">Disease onset to death interval</span></p><p><b>value</b>: 4 hours</p></blockquote></div>"
  ] ; # 
  fhir:status [ fhir:v "final"] ; # 
  fhir:code [
     fhir:coding ( [
       a loinc:69453-9 ;
       fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "69453-9" ]
     ] )
  ] ; # 
  fhir:subject [
     fhir:link <http://hl7.org/fhir/us/vrdr/Patient/Decedent-Example1> ;
     fhir:reference [ fhir:v "Patient/Decedent-Example1" ]
  ] ; # 
  fhir:performer ( [
     fhir:link <http://hl7.org/fhir/us/vrdr/Practitioner/Certifier-Example1> ;
     fhir:reference [ fhir:v "Practitioner/Certifier-Example1" ]
  ] ) ; # 
  fhir:value [
     a fhir:CodeableConcept ;
     fhir:text [ fhir:v "Cardiopulmonary arrest" ]
  ] ; # 
  fhir:component ( [
     fhir:code [
       fhir:coding ( [
         fhir:system [ fhir:v "http://hl7.org/fhir/us/vrdr/CodeSystem/vrdr-component-cs"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "lineNumber" ]
       ] )
     ] ;
     fhir:value [ fhir:v "1"^^xsd:integer ]
  ] [
     fhir:code [
       fhir:coding ( [
         a loinc:69440-6 ;
         fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "69440-6" ]
       ] )
     ] ;
     fhir:value [ fhir:v "4 hours" ]
  ] ) . # 

<http://hl7.org/fhir/us/vrdr/Patient/Decedent-Example1> a fhir:us .

<http://hl7.org/fhir/us/vrdr/Practitioner/Certifier-Example1> a fhir:us .

# -------------------------------------------------------------------------------------

