Order Catalog Implementation Guide
0.1.0 - STU Ballot 1

Publication Build: This will be filled in by the publication tooling

: Laboratory service type ValueSet - 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 "laboratory-service-type"];
  fhir:Resource.meta [
     fhir:Meta.lastUpdated [ fhir:value "2019-12-20T10:30:00.000+00:00"^^xsd:dateTime ];
     fhir:Meta.profile [
       fhir:value "http://hl7.org/fhir/StructureDefinition/shareablevalueset";
       fhir:index 0;
       fhir:link <http://hl7.org/fhir/StructureDefinition/shareablevalueset>     ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><ul><li>Include these codes as defined in <a href=\"CodeSystem-laboratory-service-definition-type.html\"><code>http://hl7.org/fhir/uv/order-catalog/CodeSystem/laboratory-service-definition-type</code></a><table class=\"none\"><tr><td style=\"white-space:nowrap\"><b>Code</b></td><td><b>Display</b></td></tr><tr><td><a href=\"CodeSystem-laboratory-service-definition-type.html#laboratory-service-definition-type-test\">test</a></td><td>unitary measurement performed on an in vitro biologic specimen</td><td>laboratory service performing a single measurement</td></tr><tr><td><a href=\"CodeSystem-laboratory-service-definition-type.html#laboratory-service-definition-type-panel\">panel</a></td><td>collection of tests and panels performed on one or more in vitro biologic specimens</td><td>laboratory service comprising two or more tests and/or panels</td></tr></table></li></ul></div>"
  ];
  fhir:ValueSet.url [ fhir:value "http://hl7.org/fhir/uv/order-catalog/ValueSet/laboratory-service-type"];
  fhir:ValueSet.version [ fhir:value "0.1.0"];
  fhir:ValueSet.name [ fhir:value "LaboratoryServiceType"];
  fhir:ValueSet.title [ fhir:value "Types of diagnostic services performed by a laboratory"];
  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 "This value set is restricted to these two codes: test | panel"];
  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://hl7.org/fhir/uv/order-catalog/CodeSystem/laboratory-service-definition-type" ];
       fhir:ValueSet.compose.include.concept [
         fhir:index 0;
         fhir:ValueSet.compose.include.concept.code [ fhir:value "test" ];
         fhir:ValueSet.compose.include.concept.display [ fhir:value "unitary measurement performed on an in vitro biologic specimen" ]       ], [
         fhir:index 1;
         fhir:ValueSet.compose.include.concept.code [ fhir:value "panel" ];
         fhir:ValueSet.compose.include.concept.display [ fhir:value "collection of tests and panels performed on one or more in vitro biologic specimens" ]       ]     ]
  ].

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

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