NAPKON GECCO+
1.0.0 - ci-build

NAPKON GECCO+ - Local Development build (v1.0.0). See the Directory of published versions

: ExamplePatient - 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 "ExamplePatient"];
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "https://www.medizininformatik-initiative.de/fhir/core/modul-person/StructureDefinition/Patient";
       fhir:index 0;
       fhir:link <https://www.medizininformatik-initiative.de/fhir/core/modul-person/StructureDefinition/Patient>     ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative</b></p><p><b>identifier</b>: Medical record number: napkon-example-patient</p><p><b>name</b>: maxi musterperson (OFFICIAL)</p><p><b>gender</b>: unknown</p><p><b>birthDate</b>: 1990-08-08</p><p><b>address</b>: Charitéplatz 1 Berlin 10117 DE </p></div>"
  ];
  fhir:Patient.identifier [
     fhir:index 0;
     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 "MR" ]       ]     ];
     fhir:Identifier.system [ fhir:value "https://www.napkon.de/fhir/napkon-example-system" ];
     fhir:Identifier.value [ fhir:value "napkon-example-patient" ]
  ];
  fhir:Patient.name [
     fhir:index 0;
     fhir:HumanName.use [ fhir:value "official" ];
     fhir:HumanName.family [ fhir:value "musterperson" ];
     fhir:HumanName.given [
       fhir:value "maxi";
       fhir:index 0     ]
  ];
  fhir:Patient.gender [ fhir:value "unknown"];
  fhir:Patient.birthDate [ fhir:value "1990-08-08"^^xsd:date];
  fhir:Patient.address [
     fhir:index 0;
     fhir:Address.type [ fhir:value "both" ];
     fhir:Address.line [
       fhir:value "Charitéplatz 1";
       fhir:index 0     ];
     fhir:Address.city [ fhir:value "Berlin" ];
     fhir:Address.postalCode [ fhir:value "10117" ];
     fhir:Address.country [ fhir:value "DE" ]
  ].

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

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