Mindbody · Schema

CommissionDetail

Implementation of the 'CommissionDetail' model.

FitnessWellnessBeautySchedulingBookingPoint of SaleStudiosSalonsSpasWebhooks

Properties

Name Type Description
CommissionType string The type of commission earned. Possible values are: * ItemStandardPercentageCommission * ItemStandardFlatCommission * ItemPromotionalPercentageCommission * ItemPromotionalFlatCommission * StaffStandar
CommissionEarnings number The portion of `Earnings` earned by this `CommissionType`.
View JSON Schema on GitHub

JSON Schema

public-api-v6-commission-detail-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-commission-detail-schema.json",
  "title": "CommissionDetail",
  "description": "Implementation of the 'CommissionDetail' model.",
  "type": "object",
  "properties": {
    "CommissionType": {
      "type": "string",
      "description": "The type of commission earned. Possible values are: * ItemStandardPercentageCommission * ItemStandardFlatCommission * ItemPromotionalPercentageCommission * ItemPromotionalFlatCommission * StaffStandardPercentageCommission * StaffStandardFlatCommission * StaffPromotionalPercentageCommission * StaffPromotionalFlatCommission",
      "example": "example-value"
    },
    "CommissionEarnings": {
      "type": "number",
      "format": "double",
      "description": "The portion of `Earnings` earned by this `CommissionType`.",
      "example": 1.0
    }
  }
}