Laboratory Workflows Implementation Guide
0.3.0 - ci-build

Laboratory Workflows Implementation Guide - Local Development build (v0.3.0). See the Directory of published versions

: Lab Order Task - Requested - 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:Task;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "example-laboratory-task-requested"];
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://i-tech-uw.github.io/laboratory-workflows-ig/StructureDefinition/laboratory-task";
       fhir:index 0;
       fhir:link <http://i-tech-uw.github.io/laboratory-workflows-ig/StructureDefinition/laboratory-task>     ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative: Task</b></p><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\">Resource Task \"example-laboratory-task-requested\" </p><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-laboratory-task.html\">Laboratory Workflow Task Resource</a></p></div><p><b>identifier</b>: id: 88ffa7fb-0419-4097-8b45-24f0d843c5ea</p><p><b>basedOn</b>: </p><ul><li><a href=\"ServiceRequest-example-laboratory-service-request-panel.html\">ServiceRequest/example-laboratory-service-request-panel</a></li><li><a href=\"ServiceRequest-example-laboratory-service-request.html\">ServiceRequest/example-laboratory-service-request</a></li></ul><p><b>status</b>: requested</p><p><b>intent</b>: order</p><p><b>for</b>: <a href=\"Patient-example-laboratory-patient.html\">Patient/example-laboratory-patient</a> \" MUTESA\"</p><p><b>authoredOn</b>: 2021-05-20</p><p><b>owner</b>: <a href=\"Practitioner-example-laboratory-practitioner.html\">Practitioner/example-laboratory-practitioner</a> \"\"</p></div>"
  ];
  fhir:Task.identifier [
     fhir:index 0;
     fhir:Identifier.system [ fhir:value "http://isanteplus.org/ext/task/identifier" ];
     fhir:Identifier.value [ fhir:value "88ffa7fb-0419-4097-8b45-24f0d843c5ea" ]
  ];
  fhir:Task.basedOn [
     fhir:index 0;
     fhir:Reference.reference [ fhir:value "ServiceRequest/example-laboratory-service-request-panel" ];
     fhir:Reference.type [ fhir:value "ServiceRequest" ]
  ], [
     fhir:index 1;
     fhir:Reference.reference [ fhir:value "ServiceRequest/example-laboratory-service-request" ];
     fhir:Reference.type [ fhir:value "ServiceRequest" ]
  ];
  fhir:Task.status [ fhir:value "requested"];
  fhir:Task.intent [ fhir:value "order"];
  fhir:Task.for [
     fhir:Reference.reference [ fhir:value "Patient/example-laboratory-patient" ]
  ];
  fhir:Task.authoredOn [ fhir:value "2021-05-20"^^xsd:date];
  fhir:Task.owner [
     fhir:Reference.reference [ fhir:value "Practitioner/example-laboratory-practitioner" ]
  ].

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

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