Mindbody · Schema

GetBookableItemsResponse

Implementation of the 'GetBookableItemsResponse' model.

FitnessWellnessBeautySchedulingBookingPoint of SaleStudiosSalonsSpasWebhooks

Properties

Name Type Description
PaginationResponse object Contains information about the pagination used.
Availabilities array Contains information about the availabilities for appointment booking.
View JSON Schema on GitHub

JSON Schema

public-api-v6-get-bookable-items-response-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-get-bookable-items-response-schema.json",
  "title": "GetBookableItemsResponse",
  "description": "Implementation of the 'GetBookableItemsResponse' model.",
  "type": "object",
  "properties": {
    "PaginationResponse": {
      "$ref": "#/components/schemas/PaginationResponse",
      "description": "Contains information about the pagination used."
    },
    "Availabilities": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Availability"
      },
      "description": "Contains information about the availabilities for appointment booking.",
      "example": [
        {}
      ]
    }
  }
}