This page is part of the C-CDA on FHIR Implementation Guide (v1.1.0: STU 1.1) based on FHIR R4. This is the current published version in it's permanent home (it will always be available at this URL). 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 "ccda-practitioner-example"];
fhir:Resource.meta [
fhir:Meta.versionId [ fhir:value "6" ];
fhir:Meta.lastUpdated [ fhir:value "2020-08-12T21:30:18.070+00:00"^^xsd:dateTime ];
fhir:Meta.source [ fhir:value "#csn482LCsnDWyxbW" ];
fhir:Meta.profile [
fhir:value "http://hl7.org/fhir/us/core/StructureDefinition/us-core-practitioner";
fhir:index 0;
fhir:link <http://hl7.org/fhir/us/core/StructureDefinition/us-core-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</b></p><h3>Ids</h3><table class=\"grid\"><tr><td>-</td></tr><tr><td>*</td></tr></table><h3>Meta</h3><table class=\"grid\"><tr><td>-</td></tr><tr><td>*</td></tr></table><p><b>identifier</b>: US National Provider Identifier: 9999991011 (OFFICIAL)</p><p><b>name</b>: Brenda Jennings Richard </p><p><b>telecom</b>: ph: 313-555-6868(HOME), ph: 313-555-6443(WORK)</p><p><b>address</b>: 346 W Plum Avenu Dearborn MI 48123</p><p><b>gender</b>: female</p><p><b>birthDate</b>: 1976-11-15</p></div>"
];
fhir:Practitioner.identifier [
fhir:index 0;
fhir:Identifier.use [ fhir:value "official" ];
fhir:Identifier.type [
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v2-0203" ];
fhir:Coding.code [ fhir:value "PRN" ];
fhir:Coding.display [ fhir:value "Provider number" ] ];
fhir:CodeableConcept.text [ fhir:value "US National Provider Identifier" ] ];
fhir:Identifier.system [ fhir:value "http://hl7.org/fhir/sid/us-npi" ];
fhir:Identifier.value [ fhir:value "9999991011" ]
];
fhir:Practitioner.name [
fhir:index 0;
fhir:HumanName.family [ fhir:value "Richard" ];
fhir:HumanName.given [
fhir:value "Brenda";
fhir:index 0 ], [
fhir:value "Jennings";
fhir:index 1 ];
fhir:HumanName.suffix [
fhir:value "MD";
fhir:index 0 ]
];
fhir:Practitioner.telecom [
fhir:index 0;
fhir:ContactPoint.system [ fhir:value "phone" ];
fhir:ContactPoint.value [ fhir:value "313-555-6868" ];
fhir:ContactPoint.use [ fhir:value "home" ]
], [
fhir:index 1;
fhir:ContactPoint.system [ fhir:value "phone" ];
fhir:ContactPoint.value [ fhir:value "313-555-6443" ];
fhir:ContactPoint.use [ fhir:value "work" ]
];
fhir:Practitioner.address [
fhir:index 0;
fhir:Address.text [ fhir:value "346 W Plum Avenu Dearborn MI 48123" ];
fhir:Address.line [
fhir:value "346 W Plum Avenue";
fhir:index 0 ];
fhir:Address.city [ fhir:value "Dearborn" ];
fhir:Address.state [ fhir:value "MI" ];
fhir:Address.postalCode [ fhir:value "48126" ]
];
fhir:Practitioner.gender [ fhir:value "female"];
fhir:Practitioner.birthDate [ fhir:value "1976-11-15"^^xsd:date].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.