Implementation Guide
TIFlow - Verordnungen für Arzneimittel
Version 2.0.0-ballot.2 - ballot

: Task searchset response for Rx - 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 -------------------------------------------------------------------

<http://hl7.org/fhir/Bundle/ExampleRxTaskSearchset> a fhir:Bundle ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "ExampleRxTaskSearchset"] ;
  fhir:Bundle.type [ fhir:value "searchset"] ;
  fhir:Bundle.total [ fhir:value "1"^^xsd:nonNegativeInteger] ;
  fhir:Bundle.link [
     fhir:index 0 ;
     fhir:Bundle.link.relation [ fhir:value "self" ] ;
     fhir:Bundle.link.url [ fhir:value "https://erp-ref.example.org/Task?status=ready&_count=1" ]
  ] ;
  fhir:Bundle.entry [
     fhir:index 0 ;
     fhir:Bundle.entry.fullUrl [ fhir:value "https://erp-ref.example.org/Task/ExampleRxTaskInReadyState" ] ;
     fhir:Bundle.entry.resource <https://erp-ref.example.org/Task/ExampleRxTaskInReadyState> ;
     fhir:Bundle.entry.search [
       fhir:Bundle.entry.search.mode [ fhir:value "match" ]
     ]
  ] .

<https://erp-ref.example.org/Task/ExampleRxTaskInReadyState> a fhir:Task ;
  fhir:Resource.id [ fhir:value "ExampleRxTaskInReadyState"] ;
  fhir:Task.status [ fhir:value "ready"] ;
  fhir:Task.intent [ fhir:value "order"] ;
  fhir:Task.authoredOn [ fhir:value "2026-03-20"^^xsd:date] .

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

<http://hl7.org/fhir/Bundle/ExampleRxTaskSearchset.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/Bundle/ExampleRxTaskSearchset.ttl> .