@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<http://hl7.org/fhir/uv/order-catalog/Composition/example-medication-catalog-header> a fhir:Composition ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "example-medication-catalog-header"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://hl7.org/fhir/uv/order-catalog/StructureDefinition/CatalogHeader"^^xsd:anyURI ;
       fhir:l <http://hl7.org/fhir/uv/order-catalog/StructureDefinition/CatalogHeader>
     ] )
  ] ; # 
  fhir:language [ fhir:v "en-US"] ; # 
  fhir:text [
     fhir:status [ fhir:v "additional" ] ;
     fhir:div [ fhir:v "<div xml:lang=\"en-US\" xmlns=\"http://www.w3.org/1999/xhtml\" 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>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:extension ( [
     fhir:url [
       fhir:v "http://hl7.org/fhir/uv/order-catalog/StructureDefinition/ValidityPeriod"^^xsd:anyURI ;
       fhir:l <http://hl7.org/fhir/uv/order-catalog/StructureDefinition/ValidityPeriod>
     ] ;
     fhir:value [
       a fhir:Period ;
       fhir:start [ fhir:v "2022-09-30"^^xsd:date ] ;
       fhir:end [ fhir:v "2022-12-31"^^xsd:date ]
     ]
  ] ) ; # 
  fhir:identifier ( [
     fhir:use [ fhir:v "official" ] ;
     fhir:system [
       fhir:v "http://fhir.org"^^xsd:anyURI ;
       fhir:l <http://fhir.org>
     ] ;
     fhir:value [ fhir:v "HealthylandDrugsCatalog" ]
  ] ) ; # 
  fhir:status [ fhir:v "preliminary"] ; # 
  fhir:type [
     fhir:text [ fhir:v "Catalog" ]
  ] ; # 
  fhir:category ( [
     fhir:coding ( [
       fhir:system [
         fhir:v "http://terminology.hl7.org/CodeSystem/catalogType"^^xsd:anyURI ;
         fhir:l <http://terminology.hl7.org/CodeSystem/catalogType>
       ] ;
       fhir:code [ fhir:v "medication" ]
     ] )
  ] ) ; # 
  fhir:date [ fhir:v "2022-05-20T12:00:00+02:00"^^xsd:dateTime] ; # 
  fhir:author ( [
     fhir:display [ fhir:v "Healthyland medicinal product agency" ]
  ] ) ; # 
  fhir:title [ fhir:v "Drugs authorized for prescription in Healthyland"] ; # 
  fhir:custodian [
     fhir:display [ fhir:v "Healthyland medicinal product agency" ]
  ] . # 

# -------------------------------------------------------------------------------------

