Dental Data Exchange
1.0.0 - STU 1

This page is part of the Dental Data Exchange (v1.0.0: STU1) based on FHIR R4. This is the current published version. For a full list of available versions, see the Directory of published versions

: Medical/Dental Coverage example - TTL Representation

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:Coverage;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "Dental-Aetna"];
  fhir:Resource.meta [
     fhir:Meta.versionId [ fhir:value "6" ];
     fhir:Meta.lastUpdated [ fhir:value "2020-08-06T17:04:20.329+00:00"^^xsd:dateTime ];
     fhir:Meta.source [ fhir:value "#wVOzmfnx1oKPJar2" ];
     fhir:Meta.profile [
       fhir:value "http://hl7.org/fhir/us/davinci-hrex/StructureDefinition/hrex-coverage";
       fhir:index 0;
       fhir:link <http://hl7.org/fhir/us/davinci-hrex/StructureDefinition/hrex-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><p><b>identifier</b>: id: 12345</p><p><b>status</b>: active</p><p><b>type</b>: <span title=\"Codes: {http://terminology.hl7.org/CodeSystem/v3-ActCode DENTAL}\">dental care policy</span></p><p><b>subscriber</b>: <a href=\"Patient-example-dental.html\">Generated Summary: Medical Record Number: 5152020 (USUAL); active: true; Patient A ; Phone: 123-456-7890, testA@email.com; gender: male; birthDate: 1990-01-01</a></p><p><b>subscriberId</b>: 123456</p><p><b>beneficiary</b>: <a href=\"Patient-example-dental.html\">Generated Summary: Medical Record Number: 5152020 (USUAL); active: true; Patient A ; Phone: 123-456-7890, testA@email.com; gender: male; birthDate: 1990-01-01</a></p><p><b>dependent</b>: 0</p><p><b>relationship</b>: <span title=\"Codes: {http://terminology.hl7.org/CodeSystem/subscriber-relationship self}\">Self</span></p><p><b>period</b>: 2020-01-01 --&gt; 2020-01-01</p><p><b>payor</b>: <a href=\"Organization-Aetna-organization.html\">Generated Summary: id: 9316452725; active: true; <span title=\"Codes: {http://terminology.hl7.org/CodeSystem/organization-type pay}\">Payer</span>; name: Aetna Insurance; Phone: (+1) 720-677-7777, customer2-service@Aetna.org</a></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><span title=\"Codes: {http://terminology.hl7.org/CodeSystem/coverage-class plan}\">Plan</span></td><td>B37FC</td><td>Aetna Full Coverage: Medical, Dental, Pharmacy, Vision, EHC</td></tr></table></div>"
  ];
  fhir:Coverage.identifier [
     fhir:index 0;
     fhir:Identifier.system [ fhir:value "http://benefitsAetna.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 "http://terminology.hl7.org/CodeSystem/v3-ActCode" ];
       fhir:Coding.code [ fhir:value "DENTAL" ];
       fhir:Coding.display [ fhir:value "dental care policy" ]     ]
  ];
  fhir:Coverage.subscriber [
     fhir:Reference.reference [ fhir:value "Patient/example-dental" ]
  ];
  fhir:Coverage.subscriberId [ fhir:value "123456"];
  fhir:Coverage.beneficiary [
     fhir:Reference.reference [ fhir:value "Patient/example-dental" ]
  ];
  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:Coding.display [ fhir:value "Self" ]     ]
  ];
  fhir:Coverage.period [
     fhir:Period.start [ fhir:value "2020-01-01"^^xsd:date ];
     fhir:Period.end [ fhir:value "2020-01-01"^^xsd:date ]
  ];
  fhir:Coverage.payor [
     fhir:index 0;
     fhir:Reference.reference [ fhir:value "Organization/Aetna-organization" ]
  ];
  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:Coverage.class.value [ fhir:value "B37FC" ];
     fhir:Coverage.class.name [ fhir:value "Aetna Full Coverage: Medical, Dental, Pharmacy, Vision, EHC" ]
  ].

# - ontology header ------------------------------------------------------------

 a owl:Ontology;
  owl:imports fhir:fhir.ttl.