Order Catalog Implementation Guide
current - CI Build International flag

Order Catalog Implementation Guide, published by HL7 International - Orders and Observations Work Group. This is not an authorized publication; it is the continuous build for version current). This version is based on the current content of https://github.com/HL7/fhir-order-catalog/ and changes regularly. See the Directory of published versions

: Medications authorized for prescription in Healthyland - 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:Composition;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "example-medication-catalog-header"]; # 
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://hl7.org/fhir/uv/order-catalog/StructureDefinition/CatalogHeader";
       fhir:index 0;
       fhir:link <http://hl7.org/fhir/uv/order-catalog/StructureDefinition/CatalogHeader>     ]
  ]; # 
  fhir:Resource.language [ fhir:value "en-US"]; # 
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "additional" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en-US\" lang=\"en-US\"><p><b>Additional Narrative:</b></p><p><b>Medication catalog title</b>: Drugs authorized for prescription in Healthyland</p><p><b>id:</b> example-medication-catalog-header</p><p><b>meta - profile:</b> hl7.org/fhir/uv/order-catalog/StructureDefinition/CatalogHeader</p><p><b>status:</b> preliminary</p><p><b>type:</b> catalog</p><p><b>category:</b> medication</p><p><b>date published:</b> May 20, 2022</p><p><b>valid from:</b> 2022-09-30 <b>to:</b> 2022-12-31</p><p><b>author:</b> Healthyland medicinal product agency</p><p><b>custodian:</b> Healthyland medicinal product agency</p></div>"
  ]; # 
  fhir:DomainResource.extension [
     fhir:index 0;
     fhir:Extension.url [ fhir:value "http://hl7.org/fhir/uv/order-catalog/StructureDefinition/ValidityPeriod" ];
     fhir:Extension.valuePeriod [
       fhir:Period.start [ fhir:value "2022-09-30"^^xsd:date ];
       fhir:Period.end [ fhir:value "2022-12-31"^^xsd:date ]     ]
  ]; # 
  fhir:Composition.identifier [
     fhir:index 0;
     fhir:Identifier.use [ fhir:value "official" ];
     fhir:Identifier.system [ fhir:value "http://fhir.org" ];
     fhir:Identifier.value [ fhir:value "HealthylandDrugsCatalog" ]
  ]; # 
  fhir:Composition.status [ fhir:value "preliminary"]; # 
  fhir:Composition.type [
     fhir:CodeableConcept.text [ fhir:value "Catalog" ]
  ]; # 
  fhir:Composition.category [
     fhir:index 0;
     fhir:CodeableConcept.coding [
       fhir:index 0;
       fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/catalogType" ];
       fhir:Coding.code [ fhir:value "medication" ]     ]
  ]; # 
  fhir:Composition.date [ fhir:value "2022-05-20T12:00:00+02:00"^^xsd:dateTime]; # 
  fhir:Composition.author [
     fhir:index 0;
     fhir:Reference.display [ fhir:value "Healthyland medicinal product agency" ]
  ]; # 
  fhir:Composition.title [ fhir:value "Drugs authorized for prescription in Healthyland"]; # 
  fhir:Composition.custodian [
     fhir:Reference.display [ fhir:value "Healthyland medicinal product agency" ]
  ]. # 

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

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