INTEROPen CareConnect Base STU3 Implementation Guide
3.0.0 - CI Build
INTEROPen CareConnect Base STU3 Implementation Guide - Local Development build (v3.0.0). See the Directory of published versions
Source view
@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 "practitioner-3"]; fhir:Resource.meta [ fhir:Meta.profile [ fhir:value "https://fhir.hl7.org.uk/STU3/StructureDefinition/CareConnect-Practitioner-1"; fhir:index 0 ] ]; 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>: practitioner-3</p><p><b>meta</b>: </p><p><b>identifier</b>: PT1357, C9999998</p><p><b>name</b>: Ripley Amber </p><p><b>telecom</b>: ripley.amber@nhs.skynet(WORK), ph: 0115 9876543(WORK)</p><p><b>address</b>: Kirkgate Derby DE7 1QQ </p><p><b>gender</b>: female</p></div>" ]; fhir:Practitioner.identifier [ fhir:index 0; fhir:Identifier.system [ fhir:value "https://fhir.nhs.uk/Id/sds-user-id" ]; fhir:Identifier.value [ fhir:value "PT1357" ] ], [ fhir:index 1; fhir:Identifier.system [ fhir:value "https://fhir.hl7.org.uk/Id/gmp-number" ]; fhir:Identifier.value [ fhir:value "C9999998" ] ]; fhir:Practitioner.name [ fhir:index 0; fhir:HumanName.family [ fhir:value "Amber" ]; fhir:HumanName.given [ fhir:value "Ripley"; fhir:index 0 ]; fhir:HumanName.prefix [ fhir:value "Dr."; fhir:index 0 ] ]; fhir:Practitioner.telecom [ fhir:index 0; fhir:ContactPoint.system [ fhir:value "email" ]; fhir:ContactPoint.value [ fhir:value "ripley.amber@nhs.skynet" ]; fhir:ContactPoint.use [ fhir:value "work" ] ], [ fhir:index 1; fhir:ContactPoint.system [ fhir:value "phone" ]; fhir:ContactPoint.value [ fhir:value "0115 9876543" ]; fhir:ContactPoint.use [ fhir:value "work" ] ]; fhir:Practitioner.address [ fhir:index 0; fhir:Address.line [ fhir:value "Kirkgate"; fhir:index 0 ]; fhir:Address.city [ fhir:value "Derby" ]; fhir:Address.postalCode [ fhir:value "DE7 1QQ" ] ]; fhir:Practitioner.gender [ fhir:value "female"]. # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl.