{ "$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" } } }