{ "$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 ] } } }