Item List Chooser

image image

Schema
{
  "$schema": "https://json-schema.org/draft/2019-09/schema",
  "title": "Item list chooser control",
  "description": "Control that allows sellers to select from a list of their items",
  "type": "object",
  "required": [
    "option"
  ],
  "properties": {
    "control": {
      "const": "item-list-chooser"
    },
    "value": {
      "title": "Value",
      "description": "ItemList resource value, see https://square.github.io/custom-sites-docs/resources/item-list for full documentation",
      "type": "object"
    }
  }
}
Example
{
  "control": "item-list-chooser",
  "label": "Item chooser",
  "value": {
    "sort": {
      "by": "popularity_score",
      "order": "desc"
    },
    "pagination": {
      "page_size": 10
    }
  }
}
{
  "control": "item-list-chooser",
  "label": "Item chooser",
  "value": {
    "filters": {
      "ids": [
        "14",
        "13"
      ],
      "square_online_id": true
    }
  }
}

See also