Flipdish · JSON Structure

Orders Order Fulfillment Status With Configuration Actions Structure

Order Fulfillment status with configured next actions

Type: object Properties: 6
RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

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

Properties

DefaultNextStatus NextStatuses OrderId StatusId StatusName Icon

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-order-fulfillment-status-with-configuration-actions-structure.json",
  "name": "OrderFulfillmentStatusWithConfigurationActions",
  "description": "Order Fulfillment status with configured next actions",
  "type": "object",
  "properties": {
    "DefaultNextStatus": {
      "description": "Default next status (id)",
      "type": "string",
      "example": "Active"
    },
    "NextStatuses": {
      "description": "Possible next statuses",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/FulfillentStatusActionItem"
      },
      "example": []
    },
    "OrderId": {
      "description": "Order Id",
      "type": "int32",
      "example": 500123
    },
    "StatusId": {
      "description": "Fulfillment Status Id",
      "type": "string",
      "example": "500123"
    },
    "StatusName": {
      "description": "Fulfillment Status Name",
      "type": "string",
      "example": "Example Name"
    },
    "Icon": {
      "description": "Status Icon",
      "type": "string",
      "example": "string"
    }
  }
}