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

: Communication- Patient education 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:Communication;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "dental-education"];
  fhir:Resource.meta [
     fhir:Meta.versionId [ fhir:value "8" ];
     fhir:Meta.lastUpdated [ fhir:value "2021-08-27T15:26:29.185+00:00"^^xsd:dateTime ];
     fhir:Meta.source [ fhir:value "#FYwqy6PSKnGE7QuG" ];
     fhir:Meta.profile [
       fhir:value "http://hl7.org/fhir/us/dental-data-exchange/StructureDefinition/dental-communication";
       fhir:index 0;
       fhir:link <http://hl7.org/fhir/us/dental-data-exchange/StructureDefinition/dental-communication>     ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">Patient education\n        \n        \n        \n        \n        </div>"
  ];
  fhir:Communication.status [ fhir:value "completed"];
  fhir:Communication.category [
     fhir:index 0;
     fhir:CodeableConcept.coding [
       fhir:index 0;
       fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/communication-category" ];
       fhir:Coding.code [ fhir:value "instruction" ];
       fhir:Coding.display [ fhir:value "Instruction" ]     ]
  ];
  fhir:Communication.subject [
     fhir:Reference.reference [ fhir:value "Patient/example-dental" ]
  ];
  fhir:Communication.encounter [
     fhir:Reference.reference [ fhir:value "Encounter/Med-visit-1" ]
  ];
  fhir:Communication.recipient [
     fhir:index 0;
     fhir:Reference.reference [ fhir:value "Patient/example-dental" ]
  ];
  fhir:Communication.sender [
     fhir:Reference.reference [ fhir:value "Practitioner/practitioner-M" ]
  ];
  fhir:Communication.payload [
     fhir:index 0;
     fhir:Communication.payload.contentString [ fhir:value "Pt. Education. Advised to see dentist regularly, brush 2x/day w/ fluoride toothpaste, floss" ]
  ].

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

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