This page is part of the Da Vinci Patient Cost Transparency Implementation Guide (v0.1.0: STU 1 Draft) based on FHIR R4. . 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 "coverage1001"];
fhir:Resource.meta [
fhir:Meta.profile [
fhir:value "http://hl7.org/fhir/us/davinci-pct/StructureDefinition/davinci-pct-coverage";
fhir:index 0;
fhir:link <http://hl7.org/fhir/us/davinci-pct/StructureDefinition/davinci-pct-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</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 \"coverage1001\" </p><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-davinci-pct-coverage.html\">PCT Coverage</a></p></div><p><b>status</b>: active</p><p><b>subscriber</b>: <a href=\"Patient-patient1001.html\">Patient/patient1001</a> \" BETTERHALF\"</p><p><b>subscriberId</b>: PFP123450000</p><p><b>beneficiary</b>: <a href=\"Patient-patient1001.html\">Patient/patient1001</a> \" BETTERHALF\"</p><p><b>relationship</b>: Self <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"http://terminology.hl7.org/2.1.0/CodeSystem-subscriber-relationship.html\">SubscriberPolicyholder Relationship Codes</a>#self)</span></p><p><b>period</b>: 2021-01-01 --> 2022-01-01</p><p><b>payor</b>: <a href=\"Organization-org1001.html\">Organization/org1001</a> \"Umbrella Insurance Company\"</p><h3>Classes</h3><table class=\"grid\"><tr><td>-</td><td><b>Type</b></td><td><b>Value</b></td><td><b>Name</b></td></tr><tr><td>*</td><td>Plan <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"http://terminology.hl7.org/2.1.0/CodeSystem-coverage-class.html\">Coverage Class Codes</a>#plan)</span></td><td>Premim Family Plus</td><td>Premim Family Plus Plan</td></tr></table><h3>CostToBeneficiaries</h3><table class=\"grid\"><tr><td>-</td><td><b>Type</b></td><td><b>Value[x]</b></td></tr><tr><td>*</td><td>Copay Percentage <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"http://terminology.hl7.org/2.1.0/CodeSystem-coverage-copay-type.html\">Coverage Copay Type Codes</a>#copaypct)</span></td><td>20</td></tr></table><p><b>contract</b>: <a href=\"Contract-contract1001.html\">Contract/contract1001</a></p></div>"
];
fhir:Coverage.status [ fhir:value "active"];
fhir:Coverage.subscriber [
fhir:Reference.reference [ fhir:value "Patient/patient1001" ]
];
fhir:Coverage.subscriberId [ fhir:value "PFP123450000"];
fhir:Coverage.beneficiary [
fhir:Reference.reference [ fhir:value "Patient/patient1001" ]
];
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:Coding.display [ fhir:value "Self" ] ]
];
fhir:Coverage.period [
fhir:Period.start [ fhir:value "2021-01-01"^^xsd:date ];
fhir:Period.end [ fhir:value "2022-01-01"^^xsd:date ]
];
fhir:Coverage.payor [
fhir:index 0;
fhir:Reference.reference [ fhir:value "Organization/org1001" ]
];
fhir:Coverage.class [
fhir:index 0;
fhir:Coverage.class.type [
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/coverage-class" ];
fhir:Coding.code [ fhir:value "plan" ];
fhir:Coding.display [ fhir:value "Plan" ] ] ];
fhir:Coverage.class.value [ fhir:value "Premim Family Plus" ];
fhir:Coverage.class.name [ fhir:value "Premim Family Plus Plan" ]
];
fhir:Coverage.costToBeneficiary [
fhir:index 0;
fhir:Coverage.costToBeneficiary.type [
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/coverage-copay-type" ];
fhir:Coding.code [ fhir:value "copaypct" ];
fhir:Coding.display [ fhir:value "Copay Percentage" ] ] ];
fhir:Coverage.costToBeneficiary.valueQuantity [
fhir:Quantity.value [ fhir:value "20"^^xsd:decimal ] ]
];
fhir:Coverage.contract [
fhir:index 0;
fhir:Reference.reference [ fhir:value "Contract/contract1001" ]
].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.