Order Catalog Implementation Guide
0.1.0 - STU Ballot 1

This page is part of the Order Catalog Implementation Guide (v0.1.0: STU 1 Ballot 1) based on FHIR R4. . For a full list of available versions, see the Directory of published versions

: Valid coded reasons for ordering a lab service - 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:ValueSet;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "example-reasons-for-order"];
  fhir:Resource.meta [
     fhir:Meta.lastUpdated [ fhir:value "2020-03-10T13:30:00.000+00:00"^^xsd:dateTime ];
     fhir:Meta.profile [
       fhir:value "http://hl7.org/fhir/uv/order-catalog/StructureDefinition/ObservationValueSet";
       fhir:index 0;
       fhir:link <http://hl7.org/fhir/uv/order-catalog/StructureDefinition/ObservationValueSet>     ]
  ];
  fhir:Resource.language [ fhir:value "en-US"];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en-US\" lang=\"en-US\"><ul><li>Include codes from <a href=\"http://www.snomed.org/\"><code>http://snomed.info/sct</code></a> where concept  is-a  138875005 (SNOMED CT Concept)</li></ul></div>"
  ];
  fhir:ValueSet.url [ fhir:value "http://hl7.org/fhir/uv/order-catalog/ValueSet/example-reasons-for-order"];
  fhir:ValueSet.version [ fhir:value "0.1.0"];
  fhir:ValueSet.name [ fhir:value "ReasonsForOrder"];
  fhir:ValueSet.title [ fhir:value "All Valid Reasons for Ordering a Lab Service"];
  fhir:ValueSet.status [ fhir:value "active"];
  fhir:ValueSet.experimental [ fhir:value "false"^^xsd:boolean];
  fhir:ValueSet.date [ fhir:value "2019-12-20"^^xsd:date];
  fhir:ValueSet.publisher [ fhir:value "HL7 International - Orders and Observations Work Group"];
  fhir:ValueSet.contact [
     fhir:index 0;
     fhir:ContactDetail.telecom [
       fhir:index 0;
       fhir:ContactPoint.system [ fhir:value "url" ];
       fhir:ContactPoint.value [ fhir:value "http://hl7.org/Special/committees/orders" ]     ]
  ];
  fhir:ValueSet.description [ fhir:value "Broadest value set that may be referenced by ObservationDefinition.validCodedValueSet"];
  fhir:ValueSet.jurisdiction [
     fhir:index 0;
     fhir:CodeableConcept.coding [
       fhir:index 0;
       fhir:Coding.system [ fhir:value "http://unstats.un.org/unsd/methods/m49/m49.htm" ];
       fhir:Coding.code [ fhir:value "001" ]     ]
  ];
  fhir:ValueSet.immutable [ fhir:value "false"^^xsd:boolean];
  fhir:ValueSet.compose [
     fhir:ValueSet.compose.include [
       fhir:index 0;
       fhir:ValueSet.compose.include.system [ fhir:value "http://snomed.info/sct" ];
       fhir:ValueSet.compose.include.filter [
         fhir:index 0;
         fhir:ValueSet.compose.include.filter.property [ fhir:value "concept" ];
         fhir:ValueSet.compose.include.filter.op [ fhir:value "is-a" ];
         fhir:ValueSet.compose.include.filter.value [ fhir:value "138875005" ]       ]     ]
  ].

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

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