Mindbody · Schema
AppointmentAddOn
Implementation of the 'AppointmentAddOn' model.
FitnessWellnessBeautySchedulingBookingPoint of SaleStudiosSalonsSpasWebhooks
Properties
| Name | Type | Description |
|---|---|---|
| Id | integer | The ID of this add-on. |
| Name | string | The name of this add-on. |
| NumDeducted | integer | The number of sessions that this add-on deducts from the pricing option used to pay for this add-on. |
| CategoryId | integer | This ID of this add-on’s category. |
| Category | string | The name of this add-on’s category. |
JSON Schema
{
"$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-add-on-schema.json",
"title": "AppointmentAddOn",
"description": "Implementation of the 'AppointmentAddOn' model.",
"type": "object",
"properties": {
"Id": {
"type": "integer",
"format": "int32",
"description": "The ID of this add-on.",
"example": 123456
},
"Name": {
"type": "string",
"description": "The name of this add-on.",
"example": "Sunset Yoga Studio"
},
"NumDeducted": {
"type": "integer",
"format": "int32",
"description": "The number of sessions that this add-on deducts from the pricing option used to pay for this add-on.",
"example": 1
},
"CategoryId": {
"type": "integer",
"format": "int32",
"description": "This ID of this add-on\u2019s category.",
"example": 123456
},
"Category": {
"type": "string",
"description": "The name of this add-on\u2019s category.",
"example": "example-value"
}
}
}