Toast · Schema

Fulfillment

Information about the fulfillment requirements for a menu item selection.

Food ServicePoint of SaleRestaurantsHospitality

Properties

Name Type Description
quantity number The quantity required for fulfillment.
unit string The unit of measure for the fulfillment quantity.
View JSON Schema on GitHub

JSON Schema

orders-fulfillment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/toast/refs/heads/main/json-schema/orders-fulfillment-schema.json",
  "title": "Fulfillment",
  "description": "Information about the fulfillment requirements for a menu item selection.\n",
  "type": "object",
  "properties": {
    "quantity": {
      "type": "number",
      "format": "double",
      "description": "The quantity required for fulfillment."
    },
    "unit": {
      "type": "string",
      "description": "The unit of measure for the fulfillment quantity."
    }
  }
}