eBay · Schema

InventoryItems

This type is used by the base response payload of getInventoryItems call.

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
href string This is the URL to the current page of inventory items.
inventoryItems array This container is an array of one or more inventory items, with detailed information on each inventory item.
limit integer This integer value is the number of inventory items that will be displayed on each results page.
next string This is the URL to the next page of inventory items. This field will only be returned if there are additional inventory items to view.
prev string This is the URL to the previous page of inventory items. This field will only be returned if there are previous inventory items to view.
size integer This integer value indicates the total number of pages of results that are available. This number will depend on the total number of inventory items available for viewing, and on the limit
total integer This integer value is the total number of inventory items that exist for the seller's account. Based on this number and on the limit value, the seller may have to toggle through multi
View JSON Schema on GitHub

JSON Schema

ebay-inventoryitems-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InventoryItems",
  "title": "InventoryItems",
  "type": "object",
  "properties": {
    "href": {
      "type": "string",
      "description": "This is the URL to the current page of inventory items."
    },
    "inventoryItems": {
      "type": "array",
      "description": "This container is an array of one or more inventory items, with detailed information on each inventory item.",
      "items": {
        "$ref": "#/components/schemas/InventoryItemWithSkuLocaleGroupid"
      }
    },
    "limit": {
      "type": "integer",
      "description": "This integer value is the number of inventory items that will be displayed on each results page.",
      "format": "int32"
    },
    "next": {
      "type": "string",
      "description": "This is the URL to the next page of inventory items. This field will only be returned if there are additional inventory items to view."
    },
    "prev": {
      "type": "string",
      "description": "This is the URL to the previous page of inventory items. This field will only be returned if there are previous inventory items to view."
    },
    "size": {
      "type": "integer",
      "description": "This integer value indicates the total number of pages of results that are available. This number will depend on the total number of inventory items available for viewing, and on the <strong>limit</strong> value.",
      "format": "int32"
    },
    "total": {
      "type": "integer",
      "description": "This integer value is the total number of inventory items that exist for the seller's account. Based on this number and on the <strong>limit</strong> value, the seller may have to toggle through multiple pages to view all inventory items.",
      "format": "int32"
    }
  },
  "description": "This type is used by the base response payload of <strong>getInventoryItems</strong> call. "
}