{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-outposts/refs/heads/main/json-schema/openapi-line-item-request-schema.json", "title": "LineItemRequest", "description": "Information about a line item request.", "type": "object", "properties": { "CatalogItemId": { "allOf": [ { "$ref": "#/components/schemas/SkuCode" }, { "description": "The ID of the catalog item." } ] }, "Quantity": { "allOf": [ { "$ref": "#/components/schemas/LineItemQuantity" }, { "description": "The quantity of a line item request." } ] } } }