Flipdish · JSON Structure

Orders Fulfillment States Configuration Summary Structure

Fulfillment configuration header information

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

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

Properties

AppId ConfigurationUid Name StoreSelectorType Stores

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/orders-fulfillment-states-configuration-summary-structure.json",
  "name": "FulfillmentStatesConfigurationSummary",
  "description": "Fulfillment configuration header information",
  "type": "object",
  "properties": {
    "AppId": {
      "description": "AppId",
      "type": "string",
      "example": "500123"
    },
    "ConfigurationUid": {
      "description": "Configuration Uid",
      "type": "string",
      "example": "500123"
    },
    "Name": {
      "description": "Name",
      "type": "string",
      "example": "Example Name"
    },
    "StoreSelectorType": {
      "description": "Store selector type",
      "enum": [
        "None",
        "Single",
        "Multiple"
      ],
      "type": "string",
      "example": "None"
    },
    "Stores": {
      "description": "Stores",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/FulfillmentStatesConfiguredStore"
      },
      "example": []
    }
  },
  "required": [
    "AppId"
  ]
}