eBay · Schema

Aspect

The type that defines the fields for the name/value pairs for the aspects of the product. For example: BRAND/Apple

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
localizedName string The text representing the name of the aspect for the name/value pair, such as Brand.
localizedValues array The text representing the value of the aspect for the name/value pair, such as Apple.
View JSON Schema on GitHub

JSON Schema

ebay-aspect-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Aspect",
  "title": "Aspect",
  "type": "object",
  "properties": {
    "localizedName": {
      "type": "string",
      "description": "The text representing the name of the aspect for the name/value pair, such as Brand."
    },
    "localizedValues": {
      "type": "array",
      "description": "The text representing the value of the aspect for the name/value pair, such as Apple.",
      "items": {
        "type": "string"
      }
    }
  },
  "description": "The type that defines the fields for the name/value pairs for the aspects of the product. For example: BRAND/Apple"
}