LinuxForHealth FHIR Implementation Guide
8.0.0 - draft United States of America flag

LinuxForHealth FHIR Implementation Guide - Local Development build (v8.0.0). See the Directory of published versions

: CDM Medication Knowledge Drug 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:MedicationKnowledge;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "MedicationKnowledgeDrugExample"];
  fhir:Resource.meta [
     fhir:Meta.source [ fhir:value "http://acme-health.com/pharmacy1" ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative: MedicationKnowledge</b><a name=\"MedicationKnowledgeDrugExample\"> </a></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 MedicationKnowledge \"MedicationKnowledgeDrugExample\" </p><p style=\"margin-bottom: 0px\">Information Source: http://acme-health.com/pharmacy1!</p></div><p><b>code</b>: 69452-0151-20 <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"CodeSystem-ndc-no-hyphens.html\">NDC No Hyphens Codes</a>#69452015120)</span></p><p><b>status</b>: active</p><blockquote><p><b>cost</b></p><p><b>type</b>: The federal upper limit price for the NDC of a drug claim <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"CodeSystem-medication-knowledge-cost-type.html\">Medication Knowledge Cost Type Codes</a>#federal-upper-limit)</span></p><p><b>source</b>: NDC</p><h3>Costs</h3><table class=\"grid\"><tr><td>-</td><td><b>Currency</b></td></tr><tr><td>*</td><td>USD</td></tr></table></blockquote></div>"
  ];
  fhir:MedicationKnowledge.code [
     fhir:CodeableConcept.coding [
       fhir:index 0;
       fhir:Coding.system [ fhir:value "http://linuxforhealth.org/fhir/cdm/CodeSystem/ndc-no-hyphens" ];
       fhir:Coding.code [ fhir:value "69452015120" ]     ]
  ];
  fhir:MedicationKnowledge.status [ fhir:value "active"];
  fhir:MedicationKnowledge.cost [
     fhir:index 0;
     fhir:MedicationKnowledge.cost.type [
       fhir:CodeableConcept.coding [
         fhir:index 0;
         fhir:Coding.system [ fhir:value "http://linuxforhealth.org/fhir/cdm/CodeSystem/medication-knowledge-cost-type" ];
         fhir:Coding.code [ fhir:value "federal-upper-limit" ]       ]     ];
     fhir:MedicationKnowledge.cost.source [ fhir:value "NDC" ];
     fhir:MedicationKnowledge.cost.cost [
       fhir:Money.currency [ fhir:value "USD" ]     ]
  ].

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

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