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

: A clinical laboratory catalog - 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:Composition;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "example-lab-compendium-header"];
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://hl7.org/fhir/uv/order-catalog/StructureDefinition/CatalogHeader";
       fhir:index 0;
       fhir:link <http://hl7.org/fhir/uv/order-catalog/StructureDefinition/CatalogHeader>     ]
  ];
  fhir:Resource.language [ fhir:value "en-US"];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "additional" ];
     fhir:Narrative.div "<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>Laboratory compendium title</b>: The good testing laboratory - Directory of Diagnostic Services</p>\n            <p><b>id:</b> example-lab-compendium-header</p>\n            <p><b>meta - profile:</b> hl7.org/fhir/uv/order-catalog/StructureDefinition/CatalogHeader</p>\n            <p><b>status:</b> preliminary</p>\n            <p><b>type:</b> catalog</p>\n            <p><b>category:</b> protocol</p>\n            <p><b>date published:</b> June 8, 2020</p>\n            <p><b>valid from:</b> 2020-08-01 <b>to:</b> 2021-12-31</p>\n            <p><b>author:</b> <a href=\"Organization-example-lab-organization.html\"> The good testing laboratory</a></p>\n            <p><b>custodian:</b> <a href=\"Organization-example-lab-organization.html\"> The good testing laboratory</a></p>\n        </div>"
  ];
  fhir:DomainResource.extension [
     fhir:index 0;
     fhir:Extension.url [ fhir:value "http://hl7.org/fhir/uv/order-catalog/StructureDefinition/ValidityPeriod" ];
     fhir:Extension.valuePeriod [
       fhir:Period.start [ fhir:value "2020-08-01"^^xsd:date ];
       fhir:Period.end [ fhir:value "2021-12-31"^^xsd:date ]     ]
  ];
  fhir:Composition.identifier [
     fhir:Identifier.use [ fhir:value "official" ];
     fhir:Identifier.system [ fhir:value "http://fhir.org" ];
     fhir:Identifier.value [ fhir:value "GoodLabCompendium" ]
  ];
  fhir:Composition.status [ fhir:value "preliminary"];
  fhir:Composition.type [
     fhir:CodeableConcept.text [ fhir:value "Catalog" ]
  ];
  fhir:Composition.category [
     fhir:index 0;
     fhir:CodeableConcept.coding [
       fhir:index 0;
       fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/catalogType" ];
       fhir:Coding.code [ fhir:value "protocol" ]     ]
  ];
  fhir:Composition.date [ fhir:value "2020-06-01T17:00:00+02:00"^^xsd:dateTime];
  fhir:Composition.author [
     fhir:index 0;
     fhir:Reference.reference [ fhir:value "Organization/example-lab-organization" ]
  ];
  fhir:Composition.title [ fhir:value "The good testing laboratory - Directory of Diagnostic Services"];
  fhir:Composition.custodian [
     fhir:Reference.reference [ fhir:value "Organization/example-lab-organization" ]
  ].

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

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