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/ExampleRxCommunicationSearchset> a fhir:Bundle ; fhir:nodeRole fhir:treeRoot ; fhir:Resource.id [ fhir:value "ExampleRxCommunicationSearchset"] ; 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/Communication?received=NULL" ] ] ; fhir:Bundle.entry [ fhir:index 0 ; fhir:Bundle.entry.fullUrl [ fhir:value "https://erp-ref.example.org/Communication/ExampleRxCommunicationDispReq" ] ; fhir:Bundle.entry.resource <https://erp-ref.example.org/Communication/ExampleRxCommunicationDispReq> ; fhir:Bundle.entry.search [ fhir:Bundle.entry.search.mode [ fhir:value "match" ] ] ] . <https://erp-ref.example.org/Communication/ExampleRxCommunicationDispReq> a fhir:Communication ; fhir:Resource.id [ fhir:value "ExampleRxCommunicationDispReq"] ; 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/Bundle/ExampleRxCommunicationSearchset.ttl> a owl:Ontology ; owl:imports fhir:fhir.ttl ; owl:versionIRI <http://build.fhir.org/Bundle/ExampleRxCommunicationSearchset.ttl> .