eBay · Schema

Items

Container for a list of items.

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
items array An arraylist of all the items.
total integer The total number of items retrieved.
warnings array An array of warning messages. These types of errors do not prevent the method from executing but should be checked.
View JSON Schema on GitHub

JSON Schema

ebay-items-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Items",
  "title": "Items",
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "description": "An arraylist of all the items.",
      "items": {
        "$ref": "#/components/schemas/CoreItem"
      }
    },
    "total": {
      "type": "integer",
      "description": "The total number of items retrieved.",
      "format": "int32"
    },
    "warnings": {
      "type": "array",
      "description": "An array of warning messages. These types of errors do not prevent the method from executing but should be checked.",
      "items": {
        "$ref": "#/components/schemas/Error"
      }
    }
  },
  "description": "Container for a list of items."
}