FHIR © HL7.org  |  FHIRsmith 4.0.1  |  Server Home  |  XIG Home  |  XIG Stats  | 

FHIR IG analytics

Packagesynapxe.nehr
Resource TypeMedicationAdministration
IdMedicationAdministrationUpdateRequest.json
FHIR VersionR5

Resources that use this resource

No resources found


Resources that this resource uses

No resources found


Narrative

No narrative content found in resource


Source1

{
  "resourceType": "MedicationAdministration",
  "id": "ma-2025-001234",
  "contained": [
    {
      "resourceType": "Medication",
      "id": "medication-paracetamol",
      "code": {
        "coding": [
          {
            "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
            "code": "161",
            "display": "Acetaminophen"
          }
        ],
        "text": "Paracetamol 500mg"
      },
      "doseForm": {
        "coding": [
          {
            "system": "http://snomed.info/sct",
            "code": "385219001",
            "display": "Tablet"
          }
        ]
      }
    },
    {
      "resourceType": "Device",
      "id": "device-infusion-pump",
      "manufactureDate": "2025-01-15",
      "expirationDate": "2030-01-15",
      "lotNumber": "LOT-123456",
      "serialNumber": "SN-123456",
      "type": [
        {
          "coding": [
            {
              "system": "http://snomed.info/sct",
              "code": "303727007",
              "display": "Infusion pump"
            }
          ]
        }
      ],
      "status": "active"
    }
  ],
  "identifier": [
    {
      "system": "https://fhir.synapxe.sg/identifier/medication-administration",
      "value": "MA-2025-001234"
    }
  ],
  "status": "completed",
  "medication": {
    "reference": {
      "reference": "#medication-paracetamol"
    }
  },
  "subject": {
    "reference": "Patient/patient-12345"
  },
  "occurenceDateTime": "2025-08-21T06:30:00+00:00",
  "performer": [
    {
      "actor": {
        "reference": {
          "reference": "Practitioner/nurse-jane-doe"
        }
      }
    }
  ],
  "device": [
    {
      "reference": {
        "reference": "#device-infusion-pump"
      }
    }
  ],
  "note": [
    {
      "authorString": "Nurse Jane Doe",
      "time": "2025-08-21T06:35:00+00:00",
      "text": "Patient tolerated medication well. No adverse reactions observed."
    }
  ],
  "dosage": {
    "text": "500mg intravenously over 30 minutes",
    "route": {
      "coding": [
        {
          "system": "http://snomed.info/sct",
          "code": "47625008",
          "display": "Intravenous route"
        }
      ]
    },
    "dose": {
      "value": 500,
      "unit": "mg",
      "system": "http://unitsofmeasure.org",
      "code": "mg"
    },
    "rateQuantity": {
      "value": 16.67,
      "unit": "mg/min",
      "system": "http://unitsofmeasure.org",
      "code": "mg/min"
    }
  }
}