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

FHIR IG analytics

Packagese.electronichealth.fhir.nll.r4
Resource TypeMedicationRequest
Iddosage-example-15.json
FHIR VersionR4

Resources that use this resource

No resources found


Resources that this resource uses

No resources found


Narrative

Note: links and images are rebased to the (stated) source

Dosage instruction example

Frequence administration, 1 tablet 3 times daily for 3 weeks, "1x3 i3v"

This example focuses on how to create a dosage instruction. All other information in the medication request except the dosage instruction is incomplete.


Source1

{
  "resourceType": "MedicationRequest",
  "id": "<uuid>",
  "meta": {
    "tag": [
      {
        "display": "Frequence administration '1x3 i3v'"
      },
      {
        "display": "Frequence administration, 1 tablet 3 times daily for 3 weeks"
      },
      {
        "display": "dosage-example-15"
      }
    ]
  },
  "text": {
    "status": "generated",
    "div": "<!-- snip (see above) -->"
  },
  "status": "unknown",
  "intent": "order",
  "medicationCodeableConcept": {
    "text": "This order has no medication"
  },
  "subject": {
    "reference": "Patient/<uuid>"
  },
  "dosageInstruction": [
    {
      "extension": [
        {
          "url": "http://electronichealth.se/fhir/StructureDefinition/NLLAdministeringInstruction",
          "valueString": "sväljes"
        }
      ],
      "sequence": 1,
      "patientInstruction": "1 tablett 3 gånger dagligen i 3 veckor",
      "timing": {
        "repeat": {
          "boundsDuration": {
            "value": 21,
            "code": "d"
          },
          "frequency": 3,
          "period": 1,
          "periodUnit": "d"
        }
      },
      "asNeededBoolean": false,
      "method": {
        "coding": [
          {
            "code": "738995006"
          }
        ]
      },
      "doseAndRate": [
        {
          "doseQuantity": {
            "value": 1,
            "code": "{tbl}"
          }
        }
      ]
    }
  ]
}