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-12.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

Free text dosage, 1-2 tablets if needed max 6 tablets per day, "1-2vb max6/d"

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": "Free text dosage '1-2vb max6/d'"
      },
      {
        "display": "Free text dosage, 1-2 tablets if needed max 6 tablets per day"
      },
      {
        "display": "dosage-example-12"
      }
    ]
  },
  "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,
      "text": "1-2 tabletter vid behov max 6 tabletter per dygn",
      "patientInstruction": "1-2 tabletter vid behov max 6 tabletter per dygn",
      "asNeededBoolean": true,
      "method": {
        "coding": [
          {
            "code": "738995006"
          }
        ]
      },
      "maxDosePerPeriod": {
        "numerator": {
          "value": 6,
          "code": "{tbl}"
        },
        "denominator": {
          "value": 1,
          "system": "http://unitsofmeasure.org",
          "code": "d"
        }
      }
    }
  ]
}