Flipdish · Schema

MenuCheckpoint

Menu Checkpoint

RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

Properties

Name Type Description
MenuCheckpointId integer Identifier of Menu Checkpoint
Time string Time of creation of checkpoint
Name string Name of checkpoint
Url string Url that points to Serialized Checkpoint
View JSON Schema on GitHub

JSON Schema

menus-menu-checkpoint-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/menus-menu-checkpoint-schema.json",
  "title": "MenuCheckpoint",
  "description": "Menu Checkpoint",
  "type": "object",
  "properties": {
    "MenuCheckpointId": {
      "format": "int32",
      "description": "Identifier of Menu Checkpoint",
      "type": "integer",
      "example": 500123
    },
    "Time": {
      "format": "date-time",
      "description": "Time of creation of checkpoint",
      "type": "string",
      "example": "2026-06-02T12:00:00Z"
    },
    "Name": {
      "description": "Name of checkpoint",
      "type": "string",
      "example": "Example Name"
    },
    "Url": {
      "description": "Url that points to Serialized Checkpoint",
      "type": "string",
      "example": "https://api.flipdish.co/example"
    }
  }
}