eBay · Schema

FormatAllocation

This type is used to indicate the quantities of the inventory items that are reserved for the different listing formats of the SKU offers.

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
auction integer This integer value indicates the quantity of the inventory item that is reserved for the published auction format offers of the SKU.
fixedPrice integer This integer value indicates the quantity of the inventory item that is available for the fixed-price offers of the SKU.
View JSON Schema on GitHub

JSON Schema

ebay-formatallocation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FormatAllocation",
  "title": "FormatAllocation",
  "type": "object",
  "properties": {
    "auction": {
      "type": "integer",
      "description": "This integer value indicates the quantity of the inventory item that is reserved for the published auction format offers of the SKU.",
      "format": "int32"
    },
    "fixedPrice": {
      "type": "integer",
      "description": "This integer value indicates the quantity of the inventory item that is available for the fixed-price offers of the SKU.",
      "format": "int32"
    }
  },
  "description": "This type is used to indicate the quantities of the inventory items that are reserved for the different listing formats of the SKU offers."
}