This page is part of the Making EHR Data MOre available for Research and Public Health (MedMorph) Healthcare Surveys Reporting Content IG (v2.0.0-ballot: STU 2 Ballot) based on FHIR (HL7® FHIR® Standard) R4. This version is a pre-release. The current official version is 1.0.0. For a full list of available versions, see the Directory of published versions
: Medication Administration Example - TTL Representation
Raw ttl | Download
@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@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 -------------------------------------------------------------------
a fhir:MedicationAdministration ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "medicationadministrationone-example"] ; #
fhir:meta [
( fhir:profile [
fhir:v "http://hl7.org/fhir/us/health-care-surveys-reporting/StructureDefinition/hcs-medicationadministration"^^xsd:anyURI ;
fhir:link <http://hl7.org/fhir/us/health-care-surveys-reporting/StructureDefinition/hcs-medicationadministration> ] )
] ; #
fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: MedicationAdministration medicationadministrationone-example</b></p><a name=\"medicationadministrationone-example\"> </a><a name=\"hcmedicationadministrationone-example\"> </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=\"StructureDefinition-hcs-medicationadministration.html\">HCS Medication Administration</a></p></div><p><b>status</b>: Completed</p><p><b>medication</b>: <span title=\"Codes:{http://www.nlm.nih.gov/research/umls/rxnorm 285018}\">Lantus 100 UNT/ML Injectable Solution</span></p><p><b>subject</b>: <a href=\"Patient-patient-ledner.html\">Dominique369 Ledner144 Female, DoB: 1965-06-22 ( MRN: Alaska Driver's License#abc123 (use: usual, ))</a></p><p><b>effective</b>: 2025-01-02 09:00:00+0000</p><h3>Performers</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Actor</b></td></tr><tr><td style=\"display: none\">*</td><td><a href=\"Practitioner-practitioner-1.html\">Practitioner Joseph P Nichols (official)</a></td></tr></table><p><b>reasonCode</b>: <span title=\"Codes:{http://snomed.info/sct 43724002}\">Shivering</span></p><h3>Dosages</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Text</b></td><td><b>Route</b></td><td><b>Dose</b></td></tr><tr><td style=\"display: none\">*</td><td>400 mg orally</td><td><span title=\"Codes:{http://snomed.info/sct 26643006}\">Oral route</span></td><td>400 mg</td></tr></table></div>"^^rdf:XMLLiteral
] ; #
fhir:status [ fhir:v "completed"] ; #
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 "285018" ] ;
fhir:display [ fhir:v "Lantus 100 UNT/ML Injectable Solution" ] ] )
] ; #
fhir:subject [
fhir:reference [ fhir:v "Patient/patient-ledner" ]
] ; #
fhir:effective [
a fhir:dateTime ;
fhir:v "2025-01-02T09:00:00Z"^^xsd:dateTime
] ; #
fhir:performer ( [
fhir:actor [
fhir:reference [ fhir:v "Practitioner/practitioner-1" ] ]
] ) ; #
fhir:reasonCode ( [
( fhir:coding [
a sct:43724002 ;
fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
fhir:code [ fhir:v "43724002" ] ;
fhir:display [ fhir:v "Shivering" ] ] )
] ) ; #
fhir:dosage [
fhir:text [ fhir:v "400 mg orally" ] ;
fhir:route [
( fhir:coding [
a sct:26643006 ;
fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
fhir:code [ fhir:v "26643006" ] ;
fhir:display [ fhir:v "Oral route" ] ] ) ] ;
fhir:dose [
fhir:value [ fhir:v "400"^^xsd:decimal ] ;
fhir:unit [ fhir:v "mg" ] ]
] . #