TheFork · JSON Structure

Thefork B2B Reservation Structure

Type: object Properties: 9
RestaurantReservationsBookingDiningPoint Of SaleMarketplace

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

Properties

id restaurantId status mealDate partySize customer offer createdAt updatedAt

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "name": "Reservation",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Reservation identifier.",
      "example": "rsv_8f3c2a1b"
    },
    "restaurantId": {
      "type": "string",
      "description": "Identifier of the restaurant.",
      "example": "rst_10293"
    },
    "status": {
      "$ref": "./thefork-b2b-reservation-status-schema.json"
    },
    "mealDate": {
      "type": "datetime",
      "description": "The date and time of the meal (ISO 8601).",
      "example": "2026-06-20T20:30:00Z"
    },
    "partySize": {
      "type": "int32",
      "description": "Number of guests.",
      "example": 4
    },
    "customer": {
      "$ref": "./thefork-b2b-customer-schema.json"
    },
    "offer": {
      "$ref": "./thefork-b2b-offer-schema.json"
    },
    "createdAt": {
      "type": "datetime",
      "example": "2026-06-03T09:15:00Z"
    },
    "updatedAt": {
      "type": "datetime",
      "example": "2026-06-03T09:15:00Z"
    }
  }
}