QI-Core Implementation Guide - This is the current published version.. 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:PractitionerRole; 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-practitionerrole"; fhir:index 0; fhir:link <http://hl7.org/fhir/us/qicore/StructureDefinition/qicore-practitionerrole> ] ]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative with Details</b></p><p><b>id</b>: example</p><p><b>meta</b>: </p><p><b>identifier</b>: 31</p><p><b>active</b>: true</p><p><b>period</b>: Jan 1, 1995 12:00:00 AM --> (ongoing)</p><p><b>practitioner</b>: <a href=\"Practitioner-example.html\">Dr Adam Careful. Generated Summary: id: example; 23; active; Adam Careful </a></p><p><b>organization</b>: <a href=\"Organization-example.html\">Generated Summary: id: example; ??; active; <span title=\"Codes: {http://terminology.hl7.org/CodeSystem/organization-type team}\">Organizational team</span>; name: Health Level Seven International; ph: (+1) 734-677-7777, fax: (+1) 734-677-6622, hq@HL7.org</a></p><p><b>code</b>: Primary Care <span style=\"background: LightGoldenRodYellow\">(Details : {http://nucc.org/provider-taxonomy code '261QP2300X' = 'Primary Care', given as 'Primary Care'})</span></p><p><b>specialty</b>: General Practice <span style=\"background: LightGoldenRodYellow\">(Details : {http://nucc.org/provider-taxonomy code '1223G0001X' = 'General Practice', given as 'General Practice'})</span></p><p><b>location</b>: <a href=\"Location-example.html\">Generated Summary: id: example; B1-S.F2; status: active; name: South Wing, second floor; alias: Mean Joe Greene University Medical Center, South Wing, second floor, alias: BU MC, SW, F2; description: Second floor of the Old South Wing, formerly in use by Psychiatry; mode: instance; <span title=\"Codes: {http://terminology.hl7.org/CodeSystem/v3-RoleCode HOSP}\">Hospital</span>; ph: 2328(WORK), fax: 2329(WORK), second wing admissions, http://sampleorg.com/southwing(WORK); <span title=\"Codes: {http://terminology.hl7.org/CodeSystem/location-physical-type wi}\">Wing</span></a></p><p><b>telecom</b>: ph: 801-123-4567</p></div>" ]; fhir:PractitionerRole.identifier [ fhir:index 0; fhir:Identifier.system [ fhir:value "http://www.acme.org/practitionerroles" ]; fhir:Identifier.value [ fhir:value "31" ] ]; fhir:PractitionerRole.active [ fhir:value "true"^^xsd:boolean]; fhir:PractitionerRole.period [ fhir:Period.start [ fhir:value "1995"^^xsd:gYear ] ]; fhir:PractitionerRole.practitioner [ fhir:Reference.reference [ fhir:value "Practitioner/example" ]; fhir:Reference.display [ fhir:value "Dr Adam Careful" ] ]; fhir:PractitionerRole.organization [ fhir:Reference.reference [ fhir:value "Organization/example" ] ]; fhir:PractitionerRole.code [ fhir:index 0; fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://nucc.org/provider-taxonomy" ]; fhir:Coding.code [ fhir:value "261QP2300X" ]; fhir:Coding.display [ fhir:value "Primary Care" ] ] ]; fhir:PractitionerRole.specialty [ fhir:index 0; fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://nucc.org/provider-taxonomy" ]; fhir:Coding.code [ fhir:value "1223G0001X" ]; fhir:Coding.display [ fhir:value "General Practice" ] ] ]; fhir:PractitionerRole.location [ fhir:index 0; fhir:Reference.reference [ fhir:value "Location/example" ] ]; fhir:PractitionerRole.telecom [ fhir:index 0; fhir:ContactPoint.system [ fhir:value "phone" ]; fhir:ContactPoint.value [ fhir:value "801-123-4567" ] ]. # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl.