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

FHIR IG analytics

Packageil.core.fhir.r4
Resource TypeMedicationRequest
IdMedicationRequest-2PerCalendarMonth.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

Medication Request

Example medication prescribed to be taken 2 times per calendar month for a duration of 1 month.

Dose per intake: 1 tablet.

Start date: 01-Jan-2026.


Source1

{
  "resourceType": "MedicationRequest",
  "id": "2PerCalendarMonth",
  "meta": {
    "profile": [
      "http://fhir.health.gov.il/StructureDefinition/il-core-medication-request"
    ]
  },
  "status": "active",
  "intent": "order",
  "text": {
    "status": "generated",
    "div": "<!-- snip (see above) -->"
  },
  "subject": {
    "reference": "Patient/123"
  },
  "medicationCodeableConcept": {
    "text": "Example medication"
  },
  "authoredOn": "2026-01-01",
  "requester": {
    "reference": "Practitioner/123"
  },
  "dosageInstruction": [
    {
      "text": "Take 1 tablet 2 times per calendar month for 1 month",
      "timing": {
        "repeat": {
          "boundsDuration": {
            "value": 1,
            "unit": "month",
            "system": "http://unitsofmeasure.org",
            "code": "mo"
          },
          "frequency": 2,
          "period": 1,
          "periodUnit": "mo"
        }
      },
      "doseAndRate": [
        {
          "doseQuantity": {
            "value": 1,
            "unit": "tablet",
            "system": "http://unitsofmeasure.org",
            "code": "1"
          }
        }
      ]
    }
  ]
}