HL7 BE Laboratory WG Implementation Guide
1.0.0 - STU

This page is part of the HL7 Belgium FHIR Implementation Guide - Lab related profiles (v1.0.0: Trial Use) based on FHIR R4. This is the current published version. For a full list of available versions, see the Directory of published versions

: servicerequest1 - 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 sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

 a fhir:ServiceRequest;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "servicerequest1"];
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "https://www.ehealth.fgov.be/standards/fhir/lab/StructureDefinition/be-servicerequest";
       fhir:index 0;
       fhir:link <https://www.ehealth.fgov.be/standards/fhir/lab/StructureDefinition/be-servicerequest>     ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "empty" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">empty</div>"
  ];
  fhir:ServiceRequest.status [ fhir:value "active"];
  fhir:ServiceRequest.intent [ fhir:value "order"];
  fhir:ServiceRequest.category [
     fhir:index 0;
     fhir:CodeableConcept.coding [
       fhir:index 0;
       a sct:108252007;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
       fhir:Coding.code [ fhir:value "108252007" ];
       fhir:Coding.display [ fhir:value "Laboratory procedure" ]     ]
  ];
  fhir:ServiceRequest.subject [
     fhir:Reference.reference [ fhir:value "Patient/patient1" ]
  ];
  fhir:ServiceRequest.authoredOn [ fhir:value "2015-11-01T14:41:00+01:00"^^xsd:dateTime];
  fhir:ServiceRequest.requester [
     fhir:Reference.reference [ fhir:value "Practitioner/practitioner1" ]
  ];
  fhir:ServiceRequest.specimen [
     fhir:index 0;
     fhir:Reference.reference [ fhir:value "Specimen/specimen1" ]
  ].

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

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