This page is part of the PACIO Functional Status Implementation Guide (v0.1.0: STU 1 Ballot 1) based on FHIR R4. The current version which supercedes this version is 1.0.0. For a full list of available versions, see the Directory of published versions
@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:PractitionerRole;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "Role-RN"];
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><h3>Ids</h3><table class=\"grid\"><tr><td>-</td></tr><tr><td>*</td></tr></table><p><b>active</b>: true</p><p><b>code</b>: <span title=\"Codes: {http://snomed.info/sct 224535009}\">Registered Nurse</span></p></div>"
];
fhir:PractitionerRole.active [ fhir:value "true"^^xsd:boolean];
fhir:PractitionerRole.code [
fhir:index 0;
fhir:CodeableConcept.coding [
fhir:index 0;
a sct:224535009;
fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
fhir:Coding.code [ fhir:value "224535009" ];
fhir:Coding.display [ fhir:value "Registered Nurse" ] ]
].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.