Flipdish · Schema

UpdateGroupReference

Data to update a {Flipdish.Menus.PublicModels.V1.Catalog.Products.GroupReference}

RestaurantOnline OrderingMobile AppsPoint-of-SaleOrderMenusPaymentsWebhook

Properties

Name Type Description
CatalogItemId string Identifier of the ProductId to use as SubProduct
GroupType string Type of the SupProduct
View JSON Schema on GitHub

JSON Schema

catalog-update-group-reference-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/catalog-update-group-reference-schema.json",
  "title": "UpdateGroupReference",
  "description": "Data to update a {Flipdish.Menus.PublicModels.V1.Catalog.Products.GroupReference}",
  "type": "object",
  "properties": {
    "CatalogItemId": {
      "description": "Identifier of the ProductId to use as SubProduct",
      "maxLength": 30,
      "minLength": 0,
      "type": "string",
      "example": "500123"
    },
    "GroupType": {
      "description": "Type of the SupProduct",
      "enum": [
        "ModifierGroup"
      ],
      "type": "string",
      "example": "ModifierGroup"
    }
  },
  "required": [
    "CatalogItemId",
    "GroupType"
  ]
}