{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-outposts/refs/heads/main/json-schema/openapi-order-schema.json", "title": "Order", "description": "Information about an order.", "type": "object", "properties": { "OutpostId": { "allOf": [ { "$ref": "#/components/schemas/OutpostIdOnly" }, { "description": " The ID of the Outpost in the order. " } ] }, "OrderId": { "allOf": [ { "$ref": "#/components/schemas/OrderId" }, { "description": "The ID of the order." } ] }, "Status": { "allOf": [ { "$ref": "#/components/schemas/OrderStatus" }, { "description": "

The status of the order.

The following status are deprecated: RECEIVED, PENDING, PROCESSING, INSTALLING, and FULFILLED.

" } ] }, "LineItems": { "allOf": [ { "$ref": "#/components/schemas/LineItemListDefinition" }, { "description": "The line items for the order" } ] }, "PaymentOption": { "allOf": [ { "$ref": "#/components/schemas/PaymentOption" }, { "description": "The payment option for the order." } ] }, "OrderSubmissionDate": { "allOf": [ { "$ref": "#/components/schemas/ISO8601Timestamp" }, { "description": "The submission date for the order." } ] }, "OrderFulfilledDate": { "allOf": [ { "$ref": "#/components/schemas/ISO8601Timestamp" }, { "description": "The fulfillment date of the order." } ] }, "PaymentTerm": { "allOf": [ { "$ref": "#/components/schemas/PaymentTerm" }, { "description": "The payment term." } ] }, "OrderType": { "allOf": [ { "$ref": "#/components/schemas/OrderType" }, { "description": "The type of order." } ] } } }