eBay · Schema

BestSellingProductResponse

The type that defines the fields for the best selling product information.

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
merchandisedProducts array An array of containers for the products.
warnings array The container with all the warnings for the input request.
View JSON Schema on GitHub

JSON Schema

ebay-bestsellingproductresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BestSellingProductResponse",
  "title": "BestSellingProductResponse",
  "type": "object",
  "properties": {
    "merchandisedProducts": {
      "type": "array",
      "description": "An array of containers for the products.",
      "items": {
        "$ref": "#/components/schemas/MerchandisedProduct"
      }
    },
    "warnings": {
      "type": "array",
      "description": "The container with all the warnings for the input request.",
      "items": {
        "$ref": "#/components/schemas/Error"
      }
    }
  },
  "description": "The type that defines the fields for the best selling product information."
}