PACIO Transitions of Care Implementation Guide
1.0.0 - STU 1 United States of America flag

PACIO Transitions of Care Implementation Guide, published by HL7 International / Patient Care. 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/fhir-transitions-of-care-ig/ and changes regularly. See the Directory of published versions

: Example: Medication request for losartan 25 MG Oral Tablet - 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 sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<http://hl7.org/fhir/MedicationRequest/BSJ-SMPMedReq4> a fhir:MedicationRequest ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "BSJ-SMPMedReq4"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest" ;
       fhir:index 0 ;
       fhir:link <http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest>
     ]
  ] ;
  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 BSJ-SMPMedReq4</b></p><a name=\"BSJ-SMPMedReq4\"> </a><a name=\"hcBSJ-SMPMedReq4\"> </a><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\"/><p style=\"margin-bottom: 0px\">Profile: <a href=\"http://hl7.org/fhir/us/core/STU9/StructureDefinition-us-core-medicationrequest.html\">US Core MedicationRequest Profile</a></p></div><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 979485}\">losartan potassium 25 MG Oral Tablet</span></p><p><b>subject</b>: <a href=\"Patient-Example-Smith-Johnson-Patient1.html\">Betsy Smith-Johnson</a></p><p><b>authoredOn</b>: 2024-08-11</p><p><b>requester</b>: <a href=\"Practitioner-Example-JenCadbury.html\">Dr. Jen Cadbury</a></p><p><b>reasonCode</b>: <span title=\"Codes:{http://snomed.info/sct 38341003}\">Hypertensive disorder, systemic arterial (disorder)</span></p><h3>DosageInstructions</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Sequence</b></td><td><b>Text</b></td></tr><tr><td style=\"display: none\">*</td><td>1</td><td>po once daily</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 "979485" ] ;
       fhir:Coding.display [ fhir:value "losartan potassium 25 MG Oral Tablet" ]
     ]
  ] ;
  fhir:MedicationRequest.subject [
     fhir:link <http://hl7.org/fhir/Patient/Example-Smith-Johnson-Patient1> ;
     fhir:Reference.reference [ fhir:value "Patient/Example-Smith-Johnson-Patient1" ] ;
     fhir:Reference.display [ fhir:value "Betsy Smith-Johnson" ]
  ] ;
  fhir:MedicationRequest.authoredOn [ fhir:value "2024-08-11"^^xsd:date] ;
  fhir:MedicationRequest.requester [
     fhir:link <http://hl7.org/fhir/Practitioner/Example-JenCadbury> ;
     fhir:Reference.reference [ fhir:value "Practitioner/Example-JenCadbury" ] ;
     fhir:Reference.display [ fhir:value "Dr. Jen Cadbury" ]
  ] ;
  fhir:MedicationRequest.reasonCode [
     fhir:index 0 ;
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       a sct:38341003 ;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ] ;
       fhir:Coding.code [ fhir:value "38341003" ] ;
       fhir:Coding.display [ fhir:value "Hypertensive disorder, systemic arterial (disorder)" ]
     ]
  ] ;
  fhir:MedicationRequest.dosageInstruction [
     fhir:index 0 ;
     fhir:Dosage.sequence [ fhir:value "1"^^xsd:integer ] ;
     fhir:Dosage.text [ fhir:value "po once daily" ]
  ] .

<http://hl7.org/fhir/Patient/Example-Smith-Johnson-Patient1> a fhir:Patient .

<http://hl7.org/fhir/Practitioner/Example-JenCadbury> a fhir:Practitioner .

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

<http://hl7.org/fhir/MedicationRequest/BSJ-SMPMedReq4.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/MedicationRequest/BSJ-SMPMedReq4.ttl> .