eBay · Schema

ProductIdentity

The type that defines the fields for the product identifier type/value pairs of product associated with an item.

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
identifierType string The type of product identifier, such as UPC and EAN.
identifierValue string The product identifier value.
View JSON Schema on GitHub

JSON Schema

ebay-productidentity-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProductIdentity",
  "title": "ProductIdentity",
  "type": "object",
  "properties": {
    "identifierType": {
      "type": "string",
      "description": "The type of product identifier, such as UPC and EAN."
    },
    "identifierValue": {
      "type": "string",
      "description": "The product identifier value."
    }
  },
  "description": "The type that defines the fields for the product identifier type/value pairs of product associated with an item."
}