VTEX · Schema

AlternateIds

Array with alternate SKU IDs, such as EAN and `RefId`.

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
Ean string SKU EAN.
RefId string SKU reference ID.
View JSON Schema on GitHub

JSON Schema

vtex-alternateids-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AlternateIds",
  "title": "AlternateIds",
  "type": "object",
  "description": "Array with alternate SKU IDs, such as EAN and `RefId`.",
  "properties": {
    "Ean": {
      "type": "string",
      "description": "SKU EAN."
    },
    "RefId": {
      "type": "string",
      "description": "SKU reference ID."
    }
  },
  "example": {
    "Ean": "8781",
    "RefId": "878181"
  }
}