QI-Core Implementation Guide
5.0.0-ballot - STU Ballot
US
This page is part of the Quality Improvement Core Framework (v5.0.0-ballot: STU 5 Ballot 1) based on FHIR R4. The current version which supercedes this version is 4.1.1. 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: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: Coverage</b></p><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\">Resource Coverage \"example\" </p><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-qicore-coverage.html\">QICore Coverage</a></p></div><p><b>identifier</b>: id: 12345</p><p><b>status</b>: active</p><p><b>type</b>: Other Private Insurance <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"http://terminology.hl7.org/3.1.0/CodeSystem-SOPT.html\">Source of Payment Typology</a>#59)</span></p><p><b>policyHolder</b>: <a href=\"Patient-example.html\">Patient/example</a> \" CHALMERS\"</p><p><b>subscriber</b>: <a href=\"Patient-example.html\">Patient/example</a> \" CHALMERS\"</p><p><b>beneficiary</b>: <a href=\"Patient-example.html\">Patient/example</a> \" CHALMERS\"</p><p><b>dependent</b>: 0</p><p><b>relationship</b>: Self <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"http://terminology.hl7.org/3.1.0/CodeSystem-subscriber-relationship.html\">SubscriberPolicyholder Relationship Codes</a>#self)</span></p><p><b>period</b>: 2011-05-23 --> 2012-05-23</p><p><b>payor</b>: <a href=\"Organization-example.html\">Organization/example</a> \"Health Level Seven International\"</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 "https://nahdo.org/sopt" ];
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.system [ fhir:value "http://terminology.hl7.org/CodeSystem/subscriber-relationship" ];
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.