DSTU2 Ballot Source

This page is part of the FHIR Specification (v0.5.0: DSTU 2 Ballot 2). The current version which supercedes this version is 5.0.0. For a full list of available versions, see the Directory of published versions

Medicationstatement-example-tylenol.json

Raw JSON (canonical form)

Over-the-counter example (used by Contraindication)

{
  "resourceType": "MedicationStatement",
  "id": "tylenol",
  "text": {
    "status": "generated",
    "div": "<div>!-- Snipped for Brevity --></div>"
  },
  "contained": [
    {
      "resourceType": "Substance",
      "id": "1",
      "type": {
        "coding": [
          {
            "system": "urn:oid:2.16.840.1.113883.5.1103",
            "code": "270"
          }
        ]
      }
    },
    {
      "resourceType": "Medication",
      "id": "2",
      "name": "ACETAMINOPHEN",
      "code": {
        "coding": [
          {
            "system": "urn:oid:2.16.840.1.113883.6.73",
            "code": "N02BE01"
          }
        ]
      },
      "product": {
        "form": {
          "coding": [
            {
              "system": "http://hl7.org/fhir/v3/MaterialForm",
              "code": "TAB",
              "display": "tablet"
            }
          ]
        },
        "ingredient": [
          {
            "item": {
              "reference": "#1"
            },
            "amount": {
              "numerator": {
                "value": 500,
                "system": "http://unitsofmeasure.org",
                "code": "mg"
              },
              "denominator": {
                "value": 1,
                "system": "http://unitsofmeasure.org",
                "code": "1"
              }
            }
          }
        ]
      }
    }
  ],
  "patient": {
    "reference": "Patient/example"
  },
  "status": "completed",
  "effectiveDateTime": "2010",
  "medication": {
    "reference": "#2"
  },
  "dosage": [
    {
      "schedule": {
        "repeat": {
          "frequency": 1,
          "period": 1,
          "periodUnits": "d"
        }
      },
      "asNeededBoolean": true,
      "route": {
        "coding": [
          {
            "system": "http://snomed.info/sct",
            "code": "394899003",
            "display": "oral administration of treatment"
          }
        ]
      },
      "quantity": {
        "value": 1
      }
    }
  ]
}

Usage note: every effort has been made to ensure that the examples are correct and useful, but they are not a normative part of the specification.