instacart · Schema

OrderItemsResponse

Properties

Name Type Description
items array The list of items in the order with their current statuses.
View JSON Schema on GitHub

JSON Schema

instacart-orderitemsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OrderItemsResponse",
  "title": "OrderItemsResponse",
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "description": "The list of items in the order with their current statuses.",
      "items": {
        "$ref": "#/components/schemas/PostCheckoutOrderItem"
      }
    }
  }
}