Dental Data Exchange
0.1.0 - STU1 Ballot

This page is part of the Dental Data Exchange (v0.1.0: STU 1 Ballot 1) based on FHIR R4. The current version which supercedes this version is 1.0.0. For a full list of available versions, see the Directory of published versions

: Tylenol Medication (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 sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

 a fhir:MedicationRequest;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "Tylenol-med-dental"];
  fhir:Resource.meta [
     fhir:Meta.versionId [ fhir:value "4" ];
     fhir:Meta.lastUpdated [ fhir:value "2020-08-06T17:04:23.479+00:00"^^xsd:dateTime ];
     fhir:Meta.source [ fhir:value "#KW2tWgQtZYTURdmX" ];
     fhir:Meta.profile [
       fhir:value "http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest";
       fhir:index 0;
       fhir:link <http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest>     ]
  ];
  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>id</b>: Tylenol-med-dental</p><p><b>meta</b>: </p><p><b>status</b>: active</p><p><b>intent</b>: plan</p><p><b>medication</b>: <span title=\"Codes: {http://www.nlm.nih.gov/research/umls/rxnorm 993836}\">Acetaminophen 300 MG / Codeine Phosphate 30 MG [Tylenol with Codeine]</span></p><p><b>subject</b>: <a href=\"Patient-example-dental.html\">Patient A. Generated Summary: id: example-dental; Medical Record Number: 5152020 (USUAL); active; Patient A ; ph: 123-456-7890(HOME), testA@email.com; gender: male; birthDate: 1990-01-01</a></p><p><b>authoredOn</b>: 2020-03-30</p><p><b>requester</b>: <a href=\"Practitioner-practitioner-D.html\">Dr. Dental D, DMD. Generated Summary: id: practitioner-D; id: 1234560000; John D ; ph: 720-555-6443(WORK); gender: male; birthDate: 1990-06-09</a></p><p><b>dosageInstruction</b>: </p><h3>DispenseRequests</h3><table class=\"grid\"><tr><td>-</td><td><b>NumberOfRepeatsAllowed</b></td><td><b>Quantity</b></td><td><b>ExpectedSupplyDuration</b></td></tr><tr><td>*</td><td>10</td><td>300 mg</td><td>30 days</td></tr></table></div>"
  ];
  fhir:MedicationRequest.status [ fhir:value "active"];
  fhir:MedicationRequest.intent [ fhir:value "plan"];
  fhir:MedicationRequest.medicationCodeableConcept [
     fhir:CodeableConcept.coding [
       fhir:index 0;
       fhir:Coding.system [ fhir:value "http://www.nlm.nih.gov/research/umls/rxnorm" ];
       fhir:Coding.code [ fhir:value "993836" ];
       fhir:Coding.display [ fhir:value "Acetaminophen 300 MG / Codeine Phosphate 30 MG [Tylenol with Codeine]" ]     ];
     fhir:CodeableConcept.text [ fhir:value "Acetaminophen 300 MG / Codeine Phosphate 30 MG [Tylenol with Codeine]" ]
  ];
  fhir:MedicationRequest.subject [
     fhir:Reference.reference [ fhir:value "Patient/example-dental" ];
     fhir:Reference.display [ fhir:value "Patient A" ]
  ];
  fhir:MedicationRequest.authoredOn [ fhir:value "2020-03-30"^^xsd:date];
  fhir:MedicationRequest.requester [
     fhir:Reference.reference [ fhir:value "Practitioner/practitioner-D" ];
     fhir:Reference.display [ fhir:value "Dr. Dental D, DMD" ]
  ];
  fhir:MedicationRequest.dosageInstruction [
     fhir:index 0;
     fhir:Dosage.text [ fhir:value "take 1 tablet every 4 hours as needed for pain" ];
     fhir:Dosage.route [
       fhir:CodeableConcept.coding [
         fhir:index 0;
         a sct:26643006;
         fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
         fhir:Coding.code [ fhir:value "26643006" ];
         fhir:Coding.display [ fhir:value "Oral use" ]       ]     ]
  ];
  fhir:MedicationRequest.dispenseRequest [
     fhir:MedicationRequest.dispenseRequest.numberOfRepeatsAllowed [ fhir:value "10"^^xsd:nonNegativeInteger ];
     fhir:MedicationRequest.dispenseRequest.quantity [
       fhir:Quantity.value [ fhir:value "300"^^xsd:decimal ];
       fhir:Quantity.unit [ fhir:value "mg" ];
       fhir:Quantity.system [ fhir:value "http://unitsofmeasure.org" ];
       fhir:Quantity.code [ fhir:value "mg" ]     ];
     fhir:MedicationRequest.dispenseRequest.expectedSupplyDuration [
       fhir:Quantity.value [ fhir:value "30"^^xsd:decimal ];
       fhir:Quantity.unit [ fhir:value "days" ];
       fhir:Quantity.system [ fhir:value "http://unitsofmeasure.org" ];
       fhir:Quantity.code [ fhir:value "d" ]     ]
  ].

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

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