HL7 Belgium FHIR specifications
0.1 - QA review

This page is part of the HL7 Belgium FHIR Specifications (v2020May: QA Preview) based on FHIR R4. This is the current published version. For a full list of available versions, see the Directory of published versions

Patient Will - TTL Representation

(back to description)

Raw ttl

Source view

@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

 a fhir:Consent;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "patientwill-example"];
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "https://www.ehealth.fgov.be/standards/fhir/StructureDefinition/be-patientwill";
       fhir:index 0;
       fhir:link <https://www.ehealth.fgov.be/standards/fhir/StructureDefinition/be-patientwill>     ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n      <p> \n  DNR\n  </p>\n      <p> NB. This is a 'consent' example ONLY in the context of patientwill!\n			No standardized codified valueset yet available for Belgian use.\n Patient Jane Fhirwoman: do not resuscitate\n   </p>\n    </div>"
  ];
  fhir:Consent.status [ fhir:value "active"];
  fhir:Consent.scope [
     fhir:CodeableConcept.coding [
       fhir:index 0;
       fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/consentscope" ];
       fhir:Coding.code [ fhir:value "treatment" ]     ]
  ];
  fhir:Consent.category [
     fhir:index 0;
     fhir:CodeableConcept.coding [
       fhir:index 0;
       a sct:304253006;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
       fhir:Coding.code [ fhir:value "304253006" ];
       fhir:Coding.display [ fhir:value "DNAR - Do not attempt resuscitation" ]     ];
     fhir:CodeableConcept.text [ fhir:value "No resuscitation" ]
  ];
  fhir:Consent.patient [
     fhir:Reference.identifier [
       fhir:Identifier.system [ fhir:value "https://www.ehealth.fgov.be/standards/fhir/NamingSystem/ssin" ];
       fhir:Identifier.value [ fhir:value "123456789" ]     ];
     fhir:Reference.display [ fhir:value "Jane Fhirwoman" ]
  ];
  fhir:Consent.dateTime [ fhir:value "2015-11-18"^^xsd:date];
  fhir:Consent.performer [
     fhir:index 0;
     fhir:Reference.identifier [
       fhir:Identifier.system [ fhir:value "https://www.ehealth.fgov.be/standards/fhir/NamingSystem/nihdi" ];
       fhir:Identifier.value [ fhir:value "11530231003" ]     ]
  ];
  fhir:Consent.policyRule [
     fhir:CodeableConcept.text [ fhir:value "Belgian policy" ]
  ].

# - ontology header ------------------------------------------------------------

 a owl:Ontology;
  owl:imports fhir:fhir.ttl.