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

: Rx Communication request example - 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/Communication/ExampleRxCommunicationDispReq> a fhir:Communication ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "ExampleRxCommunicationDispReq"] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ] ;
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Communication ExampleRxCommunicationDispReq</b></p><a name=\"ExampleRxCommunicationDispReq\"> </a><a name=\"hcExampleRxCommunicationDispReq\"> </a><p><b>status</b>: Unknown</p><p><b>sent</b>: 2026-03-20 10:15:00+0100</p><h3>Payloads</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Content[x]</b></td></tr><tr><td style=\"display: none\">*</td><td>Bitte Rezept in Filiale bereitstellen</td></tr></table></div>"
  ] ;
  fhir:Communication.status [ fhir:value "unknown"] ;
  fhir:Communication.sent [ fhir:value "2026-03-20T10:15:00+01:00"^^xsd:dateTime] ;
  fhir:Communication.payload [
     fhir:index 0 ;
     fhir:Communication.payload.contentString [ fhir:value "Bitte Rezept in Filiale bereitstellen" ]
  ] .

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

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