HRSA 2023 Uniform Data System (UDS) Patient Level Submission (PLS) (UDS+) FHIR IG
1.0.1 - STU1 Release 1 - Standard for Trial-Use International flag

This page is part of the HRSA Uniform Data System (UDS) Patient Level Submission (PLS) (UDS+ or uds-plus) FHIR IG (v1.0.1: STU1) based on FHIR (HL7® FHIR® Standard) R4. This is the current published version. For a full list of available versions, see the Directory of published versions

: Uds Plus MedicationRequest Example - 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 -------------------------------------------------------------------

 a fhir:MedicationRequest ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "de-identified-example"] ; # 
  fhir:meta [
    ( fhir:profile [
fhir:v "http://fhir.org/guides/hrsa/uds-plus/StructureDefinition/uds-plus-medicationrequest"^^xsd:anyURI ;
fhir:link <http://fhir.org/guides/hrsa/uds-plus/StructureDefinition/uds-plus-medicationrequest>     ] )
  ] ; # 
  fhir:status [ fhir:v "active"] ; # 
  fhir:intent [ fhir:v "order"] ; # 
  fhir:medication [
a fhir:CodeableConcept ;
    ( fhir:coding [
fhir:system [ fhir:v "http://www.nlm.nih.gov/research/umls/rxnorm"^^xsd:anyURI ] ;
fhir:code [ fhir:v "476872" ] ;
fhir:display [ fhir:v "Nizatidine 15 MG/ML Oral Solution" ]     ] )
  ] ; # 
  fhir:subject [
fhir:reference [ fhir:v "Patient/de-identified-example" ]
  ] ; # 
  fhir:encounter [
fhir:reference [ fhir:v "Encounter/de-identified-example" ]
  ] ; # 
  fhir:authoredOn [ fhir:v "2008"^^xsd:gYear] ; # 
  fhir:requester [
fhir:reference [ fhir:v "Practitioner/example" ]
  ] ; # 
  fhir:dosageInstruction ( [
fhir:text [ fhir:v "10 mL bid" ] ;
fhir:timing [
fhir:repeat [
fhir:bounds [
a fhir:Period ;
fhir:start [ fhir:v "2008-04-05"^^xsd:date ]         ] ;
fhir:frequency [ fhir:v "2"^^xsd:positiveInteger ] ;
fhir:period [ fhir:v "1"^^xsd:decimal ] ;
fhir:periodUnit [ fhir:v "d" ]       ]     ] ;
    ( fhir:doseAndRate [
fhir:dose [
a fhir:Quantity ;
fhir:value [ fhir:v "10"^^xsd:decimal ] ;
fhir:unit [ fhir:v "ml" ] ;
fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;
fhir:code [ fhir:v "mL" ]       ]     ] )
  ] ) . #