This page is part of the Risk Based Contracts Member Attribution List FHIR IG (v0.1.0: STU 1 Ballot 1) based on FHIR R4. The current version which supercedes this version is 1.0.0. For a full list of available versions, 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:Patient; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "pat1"]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n <p> <b> Generated Narrative with Details</b> </p> \n <p> <b> Example Patient : </b> Patient-1 </p> \n </div>" ]; fhir:Patient.identifier [ fhir:index 0; fhir:Identifier.use [ fhir:value "usual" ]; 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 "MR" ]; fhir:Coding.display [ fhir:value "Medical Record Number" ] ]; fhir:CodeableConcept.text [ fhir:value "Medical Record Number" ] ]; fhir:Identifier.system [ fhir:value "http://multicareprovider.org" ]; fhir:Identifier.value [ fhir:value "1032702" ] ], [ fhir:index 1; fhir:Identifier.use [ fhir:value "usual" ]; 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 "MC" ]; fhir:Coding.display [ fhir:value "Patient's Medicare number" ] ]; fhir:CodeableConcept.text [ fhir:value "Patient's Medicare number" ] ]; fhir:Identifier.system [ fhir:value "http://medicare.gov" ]; fhir:Identifier.value [ fhir:value "123456" ] ], [ fhir:index 2; fhir:Identifier.use [ fhir:value "usual" ]; 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 "MA" ]; fhir:Coding.display [ fhir:value "Patient Medicaid number" ] ]; fhir:CodeableConcept.text [ fhir:value "Patient Medicaid number" ] ]; fhir:Identifier.system [ fhir:value "http://medicare.gov" ]; fhir:Identifier.value [ fhir:value "1234567" ] ], [ fhir:index 3; fhir:Identifier.use [ fhir:value "usual" ]; 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 "MB" ]; fhir:Coding.display [ fhir:value "Member Number" ] ]; fhir:CodeableConcept.text [ fhir:value "Member Number" ] ]; fhir:Identifier.system [ fhir:value "http://cambia.org" ]; fhir:Identifier.value [ fhir:value "12353435" ] ], [ fhir:index 4; fhir:Identifier.use [ fhir:value "usual" ]; 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 "SS" ]; fhir:Coding.display [ fhir:value "Social Security number" ] ]; fhir:CodeableConcept.text [ fhir:value "Social Security number" ] ]; fhir:Identifier.system [ fhir:value "http://http://hl7.org/fhir/sid/us-ssn" ]; fhir:Identifier.value [ fhir:value "551-54-2343" ] ]; fhir:Patient.name [ fhir:index 0; fhir:HumanName.use [ fhir:value "official" ]; fhir:HumanName.family [ fhir:value "Smith" ]; fhir:HumanName.given [ fhir:value "John"; fhir:index 0 ], [ fhir:value "J"; fhir:index 1 ]; fhir:HumanName.prefix [ fhir:value "Mr"; fhir:index 0 ]; fhir:HumanName.suffix [ fhir:value "II"; fhir:index 0 ] ]; fhir:Patient.gender [ fhir:value "male"]; fhir:Patient.birthDate [ fhir:value "2001-02-20"^^xsd:date]; fhir:Patient.address [ fhir:index 0; fhir:Address.line [ fhir:value "49 Meadow St"; fhir:index 0 ]; fhir:Address.city [ fhir:value "Mounds" ]; fhir:Address.district [ fhir:value "Salem County" ]; fhir:Address.state [ fhir:value "OR" ]; fhir:Address.postalCode [ fhir:value "74047" ]; fhir:Address.country [ fhir:value "US" ] ]; fhir:Patient.generalPractitioner [ fhir:index 0; fhir:Reference.reference [ fhir:value "Organization/MulticareProviderOrg" ] ]. # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl.