Home
Flipdish
Catalog Create Group Structure
Catalog Create Group Structure
Create a Catalog Group
Type: object
Properties: 9
Required: 3
Restaurant Online Ordering Mobile Apps Point of Sale Orders Menu Payments Webhooks
CreateGroup is a JSON Structure definition published by Flipdish, describing 9 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.
Properties
MinSelectCount
MaxSelectCount
Products
Metafields
GroupType
Sku
Name
AutogenerateDisplayText
ImageFileName
Meta-schema: https://json-structure.org/meta/core/v0/#
JSON Structure
{
"$schema": "https://json-structure.org/meta/core/v0/#",
"$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-structure/catalog-create-group-structure.json",
"name": "CreateGroup",
"description": "Create a Catalog Group",
"type": "object",
"properties": {
"MinSelectCount": {
"description": "Minimum number of items that the user has to select",
"type": "int32",
"example": 3
},
"MaxSelectCount": {
"description": "Maximum number of items that the user has to select",
"type": "int32",
"nullable": true,
"example": 3
},
"Products": {
"description": "Collection of items associated with this group",
"type": "array",
"items": {
"$ref": "#/components/schemas/CreateProductReference"
},
"example": []
},
"Metafields": {
"description": "Collection of metafields",
"type": "array",
"items": {
"$ref": "#/components/schemas/Metafield"
},
"example": []
},
"GroupType": {
"description": "Type of group (ModifierGroup, etc)",
"enum": [
"ModifierGroup"
],
"type": "string",
"example": "ModifierGroup"
},
"Sku": {
"description": "Stock Keeping Unit (SKU)",
"maxLength": 30,
"minLength": 0,
"type": "string",
"example": "string"
},
"Name": {
"description": "Group name",
"maxLength": 300,
"minLength": 0,
"type": "string",
"example": "Example Name"
},
"AutogenerateDisplayText": {
"description": "Autogenerate display text in ordering applications",
"type": "boolean",
"example": true
},
"ImageFileName": {
"description": "Image File Name",
"maxLength": 512,
"minLength": 0,
"type": "string",
"example": "Example Name"
}
},
"required": [
"GroupType",
"Sku",
"Name"
]
}