FHIR CI-Build

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

Example SupplyRequest/simpleorder (JSON)

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

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

Simple order for resupply

{
  "resourceType" : "SupplyRequest",
  "id" : "simpleorder",
  "identifier" : [{
    "value" : "Order10284"
  }],
  "status" : "active",
  "intent" : "order",
  "category" : {
    "coding" : [{
      "code" : "central",
      "display" : "Central Stock Resupply"
    }]
  },
  "priority" : "asap",
  "item" : {
    "concept" : {
      "coding" : [{
        "code" : "BlueTubes",
        "display" : "Blood collect tubes blue cap"
      }]
    }
  },
  "quantity" : {
    "value" : 10
  },
  "occurrenceDateTime" : "2016-12-31",
  "authoredOn" : "2016-12-31",
  "requester" : {
    "display" : "Henry Seven"
  },
  "supplier" : [{
    "display" : "Vendor1"
  }],
  "reason" : [{
    "concept" : {
      "coding" : [{
        "code" : "stock_low",
        "display" : "Refill due to low stock"
      }]
    }
  }],
  "deliverFrom" : {
    "display" : "Location 1"
  },
  "deliverTo" : {
    "display" : "GoodHealth Clinic Receiving"
  }
}

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.