Mindbody · Schema
ShoppingCart
Implementation of the 'ShoppingCart' model. Represents a shopping cart.
FitnessWellnessBeautySchedulingBookingPoint-of-SaleStudiosSalonsSpasWebhook
Properties
| Name | Type | Description |
|---|---|---|
| Id | string | The shopping cart ID. |
| CartItems | array | Contains information about the items in the shopping cart. |
| SubTotal | number | The cart’s total cost before taxes and discounts were applied. |
| DiscountTotal | number | The monetary amount removed from the cart’s total cost by applied discounts. |
| TaxTotal | number | The monetary amount paid in taxes, included in the cart’s `GrandTotal`. |
| GrandTotal | number | The cart’s total cost, including taxes and discounts. |
| Transactions | array | Contains information returned from the first call to CheckoutShoppingCart. |
| SaleId | integer | The ID of the sale associated with the shopping cart. |
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-shopping-cart-schema.json",
"title": "ShoppingCart",
"description": "Implementation of the 'ShoppingCart' model. Represents a shopping cart.",
"type": "object",
"properties": {
"Id": {
"type": "string",
"description": "The shopping cart ID.",
"example": "example-value"
},
"CartItems": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CartItem"
},
"description": "Contains information about the items in the shopping cart.",
"example": [
{}
]
},
"SubTotal": {
"type": "number",
"format": "double",
"description": "The cart\u2019s total cost before taxes and discounts were applied.",
"example": 49.99
},
"DiscountTotal": {
"type": "number",
"format": "double",
"description": "The monetary amount removed from the cart\u2019s total cost by applied discounts.",
"example": 49.99
},
"TaxTotal": {
"type": "number",
"format": "double",
"description": "The monetary amount paid in taxes, included in the cart\u2019s `GrandTotal`.",
"example": 49.99
},
"GrandTotal": {
"type": "number",
"format": "double",
"description": "The cart\u2019s total cost, including taxes and discounts.",
"example": 49.99
},
"Transactions": {
"type": "array",
"items": {
"$ref": "#/components/schemas/TransactionResponse"
},
"description": "Contains information returned from the first call to CheckoutShoppingCart.",
"example": [
{}
]
},
"SaleId": {
"type": "integer",
"format": "int32",
"description": "The ID of the sale associated with the shopping cart.",
"example": 123456
}
}
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/public-api-v6-shopping-cart"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.