eBay · Schema

AspectMetadata

This type is the container type for the response payload of the getItemAspectsForCategory call.

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
aspects array A list of item aspects (for example, color) that are appropriate or necessary for accurately describing items in a particular leaf category. Each category has a different set of aspects and different
View JSON Schema on GitHub

JSON Schema

ebay-aspectmetadata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AspectMetadata",
  "title": "AspectMetadata",
  "type": "object",
  "properties": {
    "aspects": {
      "type": "array",
      "description": "A list of item aspects (for example, color) that are appropriate or necessary for accurately describing items in a particular leaf category. Each category has a different set of aspects and different requirements for aspect values. Sellers are required or encouraged to provide one or more acceptable values for each aspect when offering an item in that category on eBay.",
      "items": {
        "$ref": "#/components/schemas/Aspect"
      }
    }
  },
  "description": "This type is the container type for the response payload of the <b>getItemAspectsForCategory</b> call."
}