Order Catalog Implementation Guide
1.0.0-ballot - CI Build International flag

Order Catalog Implementation Guide, published by HL7 International / Orders and Observations. This guide is not an authorized publication; it is the continuous build for version 1.0.0-ballot built by the FHIR (HL7® FHIR® Standard) CI Build. 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

: Example Catalog - TTL Representation

Page standards status: Informative

Raw ttl | Download


@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 -------------------------------------------------------------------

 a fhir:Composition ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "example-catalog"] ; # 
  fhir:meta [
    ( fhir:profile [
fhir:v "http://hl7.org/fhir/uv/order-catalog/StructureDefinition/Catalog"^^xsd:anyURI ;
fhir:l <http://hl7.org/fhir/uv/order-catalog/StructureDefinition/Catalog>     ] )
  ] ; # 
  fhir:language [ fhir:v "en-US"] ; # 
  fhir:text [
fhir:status [ fhir:v "additional" ] ;
fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en-US\" lang=\"en-US\">\n            <p><b>Additional Narrative: </b></p>\n            <p><b>Catalog title:</b> Example Laboratory Service Catalog</p>\n            <p><b>id:</b> example-catalog</p>\n            <p><b>meta - profile:</b> hl7.org/fhir/uv/order-catalog/StructureDefinition/Catalog</p>\n            <p><b>status:</b> final</p>\n            <p><b>type:</b> Catalog</p>\n            <p><b>category:</b> protocol</p>\n            <p><b>date published:</b> June 1, 2024</p>\n            <p><b>valid from:</b> 2024-06-01 <b>to:</b> 2025-12-31</p>\n            <p><b>author:</b> <a href=\"Organization-example-lab-organization.html\">The good testing laboratory</a></p>\n        </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 "2024-06-01"^^xsd:date ] ;
fhir:end [ fhir:v "2025-12-31"^^xsd:date ]     ]
  ] ) ; # 
  fhir:status [ fhir:v "final"] ; # 
  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 "protocol" ]     ] )
  ] ) ; # 
  fhir:date [ fhir:v "2024-06-01T10:00:00+02:00"^^xsd:dateTime] ; # 
  fhir:author ( [
fhir:l fhir:Organization/example-lab-organization ;
fhir:reference [ fhir:v "Organization/example-lab-organization" ]
  ] ) ; # 
  fhir:title [ fhir:v "Example Laboratory Service Catalog"] ; # 
  fhir:section ( [
fhir:title [ fhir:v "Potassium measurement" ] ;
    ( fhir:entry [
fhir:l fhir:PlanDefinition/example-lab-service-potassium-serum ;
fhir:reference [ fhir:v "PlanDefinition/example-lab-service-potassium-serum" ]     ] )
  ] [
fhir:title [ fhir:v "Serum creatinine measurement" ] ;
    ( fhir:entry [
fhir:l fhir:PlanDefinition/example-lab-test-serum-creatinine ;
fhir:reference [ fhir:v "PlanDefinition/example-lab-test-serum-creatinine" ]     ] )
  ] ) . #