FHIR CI-Build

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

Example SupplyDelivery/simpledelivery (JSON)

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

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

Simple delivery for resupply

{
  "resourceType" : "SupplyDelivery",
  "id" : "simpledelivery",
  "identifier" : [{
    "value" : "Order10284"
  }],
  "basedOn" : [{
    "reference" : "SupplyRequest/simpleorder"
  }],
  "partOf" : [{
    "display" : "Central Supply Restock"
  }],
  "status" : "completed",
  "type" : {
    "coding" : [{
      "system" : "http://hl7.org/fhir/supplydelivery-supplyitemtype",
      "code" : "device"
    }],
    "text" : "Blood collect tubes blue cap"
  },
  "stage" : {
    "coding" : [{
      "system" : "http://hl7.org/fhir/supplydelivery-stage",
      "code" : "dispatch",
      "display" : "Dispatch"
    }]
  },
  "suppliedItem" : [{
    "quantity" : {
      "value" : 10
    },
    "itemCodeableConcept" : {
      "coding" : [{
        "code" : "BlueTubes",
        "display" : "Blood collect tubes blue cap"
      }]
    }
  }],
  "occurrenceDateTime" : "2016-12-31",
  "supplier" : {
    "display" : "Vendor1"
  },
  "destination" : {
    "display" : "Location 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.