Mona FHIR Implementation Guide
0.4.50648 - ci-build

Mona FHIR Implementation Guide - Local Development build (v0.4.50648). See the Directory of published versions

: PatientExample - 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 "PatientExample"];
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "https://fhir.mona.icu/StructureDefinition/mona-patient";
       fhir:index 0;
       fhir:link <https://fhir.mona.icu/StructureDefinition/mona-patient>     ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "extensions" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative</b></p><p><b>Last changed by</b>: <a href=\"Practitioner-NurseCarla.html\">Generated Summary: Carla Espinosa (OFFICIAL); Phone: +49 170 1234567; gender: female</a></p><p><b>identifier</b>: id: some-patient-number</p><p><b>name</b>: John Doe (OFFICIAL)</p><p><b>gender</b>: male</p><p><b>birthDate</b>: 1951-05-28</p><p><b>deceased</b>: 2020-12-13</p></div>"
  ];
  fhir:DomainResource.extension [
     fhir:index 0;
     fhir:Extension.url [ fhir:value "https://fhir.mona.icu/StructureDefinition/lastChangedBy" ];
     fhir:Extension.valueReference [
       fhir:Reference.reference [ fhir:value "Practitioner/NurseCarla" ]     ]
  ];
  fhir:Patient.identifier [
     fhir:index 0;
     fhir:Identifier.system [ fhir:value "https://fhir.mona.icu/Identifier/mona-patient-number" ];
     fhir:Identifier.value [ fhir:value "some-patient-number" ]
  ];
  fhir:Patient.name [
     fhir:index 0;
     fhir:HumanName.use [ fhir:value "official" ];
     fhir:HumanName.family [ fhir:value "Doe" ];
     fhir:HumanName.given [
       fhir:value "John";
       fhir:index 0     ]
  ];
  fhir:Patient.gender [ fhir:value "male"];
  fhir:Patient.birthDate [ fhir:value "1951-05-28"^^xsd:date];
  fhir:Patient.deceasedDateTime [ fhir:value "2020-12-13"^^xsd:date].

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

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