Amazon Outposts · Schema

LineItemRequest

Information about a line item request.

Edge ComputingHybrid CloudInfrastructureOn-Premises

Properties

Name Type Description
CatalogItemId object
Quantity object
View JSON Schema on GitHub

JSON Schema

openapi-line-item-request-schema.json Raw ↑
{
  "$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."
        }
      ]
    }
  }
}