@prefix fhir: <http://hl7.org/fhir/> .
@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/us/vr-common-library/Patient/patient-fetal-death-example> a fhir:Patient ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "patient-fetal-death-example"] ; # 
  fhir:language [ fhir:v "en"] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Patient patient-fetal-death-example</b></p><a name=\"patient-fetal-death-example\"> </a><a name=\"hcpatient-fetal-death-example\"> </a><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\">Jones  Female, DoB: 2019-01-09 ( Medical Record Number: 9932702 (use: usual, ))</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Known status of Patient\">Deceased:</td><td>true</td><td style=\"background-color: #f3f5da\" title=\"Known multipleBirth status of Patient\">Multiple Birth:</td><td colspan=\"3\">3</td></tr></table></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:identifier ( [
     fhir:use [ fhir:v "usual" ] ;
     fhir:type [
       fhir:coding ( [
         fhir:system [
           fhir:v "http://terminology.hl7.org/CodeSystem/v2-0203"^^xsd:anyURI ;
           fhir:l <http://terminology.hl7.org/CodeSystem/v2-0203>
         ] ;
         fhir:code [ fhir:v "MR" ] ;
         fhir:display [ fhir:v "Medical Record Number" ]
       ] )
     ] ;
     fhir:system [
       fhir:v "http://hospital.smarthealthit.org"^^xsd:anyURI ;
       fhir:l <http://hospital.smarthealthit.org>
     ] ;
     fhir:value [ fhir:v "9932702" ]
  ] ) ; # 
  fhir:name ( [
     fhir:family [ fhir:v "Jones" ]
  ] ) ; # 
  fhir:gender [ fhir:v "female"] ; # 
  fhir:birthDate [
     fhir:v "2019-01-09"^^xsd:date ;
     fhir:extension ( [
       fhir:url [
         fhir:v "http://hl7.org/fhir/StructureDefinition/patient-birthTime"^^xsd:anyURI ;
         fhir:l <http://hl7.org/fhir/StructureDefinition/patient-birthTime>
       ] ;
       fhir:value [
         a fhir:DateTime ;
         fhir:v "2019-01-09T18:23:00-07:00"^^xsd:dateTime
       ]
     ] )
  ] ; # 
  fhir:deceased [
     a fhir:Boolean ;
     fhir:v true ;
     fhir:extension ( [
       fhir:url [
         fhir:v "http://hl7.org/fhir/us/vr-common-library/StructureDefinition/Extension-patient-fetal-death-vr"^^xsd:anyURI ;
         fhir:l <http://hl7.org/fhir/us/vr-common-library/StructureDefinition/Extension-patient-fetal-death-vr>
       ] ;
       fhir:value [
         a fhir:Boolean ;
         fhir:v true
       ]
     ] )
  ] ; # 
  fhir:multipleBirth [
     a fhir:Integer ;
     fhir:v 3
  ] . # 

# -------------------------------------------------------------------------------------

