Manzana Project FHIR Specifications
1.0.0 - release Belgium flag

This page is part of the Manzana Project FHIR Specifications (v1.0.0: Release) based on FHIR R4. This is the current published version in its permanent home (it will always be available at this URL). For a full list of available versions, see the Directory of published versions

: Example - FINDRISC Test Patient - TTL Representation

Raw ttl | Download


@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 xsd: <http://www.w3.org/2001/XMLSchema#> .

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

 a fhir:Patient;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "rs-findRisc-patient"]; # 
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "https://www.ehealth.fgov.be/standards/fhir/core/StructureDefinition/be-patient";
       fhir:index 0;
       fhir:link <https://www.ehealth.fgov.be/standards/fhir/core/StructureDefinition/be-patient>     ]
  ]; # 
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\"><b>Patient Abrumet Test (OFFICIAL)</b> female, DoB Unknown ( Social Beneficiary Identifier: 99010100118 (use: OFFICIAL))</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Record is active\">Active:</td><td colspan=\"3\">true</td></tr><tr><td style=\"background-color: #f3f5da\" title=\"The nationality of the patient.\">nationality:</td><td colspan=\"3\"><ul><li>code: <span title=\"Codes: {https://www.ehealth.fgov.be/standards/fhir/core/CodeSystem/cd-fed-country BE}\">Belgium</span></li></ul></td></tr><tr><td style=\"background-color: #f3f5da\" title=\"The registered place of birth of the patient. A sytem may use the address.text if they don't store the birthPlace address in discrete elements.\"><a href=\"http://hl7.org/fhir/R4/extension-patient-birthplace.html\">Birth Place:</a></td><td colspan=\"3\"><ul><li>Namen BE </li></ul></td></tr></table></div>"
  ]; # 
  fhir:DomainResource.extension [
     fhir:index 0;
     fhir:Extension.url [ fhir:value "http://hl7.org/fhir/StructureDefinition/patient-birthPlace" ];
     fhir:Extension.valueAddress [
       fhir:Element.extension [
         fhir:index 0;
         fhir:Extension.url [ fhir:value "http://hl7.org/fhir/StructureDefinition/language" ];
         fhir:Extension.valueCode [ fhir:value "nl" ]       ];
       fhir:Address.city [ fhir:value "Namen" ];
       fhir:Address.country [ fhir:value "BE" ]     ]
  ], [
     fhir:index 1;
     fhir:Element.extension [
       fhir:index 0;
       fhir:Extension.url [ fhir:value "code" ];
       fhir:Extension.valueCodeableConcept [
         fhir:CodeableConcept.coding [
           fhir:index 0;
           fhir:Coding.system [ fhir:value "https://www.ehealth.fgov.be/standards/fhir/core/CodeSystem/cd-fed-country" ];
           fhir:Coding.code [ fhir:value "BE" ];
           fhir:Coding.display [ fhir:value "Belgium" ]         ]       ]     ];
     fhir:Extension.url [ fhir:value "http://hl7.org/fhir/StructureDefinition/patient-nationality" ]
  ]; # 
  fhir:Patient.identifier [
     fhir:index 0;
     fhir:Identifier.use [ fhir:value "official" ];
     fhir:Identifier.type [
       fhir:CodeableConcept.coding [
         fhir:index 0;
         fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v2-0203" ];
         fhir:Coding.code [ fhir:value "SB" ];
         fhir:Coding.display [ fhir:value "Social Beneficiary Identifier" ]       ]     ];
     fhir:Identifier.system [ fhir:value "https://www.ehealth.fgov.be/standards/fhir/core/NamingSystem/ssin" ];
     fhir:Identifier.value [ fhir:value "99010100118" ]
  ]; # 
  fhir:Patient.active [ fhir:value "true"^^xsd:boolean]; # 
  fhir:Patient.name [
     fhir:index 0;
     fhir:HumanName.use [ fhir:value "official" ];
     fhir:HumanName.family [ fhir:value "Test" ];
     fhir:HumanName.given [
       fhir:value "Patient";
       fhir:index 0     ], [
       fhir:value "Abrumet";
       fhir:index 1     ]
  ]; # 
  fhir:Patient.gender [ fhir:value "female"]. # 

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

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