TheFork · Schema

OrderClose

RestaurantReservationsBookingDiningPoint Of SaleMarketplace

Properties

Name Type Description
total object
closedAt string ISO 8601 timestamp when the order was closed.
View JSON Schema on GitHub

JSON Schema

thefork-pos-order-close-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/thefork/main/json-schema/thefork-pos-order-close-schema.json",
  "title": "OrderClose",
  "x-api-evangelist-source": "openapi/thefork-pos-openapi.yml",
  "type": "object",
  "required": [
    "total"
  ],
  "properties": {
    "total": {
      "$ref": "./thefork-pos-money-schema.json"
    },
    "closedAt": {
      "type": "string",
      "format": "date-time",
      "description": "ISO 8601 timestamp when the order was closed."
    }
  }
}