{
"$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 image 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 ean, isbn, and upc fields.",
"items": {
"type": "string"
}
},
"image": {
"description": "Contains information about the primary image of this product. For more images of this product, see the additionalImages 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 getProduct 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 getProduct URL for retrieving the product details."
}