eBay · Schema

ProductSummary

This type contains a summary of a specified product. The product summary includes information about the product's identifiers, product images, aspects, and the getProduct URL for retrieving the product details.

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
additionalImages array Contains information about additional images associated with this product. For the primary image, see the image container.
aspects array Contains an array of the category aspects and their values that are associated with this product.
brand string The manufacturer's brand name for this product.
ean array A list of all European Article Numbers (EANs) that identify this product.
epid string The eBay product ID of this product.
gtin array A list of all GTINs that identify this product. This includes all of the values returned in the ean, isbn, and upc fields.
image object Contains information about the primary image of this product. For more images of this product, see the additionalImages container.
isbn array A list of all International Standard Book Numbers (ISBNs) that identify this product.
mpn array A list of all Manufacturer Product Number (MPN) values that the manufacturer uses to identify this product.
productHref string The URI of the getProduct call request that retrieves this product's details.
productWebUrl string The URL for this product's eBay product page.
title string The title of this product on eBay.
upc array A list of Universal Product Codes (UPCs) that identify this product.
View JSON Schema on GitHub

JSON Schema

ebay-productsummary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProductSummary",
  "title": "ProductSummary",
  "type": "object",
  "properties": {
    "additionalImages": {
      "type": "array",
      "description": "Contains information about additional images associated with this product. For the primary image, see the <b>image</b> container.",
      "items": {
        "$ref": "#/components/schemas/Image"
      }
    },
    "aspects": {
      "type": "array",
      "description": "Contains an array of the category aspects and their values that are associated with this product.",
      "items": {
        "$ref": "#/components/schemas/Aspect"
      }
    },
    "brand": {
      "type": "string",
      "description": "The manufacturer's brand name for this product."
    },
    "ean": {
      "type": "array",
      "description": "A list of all European Article Numbers (EANs) that identify this product.",
      "items": {
        "type": "string"
      }
    },
    "epid": {
      "type": "string",
      "description": "The eBay product ID of this product."
    },
    "gtin": {
      "type": "array",
      "description": "A list of all GTINs that identify this product. This includes all of the values returned in the <b>ean</b>, <b>isbn</b>, and <b>upc</b> fields.",
      "items": {
        "type": "string"
      }
    },
    "image": {
      "description": "Contains information about the primary image of this product. For more images of this product, see the <b>additionalImages</b> container.",
      "$ref": "#/components/schemas/Image"
    },
    "isbn": {
      "type": "array",
      "description": "A list of all International Standard Book Numbers (ISBNs) that identify this product.",
      "items": {
        "type": "string"
      }
    },
    "mpn": {
      "type": "array",
      "description": "A list of all Manufacturer Product Number (MPN) values that the manufacturer uses to identify this product.",
      "items": {
        "type": "string"
      }
    },
    "productHref": {
      "type": "string",
      "description": "The URI of the <b>getProduct</b> call request that retrieves this product's details."
    },
    "productWebUrl": {
      "type": "string",
      "description": "The URL for this product's eBay product page."
    },
    "title": {
      "type": "string",
      "description": "The title of this product on eBay."
    },
    "upc": {
      "type": "array",
      "description": "A list of Universal Product Codes (UPCs) that identify this product.",
      "items": {
        "type": "string"
      }
    }
  },
  "description": "This type contains a summary of a specified product. The product summary includes information about the product's identifiers, product images, aspects, and the <b>getProduct</b> URL for retrieving the product details."
}