{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/management-terminal-order-request-schema.json", "title": "TerminalOrderRequest", "description": "TerminalOrderRequest schema from Adyen API", "type": "object", "properties": { "billingEntityId": { "description": "The identification of the billing entity to use for the order.", "type": "string" }, "customerOrderReference": { "description": "The merchant-defined purchase order reference.", "type": "string" }, "items": { "description": "The products included in the order.", "items": { "$ref": "#/components/schemas/OrderItem" }, "type": "array" }, "orderType": { "description": "Type of order", "type": "string" }, "shippingLocationId": { "description": "The identification of the shipping location to use for the order.", "type": "string" }, "taxId": { "description": "The tax number of the billing entity.", "type": "string" } } }