VTEX · Schema

VTEX Product

Schema for a VTEX product object from the Catalog API

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
Id integer Unique product identifier
Name string Product name
DepartmentId integer Department category identifier
CategoryId integer Category identifier
BrandId integer Brand identifier
BrandName string Brand name
LinkId string URL slug for the product page
RefId string External reference identifier
IsVisible boolean Whether the product is visible in the storefront
Description string Full product description (HTML allowed)
DescriptionShort string Short product description
ReleaseDate string Product release date
KeyWords string Comma-separated keywords for search optimization
Title string SEO page title override
IsActive boolean Whether the product is active and can be purchased
TaxCode string Tax classification code
MetaTagDescription string SEO meta description
ShowWithoutStock boolean Whether to show the product when out of stock
Score integer Manual relevance score for search ranking
View JSON Schema on GitHub

JSON Schema

vtex-product-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/vtex/json-schema/vtex-product-schema.json",
  "title": "VTEX Product",
  "description": "Schema for a VTEX product object from the Catalog API",
  "type": "object",
  "properties": {
    "Id": {
      "type": "integer",
      "description": "Unique product identifier"
    },
    "Name": {
      "type": "string",
      "description": "Product name"
    },
    "DepartmentId": {
      "type": "integer",
      "description": "Department category identifier"
    },
    "CategoryId": {
      "type": "integer",
      "description": "Category identifier"
    },
    "BrandId": {
      "type": "integer",
      "description": "Brand identifier"
    },
    "BrandName": {
      "type": "string",
      "description": "Brand name"
    },
    "LinkId": {
      "type": "string",
      "description": "URL slug for the product page"
    },
    "RefId": {
      "type": "string",
      "description": "External reference identifier"
    },
    "IsVisible": {
      "type": "boolean",
      "description": "Whether the product is visible in the storefront"
    },
    "Description": {
      "type": "string",
      "description": "Full product description (HTML allowed)"
    },
    "DescriptionShort": {
      "type": "string",
      "description": "Short product description"
    },
    "ReleaseDate": {
      "type": "string",
      "format": "date-time",
      "description": "Product release date"
    },
    "KeyWords": {
      "type": "string",
      "description": "Comma-separated keywords for search optimization"
    },
    "Title": {
      "type": "string",
      "description": "SEO page title override"
    },
    "IsActive": {
      "type": "boolean",
      "description": "Whether the product is active and can be purchased"
    },
    "TaxCode": {
      "type": "string",
      "description": "Tax classification code"
    },
    "MetaTagDescription": {
      "type": "string",
      "description": "SEO meta description"
    },
    "ShowWithoutStock": {
      "type": "boolean",
      "description": "Whether to show the product when out of stock"
    },
    "Score": {
      "type": "integer",
      "description": "Manual relevance score for search ranking"
    }
  },
  "required": ["Name", "CategoryId", "BrandId"]
}