Order Catalog Implementation Guide
0.1.0 - STU Ballot 1

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

: Laboratory service type CodeSystem - 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:CodeSystem;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "laboratory-service-definition-type"];
  fhir:Resource.meta [
     fhir:Meta.lastUpdated [ fhir:value "2019-12-20T09:55:00.000+00:00"^^xsd:dateTime ];
     fhir:Meta.profile [
       fhir:value "http://hl7.org/fhir/StructureDefinition/shareablecodesystem";
       fhir:index 0;
       fhir:link <http://hl7.org/fhir/StructureDefinition/shareablecodesystem>     ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n      <h2>Laboratory services compendium</h2>\n      <div>\n        <p>This CodeSystem provides additional coded concepts for <i>PlanDefinition.type</i> to cover the representation of laboratory diagnostic services</p>\n      </div>\n      <ul>\n        <li>\n          <p>Contains:</p>\n          <table class=\"none\">\n            <tr>\n              <td>\n                <b> Code</b>\n              </td>\n              <td>\n                <b> Display</b>\n              </td>\n             </tr>\n            <tr>\n              <td>test</td>\n              <td>unitary measurement performed on an in vitro biologic specimen</td>\n            </tr>\n            <tr>\n              <td>panel</td>\n              <td>collection of tests and panels performed on one or more in vitro biologic specimens</td>\n            </tr>\n           </table>\n        </li>\n      </ul>\n    </div>"
  ];
  fhir:CodeSystem.url [ fhir:value "http://hl7.org/fhir/uv/order-catalog/CodeSystem/laboratory-service-definition-type"];
  fhir:CodeSystem.version [ fhir:value "0.1.0"];
  fhir:CodeSystem.name [ fhir:value "LaboratoryServiceDefinitionType"];
  fhir:CodeSystem.title [ fhir:value "Code system for types of laboratory service definitions"];
  fhir:CodeSystem.status [ fhir:value "draft"];
  fhir:CodeSystem.experimental [ fhir:value "false"^^xsd:boolean];
  fhir:CodeSystem.date [ fhir:value "2019-12-20"^^xsd:date];
  fhir:CodeSystem.publisher [ fhir:value "HL7 International - Orders and Observations Work Group"];
  fhir:CodeSystem.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:CodeSystem.description [ fhir:value "This CodeSystem resource provides the concepts that enable to characterize laboratory diagnostic services described as instances of PlanDefinition, in the PlanDefinition.type element"];
  fhir:CodeSystem.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:CodeSystem.content [ fhir:value "complete"];
  fhir:CodeSystem.count [ fhir:value "2"^^xsd:nonNegativeInteger];
  fhir:CodeSystem.concept [
     fhir:index 0;
     fhir:CodeSystem.concept.code [ fhir:value "test" ];
     fhir:CodeSystem.concept.display [ fhir:value "unitary measurement performed on an in vitro biologic specimen" ];
     fhir:CodeSystem.concept.definition [ fhir:value "laboratory service performing a single measurement" ]
  ], [
     fhir:index 1;
     fhir:CodeSystem.concept.code [ fhir:value "panel" ];
     fhir:CodeSystem.concept.display [ fhir:value "collection of tests and panels performed on one or more in vitro biologic specimens" ];
     fhir:CodeSystem.concept.definition [ fhir:value "laboratory service comprising two or more tests and/or panels" ]
  ].

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

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