VTEX · Schema

Brand

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
Quantity integer
Name string
Link string
View JSON Schema on GitHub

JSON Schema

vtex-brand-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Brand",
  "title": "Brand",
  "required": [
    "Quantity",
    "Name",
    "Link"
  ],
  "type": "object",
  "properties": {
    "Quantity": {
      "type": "integer",
      "format": "int32"
    },
    "Name": {
      "type": "string"
    },
    "Link": {
      "type": "string"
    }
  },
  "example": {
    "Quantity": 1,
    "Name": "Philips",
    "Link": "/eletronicos/tv/Philips"
  }
}