Mindbody · Schema

BookingWindow

Implementation of the 'BookingWindow' model. The booking window for registration

FitnessWellnessBeautySchedulingBookingPoint of SaleStudiosSalonsSpasWebhooks

Properties

Name Type Description
StartDateTime string Date and time that the booking window opens; that is, the first day of sales.
EndDateTime string Date and time that the booking window closes; that is, the last day of sales.
DailyStartTime string The time that the booking window opens; that is, the time that the store opens.
DailyEndTime string The time that the booking window closes; that is, the time that the store closes.
View JSON Schema on GitHub

JSON Schema

public-api-v6-booking-window-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/mindbody/refs/heads/main/json-schema/public-api-v6-booking-window-schema.json",
  "title": "BookingWindow",
  "description": "Implementation of the 'BookingWindow' model. The booking window for registration",
  "type": "object",
  "properties": {
    "StartDateTime": {
      "type": "string",
      "format": "date-time",
      "description": "Date and time that the booking window opens; that is, the first day of sales.",
      "example": "2026-05-28T14:30:00Z"
    },
    "EndDateTime": {
      "type": "string",
      "format": "date-time",
      "description": "Date and time that the booking window closes; that is, the last day of sales.",
      "example": "2026-05-28T14:30:00Z"
    },
    "DailyStartTime": {
      "type": "string",
      "format": "date-time",
      "description": "The time that the booking window opens; that is, the time that the store opens.",
      "example": "2026-05-28T14:30:00Z"
    },
    "DailyEndTime": {
      "type": "string",
      "format": "date-time",
      "description": "The time that the booking window closes; that is, the time that the store closes.",
      "example": "2026-05-28T14:30:00Z"
    }
  }
}