{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/toast-tab/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.", "example": 1.0 }, "unit": { "type": "string", "description": "The unit of measure for the fulfillment quantity.", "example": "string" } } }