Mindbody · Schema

AppointmentOption

Implementation of the 'AppointmentOption' model. An appointment option name/value pair

FitnessWellnessBeautySchedulingBookingPoint of SaleStudiosSalonsSpasWebhooks

Properties

Name Type Description
DisplayName string The name displayed for this appointment option.
Name string The name given to this option.
Value string The value of the option.
Type string The data type of the option value.
View JSON Schema on GitHub

JSON Schema

public-api-v6-appointment-option-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-appointment-option-schema.json",
  "title": "AppointmentOption",
  "description": "Implementation of the 'AppointmentOption' model. An appointment option name/value pair",
  "type": "object",
  "properties": {
    "DisplayName": {
      "type": "string",
      "description": "The name displayed for this appointment option.",
      "example": "example-value"
    },
    "Name": {
      "type": "string",
      "description": "The name given to this option.",
      "example": "Sunset Yoga Studio"
    },
    "Value": {
      "type": "string",
      "description": "The value of the option.",
      "example": "example-value"
    },
    "Type": {
      "type": "string",
      "description": "The data type of the option value.",
      "example": "example-value"
    }
  }
}