{ "$schema": "https://json-structure.org/meta/core/v0/#", "description": "Order schema from NCR Voyix Commerce Platform APIs", "$id": "https://raw.githubusercontent.com/api-evangelist/ncr/refs/heads/main/json-structure/ncr-voyix-commerce-platform-order-structure.json", "type": "object", "properties": { "channel": { "type": "string", "example": "Web" }, "comments": { "type": "string", "example": "Customer request" }, "customer": { "$ref": "#/components/schemas/Customer" }, "orderLines": { "type": "array", "items": { "$ref": "#/components/schemas/OrderLine" } }, "id": { "type": "string" }, "status": { "type": "string" } }, "required": [ "orderLines" ], "name": "Order" }