openIMIS FHIR R4 Implementation Guide
1.0.0 - ci-build
openIMIS FHIR R4 Implementation Guide - Local Development build (v1.0.0). 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 "JoeDoeCoverage"];
fhir:Resource.meta [
fhir:Meta.profile [
fhir:value "https://openimis.github.io/openimis_fhir_r4_ig/StructureDefinition/openimis-coverage";
fhir:index 0;
fhir:link <https://openimis.github.io/openimis_fhir_r4_ig/StructureDefinition/openimis-coverage> ]
];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "extensions" ];
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 \"JoeDoeCoverage\" </p><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-openimis-coverage.html\">openIMIS Coverage</a></p></div><p><b>Date (Coverage)</b>: 2021-01-28</p><p><b>Date (Coverage)</b>: 2021-01-28</p><p><b>identifier</b>: UUID unique identifier: D30F70DF-D10B-43D4-BF31-5137C118AD84</p><p><b>status</b>: active</p><p><b>policyHolder</b>: <a href=\"Patient-jane-doe.html\">Patient/jane-doe</a> \" DOE\"</p><p><b>beneficiary</b>: <a href=\"joe-doe\">joe-doe</a></p><p><b>period</b>: 2021-07-01 --> 2022-06-30</p><p><b>payor</b>: <a href=\"Patient-jane-doe.html\">Patient/jane-doe</a> \" DOE\"</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/3.1.0/CodeSystem-coverage-class.html\">Coverage Class Codes</a>#plan)</span></td><td>RX01</td><td>Regional fixed enrolment</td></tr></table></div>"
];
fhir:DomainResource.extension [
fhir:index 0;
fhir:Extension.url [ fhir:value "https://openimis.github.io/openimis_fhir_r4_ig/StructureDefinition/coverage-date" ];
fhir:Extension.valueDate [ fhir:value "2021-01-28"^^xsd:date ]
], [
fhir:index 1;
fhir:Extension.url [ fhir:value "https://openimis.github.io/openimis_fhir_r4_ig/StructureDefinition/coverage-date" ];
fhir:Extension.valueDate [ fhir:value "2021-01-28"^^xsd:date ]
];
fhir:Coverage.identifier [
fhir:index 0;
fhir:Identifier.type [
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "https://openimis.github.io/openimis_fhir_r4_ig/CodeSystem/openimis-identifiers" ];
fhir:Coding.code [ fhir:value "UUID" ] ] ];
fhir:Identifier.value [ fhir:value "D30F70DF-D10B-43D4-BF31-5137C118AD84" ]
];
fhir:Coverage.status [ fhir:value "active"];
fhir:Coverage.policyHolder [
fhir:Reference.reference [ fhir:value "Patient/jane-doe" ]
];
fhir:Coverage.beneficiary [
fhir:Reference.reference [ fhir:value "joe-doe" ]
];
fhir:Coverage.period [
fhir:Period.start [ fhir:value "2021-07-01"^^xsd:date ];
fhir:Period.end [ fhir:value "2022-06-30"^^xsd:date ]
];
fhir:Coverage.payor [
fhir:index 0;
fhir:Reference.reference [ fhir:value "Patient/jane-doe" ]
];
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 "RX01" ];
fhir:Coverage.class.name [ fhir:value "Regional fixed enrolment" ]
].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.