Flipdish · JSON Structure

Orders Create Fulfillment States Configuration Structure

Create fulfillment states configuration

Type: object Properties: 5
RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

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

Properties

StoreIds StoreSelectorType States AutomaticTransitionsEnabled 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-create-fulfillment-states-configuration-structure.json",
  "name": "CreateFulfillmentStatesConfiguration",
  "description": "Create fulfillment states configuration",
  "type": "object",
  "properties": {
    "StoreIds": {
      "description": "Stores id's",
      "type": "array",
      "items": {
        "type": "int32"
      },
      "example": [
        1
      ]
    },
    "StoreSelectorType": {
      "description": "Store Selector Type",
      "enum": [
        "None",
        "Single",
        "Multiple"
      ],
      "type": "string",
      "example": "None"
    },
    "States": {
      "description": "Settings",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/FulfillmentStatusConfigurationItem"
      },
      "example": []
    },
    "AutomaticTransitionsEnabled": {
      "description": "Enable automatic transitions",
      "type": "boolean",
      "nullable": true,
      "example": true
    },
    "Name": {
      "description": "Name",
      "type": "string",
      "example": "Example Name"
    }
  }
}