Mindbody · Schema

UpdateAvailabilityResponse

Implementation of the 'UpdateAvailabilityResponse' model. This is the update avaialability response

FitnessWellnessBeautySchedulingBookingPoint of SaleStudiosSalonsSpasWebhooks

Properties

Name Type Description
StaffMembers array This is the success list of the trainer availability
Errors array The model property of type List[ApiError].
View JSON Schema on GitHub

JSON Schema

public-api-v6-update-availability-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-update-availability-response-schema.json",
  "title": "UpdateAvailabilityResponse",
  "description": "Implementation of the 'UpdateAvailabilityResponse' model. This is the update avaialability response",
  "type": "object",
  "properties": {
    "StaffMembers": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Staff"
      },
      "description": "This is the success list of the trainer availability",
      "example": [
        {}
      ]
    },
    "Errors": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ApiError"
      },
      "description": "The model property of type List[ApiError].",
      "example": [
        {}
      ]
    }
  }
}