VTEX · Schema

SalesChannel

Array containing information about the Sales channel.

CommerceE-CommerceRetailMarketplacePayments
View JSON Schema on GitHub

JSON Schema

vtex-saleschannel-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SalesChannel",
  "title": "SalesChannel",
  "type": "array",
  "description": "Array containing information about the Sales channel.",
  "items": {
    "type": "object",
    "description": "Sales channel information.",
    "required": [
      "id"
    ],
    "properties": {
      "id": {
        "type": "string",
        "description": "Sales channel identification.",
        "example": "1"
      }
    }
  }
}