@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://hl7.fr/ig/fhir/core/Patient/FRCorePatientDeceasedExample> a fhir:Patient ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "FRCorePatientDeceasedExample"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "https://hl7.fr/ig/fhir/core/StructureDefinition/fr-core-patient"^^xsd:anyURI ;
       fhir:l <https://hl7.fr/ig/fhir/core/StructureDefinition/fr-core-patient>
     ] )
  ] ; # 
  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>Narratif généré : Patient FRCorePatientDeceasedExample</b></p><a name=\"FRCorePatientDeceasedExample\"> </a><a name=\"hcFRCorePatientDeceasedExample\"> </a><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\"/><p style=\"margin-bottom: 0px\">Profil: <a href=\"StructureDefinition-fr-core-patient.html\">FR Core Patient Profile</a></p></div><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\">Jean Martin (official) Male, Date de Naissance :1950-03-10 ( Patient internal identifier: IPP-999-001 (use: usual, ))</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"L'enregistrement est actif\">Actif :</td><td>false</td><td style=\"background-color: #f3f5da\" title=\"Statut connu du patient\">Décédé :</td><td colspan=\"3\">2024-01-15</td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Date de naissance approximative du patient.#xD;#xA;Approximate birthdate of the patient\"><a href=\"StructureDefinition-fr-core-lunar-date.html\">FR Core Lunar Date Extension</a></td><td colspan=\"3\">1950-03-10</td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Précise le lieu de décès du patient (hôpital, sur la voie publique, au domicile, etc.).#xA;#xD;Carries the death place of the patient\"><a href=\"StructureDefinition-fr-core-patient-death-place.html\">FR Core Patient Death Place Extension</a></td><td colspan=\"3\">CHU de Paris, Paris, France</td></tr></table></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:extension ( [
     fhir:url [
       fhir:v "https://hl7.fr/ig/fhir/core/StructureDefinition/fr-core-patient-death-place"^^xsd:anyURI ;
       fhir:l <https://hl7.fr/ig/fhir/core/StructureDefinition/fr-core-patient-death-place>
     ] ;
     fhir:value [
       a fhir:Address ;
       fhir:text [ fhir:v "CHU de Paris, Paris, France" ] ;
       fhir:city [ fhir:v "Paris" ] ;
       fhir:postalCode [ fhir:v "75014" ]
     ]
  ] [
     fhir:url [
       fhir:v "https://hl7.fr/ig/fhir/core/StructureDefinition/fr-core-lunar-date"^^xsd:anyURI ;
       fhir:l <https://hl7.fr/ig/fhir/core/StructureDefinition/fr-core-lunar-date>
     ] ;
     fhir:value [
       a fhir:String ;
       fhir:v "1950-03-10"
     ]
  ] ) ; # 
  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 "PI" ] ;
         fhir:display [ fhir:v "Patient internal identifier" ]
       ] )
     ] ;
     fhir:system [
       fhir:v "http://hopital.fr/namingsystem/ipp"^^xsd:anyURI ;
       fhir:l <http://hopital.fr/namingsystem/ipp>
     ] ;
     fhir:value [ fhir:v "IPP-999-001" ]
  ] ) ; # 
  fhir:active [ fhir:v false] ; # 
  fhir:name ( [
     fhir:use [ fhir:v "official" ] ;
     fhir:family [ fhir:v "Martin" ] ;
     fhir:given ( [ fhir:v "Jean" ] )
  ] ) ; # 
  fhir:gender [ fhir:v "male"] ; # 
  fhir:birthDate [ fhir:v "1950-03-10"^^xsd:date] ; # 
  fhir:deceased [
     a fhir:DateTime ;
     fhir:v "2024-01-15"^^xsd:date
  ] . # 

# -------------------------------------------------------------------------------------

