QI-Core Implementation Guide - This is the current published version.. See the Directory of published versions
Formats: Narrative, XML, JSON, Turtle
Raw ttl
@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:Coverage; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "example"]; fhir:Resource.meta [ fhir:Meta.profile [ fhir:value "http://hl7.org/fhir/us/qicore/StructureDefinition/qicore-coverage"; fhir:index 0; fhir:link <http://hl7.org/fhir/us/qicore/StructureDefinition/qicore-coverage> ] ]; 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>: example</p><p><b>meta</b>: </p><p><b>identifier</b>: 12345</p><p><b>status</b>: active</p><p><b>type</b>: Other Private Insurance <span style=\"background: LightGoldenRodYellow\">(Details : {urn:oid:2.16.840.1.113883.3.221.5 code '59' = '59', given as 'Other Private Insurance'})</span></p><p><b>policyHolder</b>: <a href=\"Patient-example.html\">Generated Summary: id: example; Medical record number = 12345 (USUAL); active; Peter James Chalmers (OFFICIAL), Jim Chalmers , Peter James Windsor (MAIDEN); ph: (03) 5555 6473(WORK), ph: (03) 3410 5613(MOBILE), ph: (03) 5555 8834(OLD); gender: male; birthDate: 1974-12-25; </a></p><p><b>subscriber</b>: <a href=\"Patient-example.html\">Generated Summary: id: example; Medical record number = 12345 (USUAL); active; Peter James Chalmers (OFFICIAL), Jim Chalmers , Peter James Windsor (MAIDEN); ph: (03) 5555 6473(WORK), ph: (03) 3410 5613(MOBILE), ph: (03) 5555 8834(OLD); gender: male; birthDate: 1974-12-25; </a></p><p><b>beneficiary</b>: <a href=\"Patient-example.html\">Generated Summary: id: example; Medical record number = 12345 (USUAL); active; Peter James Chalmers (OFFICIAL), Jim Chalmers , Peter James Windsor (MAIDEN); ph: (03) 5555 6473(WORK), ph: (03) 3410 5613(MOBILE), ph: (03) 5555 8834(OLD); gender: male; birthDate: 1974-12-25; </a></p><p><b>dependent</b>: 0</p><p><b>relationship</b>: self <span style=\"background: LightGoldenRodYellow\">(Details : {[not stated] code 'self' = 'self)</span></p><p><b>period</b>: May 23, 2011 12:00:00 AM --> May 23, 2012 12:00:00 AM</p><p><b>payor</b>: <a href=\"Organization-example.html\">Generated Summary: id: example; ??; active; <span title=\"Codes: {http://terminology.hl7.org/CodeSystem/organization-type team}\">Organizational team</span>; name: Health Level Seven International; ph: (+1) 734-677-7777, fax: (+1) 734-677-6622, hq@HL7.org</a></p><p><b>order</b>: 9</p></div>" ]; fhir:Coverage.identifier [ fhir:index 0; fhir:Identifier.system [ fhir:value "http://benefitsinc.com/certificate" ]; fhir:Identifier.value [ fhir:value "12345" ] ]; fhir:Coverage.status [ fhir:value "active"]; fhir:Coverage.type [ fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "urn:oid:2.16.840.1.113883.3.221.5" ]; fhir:Coding.code [ fhir:value "59" ]; fhir:Coding.display [ fhir:value "Other Private Insurance" ] ] ]; fhir:Coverage.policyHolder [ fhir:Reference.reference [ fhir:value "Patient/example" ] ]; fhir:Coverage.subscriber [ fhir:Reference.reference [ fhir:value "Patient/example" ] ]; fhir:Coverage.beneficiary [ fhir:Reference.reference [ fhir:value "Patient/example" ] ]; fhir:Coverage.dependent [ fhir:value "0"]; fhir:Coverage.relationship [ fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.code [ fhir:value "self" ] ] ]; fhir:Coverage.period [ fhir:Period.start [ fhir:value "2011-05-23"^^xsd:date ]; fhir:Period.end [ fhir:value "2012-05-23"^^xsd:date ] ]; fhir:Coverage.payor [ fhir:index 0; fhir:Reference.reference [ fhir:value "Organization/example" ] ]; fhir:Coverage.order [ fhir:value "9"^^xsd:positiveInteger]. # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl.