Mindbody · JSON Structure

Public Api V6 Spot Structure

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

Type: object Properties: 3
FitnessWellnessBeautySchedulingBookingPoint of SaleStudiosSalonsSpasWebhooks

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

Properties

ReservedSpotNumbers AvailableSpotNumbers UnavailableSpotNumbers

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/mindbody/refs/heads/main/json-structure/public-api-v6-spot-structure.json",
  "name": "Spot",
  "description": "Implementation of the 'Spot' model. Contains information about the spot details.",
  "type": "object",
  "properties": {
    "ReservedSpotNumbers": {
      "type": "array",
      "items": {
        "type": "int32"
      },
      "description": "Contains information about the collection of reserved spot numbers.",
      "example": [
        1
      ]
    },
    "AvailableSpotNumbers": {
      "type": "array",
      "items": {
        "type": "int32"
      },
      "description": "Contains information about the collection of available spot numbers.",
      "example": [
        1
      ]
    },
    "UnavailableSpotNumbers": {
      "type": "array",
      "items": {
        "type": "int32"
      },
      "description": "Contains information about the collection of Unavailable spot numbers.",
      "example": [
        1
      ]
    }
  }
}