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

: Laboratory Organization - 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:Organization;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "example-lab-organization"];
  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\"><p><b>Generated Narrative</b></p><p><b>id</b>: example-lab-organization</p><p><b>language</b>: en-US</p><p><b>active</b>: true</p><p><b>name</b>: The Good Testing Laboratory</p><p><b>telecom</b>: http://fhir.org(TEMP)</p><p><b>address</b>: 1 Lab Dr Paris TX 12340 USA (TEMP)</p></div>"
  ];
  fhir:Organization.active [ fhir:value "true"^^xsd:boolean];
  fhir:Organization.name [ fhir:value "The Good Testing Laboratory"];
  fhir:Organization.telecom [
     fhir:index 0;
     fhir:ContactPoint.system [ fhir:value "url" ];
     fhir:ContactPoint.value [ fhir:value "http://fhir.org" ];
     fhir:ContactPoint.use [ fhir:value "temp" ]
  ];
  fhir:Organization.address [
     fhir:index 0;
     fhir:Address.use [ fhir:value "temp" ];
     fhir:Address.type [ fhir:value "both" ];
     fhir:Address.line [
       fhir:value "1 Lab Dr";
       fhir:index 0     ];
     fhir:Address.city [ fhir:value "Paris" ];
     fhir:Address.state [ fhir:value "TX" ];
     fhir:Address.postalCode [ fhir:value "12340" ];
     fhir:Address.country [ fhir:value "USA" ]
  ].

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

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