QI-Core Implementation Guide
5.0.0-ballot - STU Ballot
US
This page is part of the Quality Improvement Core Framework (v5.0.0-ballot: STU 5 Ballot 1) based on FHIR R4. The current version which supercedes this version is 4.1.1. 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 xsd: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
a fhir:Practitioner;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "example"];
fhir:Resource.meta [
fhir:Meta.profile [
fhir:value "http://hl7.org/fhir/us/qicore/StructureDefinition/qicore-practitioner";
fhir:index 0;
fhir:link <http://hl7.org/fhir/us/qicore/StructureDefinition/qicore-practitioner> ]
];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "generated" ];
fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative: Practitioner</b></p><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\">Resource Practitioner \"example\" </p><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-qicore-practitioner.html\">QICore Practitioner</a></p></div><p><b>identifier</b>: id: Practitioner-23 (TEMP)</p><p><b>active</b>: true</p><p><b>name</b>: Adam Careful </p><p><b>address</b>: 534 Erewhon St PleasantVille UT 84414 (HOME)</p><h3>Qualifications</h3><table class=\"grid\"><tr><td>-</td><td><b>Identifier</b></td><td><b>Code</b></td><td><b>Period</b></td><td><b>Issuer</b></td></tr><tr><td>*</td><td>id: 12345</td><td>Bachelor of Science <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"http://hl7.org/fhir/R4/v2/0360/2.7/index.html\">v2 table 0360, Version 2.7</a>#BS)</span></td><td>1995 --> (ongoing)</td><td><span>: Example University</span></td></tr></table></div>"
];
fhir:Practitioner.identifier [
fhir:index 0;
fhir:Identifier.use [ fhir:value "temp" ];
fhir:Identifier.system [ fhir:value "urn:oid:2.16.840.1.113883.4.4" ];
fhir:Identifier.value [ fhir:value "Practitioner-23" ]
];
fhir:Practitioner.active [ fhir:value "true"^^xsd:boolean];
fhir:Practitioner.name [
fhir:index 0;
fhir:HumanName.family [ fhir:value "Careful" ];
fhir:HumanName.given [
fhir:value "Adam";
fhir:index 0 ];
fhir:HumanName.prefix [
fhir:value "Dr";
fhir:index 0 ]
];
fhir:Practitioner.address [
fhir:index 0;
fhir:Address.use [ fhir:value "home" ];
fhir:Address.line [
fhir:value "534 Erewhon St";
fhir:index 0 ];
fhir:Address.city [ fhir:value "PleasantVille" ];
fhir:Address.state [ fhir:value "UT" ];
fhir:Address.postalCode [ fhir:value "84414" ]
];
fhir:Practitioner.qualification [
fhir:index 0;
fhir:Practitioner.qualification.identifier [
fhir:index 0;
fhir:Identifier.system [ fhir:value "http://example.org/UniversityIdentifier" ];
fhir:Identifier.value [ fhir:value "12345" ] ];
fhir:Practitioner.qualification.code [
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v2-0360|2.7" ];
fhir:Coding.code [ fhir:value "BS" ];
fhir:Coding.display [ fhir:value "Bachelor of Science" ] ];
fhir:CodeableConcept.text [ fhir:value "Bachelor of Science" ] ];
fhir:Practitioner.qualification.period [
fhir:Period.start [ fhir:value "1995"^^xsd:gYear ] ];
fhir:Practitioner.qualification.issuer [
fhir:Reference.display [ fhir:value "Example University" ] ]
].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.