This page is part of the Clinical Guidelines (v1.0.0: STU 1) based on FHIR R4. This is the current published version. For a full list of available versions, see the Directory of published versions
Formats: Narrative, XML, JSON, Turtle
Raw ttl
@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 "ci-scenario6"];
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>active</b>: true</p><p><b>name</b>: Example Patient</p><p><b>gender</b>: female</p><p><b>birthDate</b>: 1990-10-01</p><p><b>deceased</b>: false</p></div>"
];
fhir:Patient.active [ fhir:value "true"^^xsd:boolean];
fhir:Patient.name [
fhir:index 0;
fhir:HumanName.use [ fhir:value "usual" ];
fhir:HumanName.text [ fhir:value "Example Patient" ];
fhir:HumanName.family [ fhir:value "Patient" ];
fhir:HumanName.given [
fhir:value "Example";
fhir:index 0 ]
];
fhir:Patient.gender [ fhir:value "female"];
fhir:Patient.birthDate [ fhir:value "1990-10-01"^^xsd:date];
fhir:Patient.deceasedBoolean [ fhir:value "false"^^xsd:boolean].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.