Category List Chooser

image image

Schema
{
  "$schema": "https://json-schema.org/draft/2019-09/schema",
  "title": "Category list chooser control",
  "description": "Control that allows sellers to select from a list of their categories",
  "type": "object",
  "required": [
    "option"
  ],
  "properties": {
    "control": {
      "const": "category-list-chooser"
    },
    "value": {
      "title": "Value",
      "description": "CategoryList resource value, see https://square.github.io/custom-sites-docs/resources/category-list for full documentation",
      "type": "object"
    }
  }
}
Example
{
    "control": "category-list-chooser",
    "label": "Category chooser",
    "value": {
        "$ref": "#/schema/items"
    }
}

See also