German Practice Management FHIR Profiles (R4)
Version 0.99.1 - release

: Example Referral Medication Context - 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/MedicationStatement/example-referral-medication> a fhir:MedicationStatement ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "example-referral-medication"] ;
  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: MedicationStatement example-referral-medication</b></p><a name=\"example-referral-medication\"> </a><a name=\"hcexample-referral-medication\"> </a><p><b>status</b>: Active</p><p><b>medication</b>: <span title=\"Codes:{https://example.org/fhir/CodeSystem/medication-catalog ibuprofen-600}\">ibuprofen-600</span></p><p><b>subject</b>: <a href=\"Patient-example-patient.html\">Thomas Weber (official) Male, DoB: 1975-06-15</a></p><p><b>effective</b>: 2026-07-20 --&gt; (ongoing)</p></div>"
  ] ;
  fhir:MedicationStatement.status [ fhir:value "active"] ;
  fhir:MedicationStatement.medicationCodeableConcept [
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       fhir:Coding.system [ fhir:value "https://example.org/fhir/CodeSystem/medication-catalog" ] ;
       fhir:Coding.version [ fhir:value "2026-01" ] ;
       fhir:Coding.code [ fhir:value "ibuprofen-600" ]
     ]
  ] ;
  fhir:MedicationStatement.subject [
     fhir:link <http://hl7.org/fhir/Patient/example-patient> ;
     fhir:Reference.reference [ fhir:value "Patient/example-patient" ]
  ] ;
  fhir:MedicationStatement.effectivePeriod [
     fhir:Period.start [ fhir:value "2026-07-20"^^xsd:date ]
  ] .

<http://hl7.org/fhir/Patient/example-patient> a fhir:Patient .

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

<http://hl7.org/fhir/MedicationStatement/example-referral-medication.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/MedicationStatement/example-referral-medication.ttl> .