Flipdish · JSON Structure

Apps Field Group Structure

FieldGroup schema from Flipdish API - Apps.

Type: object Properties: 5 Required: 2
RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

FieldGroup is a JSON Structure definition published by Flipdish, describing 5 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Name Description Tooltip Position Fields

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-structure/apps-field-group-structure.json",
  "name": "FieldGroup",
  "description": "FieldGroup schema from Flipdish API - Apps.",
  "type": "object",
  "properties": {
    "Name": {
      "type": "string",
      "example": "Example Name"
    },
    "Description": {
      "type": "string",
      "example": "string"
    },
    "Tooltip": {
      "type": "string",
      "example": "string"
    },
    "Position": {
      "maximum": 1000,
      "minimum": 1,
      "type": "int32",
      "example": 1
    },
    "Fields": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Field"
      },
      "example": []
    }
  },
  "required": [
    "Name",
    "Position"
  ]
}