FHIR CI-Build

This is the Continuous Integration Build of FHIR (will be incorrect/inconsistent at times).
See the Directory of published versions

Example NutritionOrder/proteinsupplement (JSON)

Orders and Observations Work GroupMaturity Level: N/AStandards Status: InformativeCompartments: Encounter, Patient, Practitioner

Raw JSON (canonical form + also see JSON Format Specification)

Nutrition Order Protein Supplement Example

{
  "resourceType" : "NutritionOrder",
  "id" : "proteinsupplement",
  "identifier" : [{
    "system" : "http://goodhealthhospital.org/nutrition-requests",
    "value" : "123"
  }],
  "status" : "active",
  "intent" : "order",
  "subject" : {
    "reference" : "Patient/example",
    "display" : "Peter Chalmers"
  },
  "encounter" : {
    "reference" : "Encounter/example",
    "display" : "Inpatient"
  },
  "dateTime" : "2014-09-17",
  "orderer" : {
    "reference" : "Practitioner/example",
    "display" : "Dr Adam Careful"
  },
  "supplement" : [{
    "type" : {
      "concept" : {
        "coding" : [{
          "system" : "http://snomed.info/sct",
          "code" : "442991000124104",
          "display" : "Adult high protein formula"
        },
        {
          "system" : "http://goodhealthhospital.org/supplement-type-codes",
          "code" : "1000",
          "display" : "High Protein Powder"
        }],
        "text" : "High Protein Powder"
      }
    },
    "productName" : "Beneprotein",
    "schedule" : {
      "timing" : [{
        "repeat" : {
          "boundsPeriod" : {
            "start" : "2015-02-10"
          },
          "when" : ["C"]
        }
      }]
    },
    "quantity" : {
      "value" : 1,
      "unit" : "scoop",
      "system" : "http://unitsofmeasure.org",
      "code" : "{scoop}"
    },
    "instruction" : "Beneprotein 1 scoop TID with meal.starting on  2015-02-10"
  }]
}

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.