Flipdish · JSON Structure

Orders Fulfillment States Configuration Structure

Fulfillment States Configuration

Type: object Properties: 7
RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

FulfillmentStatesConfiguration is a JSON Structure definition published by Flipdish, describing 7 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

States AutomaticTransitionsEnabled AppId ConfigurationUid StoreSelectorType StoreIds Name

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-structure.json",
  "name": "FulfillmentStatesConfiguration",
  "description": "Fulfillment States Configuration",
  "type": "object",
  "properties": {
    "States": {
      "description": "States",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/FulfillmentStatusConfigurationItem"
      },
      "example": []
    },
    "AutomaticTransitionsEnabled": {
      "description": "Enable automatic transitions",
      "type": "boolean",
      "nullable": true,
      "example": true
    },
    "AppId": {
      "description": "AppId",
      "type": "string",
      "example": "500123"
    },
    "ConfigurationUid": {
      "description": "Configuration Uid",
      "type": "string",
      "example": "500123"
    },
    "StoreSelectorType": {
      "description": "Store Selector Type",
      "enum": [
        "None",
        "Single",
        "Multiple"
      ],
      "type": "string",
      "example": "None"
    },
    "StoreIds": {
      "description": "Store Ids",
      "type": "array",
      "items": {
        "type": "int32"
      },
      "example": [
        1
      ]
    },
    "Name": {
      "description": "Name",
      "type": "string",
      "example": "Example Name"
    }
  }
}