{
"$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-get-sales-response-schema.json",
"title": "GetSalesResponse",
"description": "Implementation of the 'GetSalesResponse' model.",
"type": "object",
"properties": {
"PaginationResponse": {
"$ref": "#/components/schemas/PaginationResponse",
"description": "Contains information about the pagination used."
},
"Sales": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Sale"
},
"description": "Contains the Sale objects, each of which describes the sale and payment for a purchase event.",
"example": [
{}
]
}
}
}