Mindbody · Schema

Spot

Implementation of the 'Spot' model. Contains information about the spot details.

FitnessWellnessBeautySchedulingBookingPoint of SaleStudiosSalonsSpasWebhooks

Properties

Name Type Description
ReservedSpotNumbers array Contains information about the collection of reserved spot numbers.
AvailableSpotNumbers array Contains information about the collection of available spot numbers.
UnavailableSpotNumbers array Contains information about the collection of Unavailable spot numbers.
View JSON Schema on GitHub

JSON Schema

public-api-v6-spot-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-spot-schema.json",
  "title": "Spot",
  "description": "Implementation of the 'Spot' model. Contains information about the spot details.",
  "type": "object",
  "properties": {
    "ReservedSpotNumbers": {
      "type": "array",
      "items": {
        "type": "integer",
        "format": "int32"
      },
      "description": "Contains information about the collection of reserved spot numbers.",
      "example": [
        1
      ]
    },
    "AvailableSpotNumbers": {
      "type": "array",
      "items": {
        "type": "integer",
        "format": "int32"
      },
      "description": "Contains information about the collection of available spot numbers.",
      "example": [
        1
      ]
    },
    "UnavailableSpotNumbers": {
      "type": "array",
      "items": {
        "type": "integer",
        "format": "int32"
      },
      "description": "Contains information about the collection of Unavailable spot numbers.",
      "example": [
        1
      ]
    }
  }
}