Mindbody · Schema

Discount

Implementation of the 'Discount' model. Discount for a promo code

FitnessWellnessBeautySchedulingBookingPoint of SaleStudiosSalonsSpasWebhooks

Properties

Name Type Description
Type string Type of discount percentage/amount
Amount number Amount of discount
View JSON Schema on GitHub

JSON Schema

public-api-v6-discount-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-discount-schema.json",
  "title": "Discount",
  "description": "Implementation of the 'Discount' model. Discount for a promo code",
  "type": "object",
  "properties": {
    "Type": {
      "type": "string",
      "description": "Type of discount percentage/amount",
      "example": "example-value"
    },
    "Amount": {
      "type": "number",
      "format": "double",
      "description": "Amount of discount",
      "example": 49.99
    }
  }
}