{ "$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 } } }