Standardized Medication Profile (SMP) FHIR IG
1.0.0 - STU 1 United States of America flag

Standardized Medication Profile (SMP) FHIR IG, published by HL7 International / Pharmacy. This guide is not an authorized publication; it is the continuous build for version 1.0.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/HL7/smp-ig/ and changes regularly. See the Directory of published versions

: Example Metoclopramide Medication Request - TTL Representation

Page standards status: Informative

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/MedicationRequest/example-MedicationRequest-metoclopramide-01> a fhir:MedicationRequest ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "example-MedicationRequest-metoclopramide-01"] ;
  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: MedicationRequest example-MedicationRequest-metoclopramide-01</b></p><a name=\"example-MedicationRequest-metoclopramide-01\"> </a><a name=\"hcexample-MedicationRequest-metoclopramide-01\"> </a><p><b>status</b>: Active</p><p><b>intent</b>: Order</p><p><b>medication</b>: <span title=\"Codes:{http://www.nlm.nih.gov/research/umls/rxnorm 311666}\">metoclopramide 10 MG Oral Tablet</span></p><p><b>subject</b>: <a href=\"Patient-examplePatient.html\">John Doe (official) Male, DoB: 1960-01-01 ( http://hospital.example.com/mrn#12345)</a></p><p><b>authoredOn</b>: 2025-07-02</p><p><b>requester</b>: <a href=\"Practitioner-examplePractitioner.html\">Practitioner Jane Smith (official)</a></p><h3>DosageInstructions</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Text</b></td></tr><tr><td style=\"display: none\">*</td><td>Take as prescribed</td></tr></table></div>"
  ] ;
  fhir:MedicationRequest.status [ fhir:value "active"] ;
  fhir:MedicationRequest.intent [ fhir:value "order"] ;
  fhir:MedicationRequest.medicationCodeableConcept [
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       fhir:Coding.system [ fhir:value "http://www.nlm.nih.gov/research/umls/rxnorm" ] ;
       fhir:Coding.code [ fhir:value "311666" ] ;
       fhir:Coding.display [ fhir:value "metoclopramide 10 MG Oral Tablet" ]
     ] ;
     fhir:CodeableConcept.text [ fhir:value "metoclopramide 10 MG Oral Tablet" ]
  ] ;
  fhir:MedicationRequest.subject [
     fhir:link <http://hl7.org/fhir/Patient/examplePatient> ;
     fhir:Reference.reference [ fhir:value "Patient/examplePatient" ]
  ] ;
  fhir:MedicationRequest.authoredOn [ fhir:value "2025-07-02"^^xsd:date] ;
  fhir:MedicationRequest.requester [
     fhir:link <http://hl7.org/fhir/Practitioner/examplePractitioner> ;
     fhir:Reference.reference [ fhir:value "Practitioner/examplePractitioner" ]
  ] ;
  fhir:MedicationRequest.dosageInstruction [
     fhir:index 0 ;
     fhir:Dosage.text [ fhir:value "Take as prescribed" ]
  ] .

<http://hl7.org/fhir/Patient/examplePatient> a fhir:Patient .

<http://hl7.org/fhir/Practitioner/examplePractitioner> a fhir:Practitioner .

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

<http://hl7.org/fhir/MedicationRequest/example-MedicationRequest-metoclopramide-01.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/MedicationRequest/example-MedicationRequest-metoclopramide-01.ttl> .