@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 -------------------------------------------------------------------

<https://onyxhealth.io/fhir/fodder/Patient/deceased-472132936> a fhir:Patient ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "deceased-472132936"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "https://onyxhealth.io/fhir/fodder/StructureDefinition/fodder-deceased-patient"^^xsd:anyURI ;
       fhir:l <https://onyxhealth.io/fhir/fodder/StructureDefinition/fodder-deceased-patient>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Deceased Patient: Jewell Stindt</b></p><p>Date of Death: 2026-01-03</p><p>Traceability Number: 472132936</p></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:extension ( [
     fhir:url [
       fhir:v "https://onyxhealth.io/fhir/fodder/StructureDefinition/fodder-match-confidence-level"^^xsd:anyURI ;
       fhir:l <https://onyxhealth.io/fhir/fodder/StructureDefinition/fodder-match-confidence-level>
     ] ;
     fhir:value [
       a fhir:String ;
       fhir:v "certain"
     ]
  ] ) ; # 
  fhir:identifier ( [
     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:text [ fhir:v "Veritas Traceability Number" ]
     ] ;
     fhir:system [
       fhir:v "https://www.veritasdr.com/fhir/identifier/traceability"^^xsd:anyURI ;
       fhir:l <https://www.veritasdr.com/fhir/identifier/traceability>
     ] ;
     fhir:value [ fhir:v "472132936" ]
  ] ) ; # 
  fhir:name ( [
     fhir:use [ fhir:v "official" ] ;
     fhir:family [ fhir:v "Stindt" ] ;
     fhir:given ( [ fhir:v "Jewell" ] )
  ] ) ; # 
  fhir:gender [ fhir:v "female"] ; # 
  fhir:birthDate [ fhir:v "1925-07-19"^^xsd:date] ; # 
  fhir:deceased [
     a fhir:DateTime ;
     fhir:v "2026-01-03T00:00:00Z"^^xsd:dateTime
  ] ; # 
  fhir:address ( [
     fhir:use [ fhir:v "home" ] ;
     fhir:type [ fhir:v "physical" ] ;
     fhir:city [ fhir:v "San Pedro" ] ;
     fhir:state [ fhir:v "CA" ] ;
     fhir:postalCode [ fhir:v "90731" ]
  ] ) . # 

# -------------------------------------------------------------------------------------

