Toast · Schema

CatalogProductVariantOption

A selected option for a retail product variant.

Food ServicePoint of SaleRestaurantsHospitality

Properties

Name Type Description
id string The unique identifier for the product variant option.
name string The name of the product variant option, for example, "size".
sortOrder integer The sort order of the product variant option.
value object
View JSON Schema on GitHub

JSON Schema

menus-catalog-product-variant-option-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/toast/refs/heads/main/json-schema/menus-catalog-product-variant-option-schema.json",
  "title": "CatalogProductVariantOption",
  "description": "A selected option for a retail product variant.\n",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "description": "The unique identifier for the product variant option.\n"
    },
    "name": {
      "type": "string",
      "description": "The name of the product variant option, for example, \"size\".\n"
    },
    "sortOrder": {
      "type": "integer",
      "description": "The sort order of the product variant option.\n"
    },
    "value": {
      "$ref": "#/definitions/CatalogProductOptionValue"
    }
  }
}