MCC eCare Plan Implementation Guide 1.0.0-ballot - Comment only US
This page is part of the MCC eCare Plan Implementation Guide (v1.0.0-ballot: STU 1 Ballot 1) based on FHIR R4. . For a full list of available versions, see the Directory of published versions
Raw ttl | Download
@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 "cc-pat-pnoelle"]; # fhir:Resource.meta [ fhir:Meta.versionId [ fhir:value "6" ]; fhir:Meta.lastUpdated [ fhir:value "2022-08-02T18:25:58.212+00:00"^^xsd:dateTime ]; fhir:Meta.source [ fhir:value "#JCaZBT444ZLpgXTH" ]; fhir:Meta.profile [ fhir:value "http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"; fhir:index 0; fhir:link <http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient> ] ]; # fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n <div class=\"hapiHeaderText\">Patricia \n <b>NOELLE </b>\n </div>\n <table class=\"hapiPropertyTable\">\n <tbody>\n <tr>\n <td>Identifier</td>\n <td>103270456</td>\n </tr>\n <tr>\n <td>Address</td>\n <td>\n <span>49 Meadow St </span>\n <br/>\n <span>Mounds </span>\n <span>OK </span>\n <span>US </span>\n </td>\n </tr>\n <tr>\n <td>Date of birth</td>\n <td>\n <span>15 January 1955</span>\n </td>\n </tr>\n </tbody>\n </table>\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://hospital.smarthealthit.org" ]; fhir:Identifier.value [ fhir:value "103270456" ] ]; # fhir:Patient.active [ fhir:value "true"^^xsd:boolean]; # fhir:Patient.name [ fhir:index 0; fhir:HumanName.family [ fhir:value "Noelle" ]; fhir:HumanName.given [ fhir:value "Patricia"; fhir:index 0 ] ]; # fhir:Patient.telecom [ fhir:index 0; fhir:ContactPoint.system [ fhir:value "phone" ]; fhir:ContactPoint.value [ fhir:value "555-555-5555" ]; fhir:ContactPoint.use [ fhir:value "home" ] ]; # fhir:Patient.gender [ fhir:value "female"]; # fhir:Patient.birthDate [ fhir:value "1955-01-15"^^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.state [ fhir:value "OK" ]; fhir:Address.postalCode [ fhir:value "74047" ]; fhir:Address.country [ fhir:value "US" ] ]. # # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl.