This page is part of the Consumer Real-time Pharmacy Benefit Check (v1.0.0: STU 1) based on FHIR R4. This is the current published version. 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:Patient; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "rtpbc-patient-03"]; fhir:Resource.meta [ fhir:Meta.profile [ fhir:value "http://hl7.org/fhir/us/carin-rtpbc/StructureDefinition/rtpbc-patient"; fhir:index 0; fhir:link <http://hl7.org/fhir/us/carin-rtpbc/StructureDefinition/rtpbc-patient> ] ]; 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><p><b>id</b>: rtpbc-patient-03</p><p><b>meta</b>: </p><p><b>identifier</b>: Patient internal identifier: 30455</p><p><b>name</b>: Jane Doe </p><p><b>gender</b>: female</p><p><b>birthDate</b>: 1975-12-05</p><p><b>address</b>: 100 Oak Court Madison WI 53510 US </p></div>" ]; fhir:Patient.identifier [ fhir:index 0; 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 "PI" ]; fhir:Coding.display [ fhir:value "Patient internal identifier" ] ]; fhir:CodeableConcept.text [ fhir:value "Patient internal identifier" ] ]; fhir:Identifier.system [ fhir:value "http://example.org/MyPatientApp" ]; fhir:Identifier.value [ fhir:value "30455" ] ]; fhir:Patient.name [ fhir:index 0; fhir:HumanName.family [ fhir:value "Doe" ]; fhir:HumanName.given [ fhir:value "Jane"; fhir:index 0 ] ]; fhir:Patient.gender [ fhir:value "female"]; fhir:Patient.birthDate [ fhir:value "1975-12-05"^^xsd:date]; fhir:Patient.address [ fhir:index 0; fhir:Address.line [ fhir:value "100 Oak Court"; fhir:index 0 ]; fhir:Address.city [ fhir:value "Madison" ]; fhir:Address.state [ fhir:value "WI" ]; fhir:Address.postalCode [ fhir:value "53510" ]; fhir:Address.country [ fhir:value "US" ] ]. # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl.