Mindbody · Schema

CheckoutShoppingCartResponse

Implementation of the 'CheckoutShoppingCartResponse' model. The API Response model for Checkout Shopping Cart APIs

FitnessWellnessBeautySchedulingBookingPoint of SaleStudiosSalonsSpasWebhooks

Properties

Name Type Description
ShoppingCart object Contains information about the shopping cart.
Classes array Contains information about the classes.
Appointments array Contains information about the appointments.
Enrollments array Contains information about enrollment class schedules.
View JSON Schema on GitHub

JSON Schema

public-api-v6-checkout-shopping-cart-response-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-checkout-shopping-cart-response-schema.json",
  "title": "CheckoutShoppingCartResponse",
  "description": "Implementation of the 'CheckoutShoppingCartResponse' model. The API Response model for Checkout Shopping Cart APIs",
  "type": "object",
  "properties": {
    "ShoppingCart": {
      "$ref": "#/components/schemas/ShoppingCart",
      "description": "Contains information about the shopping cart."
    },
    "Classes": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Class"
      },
      "description": "Contains information about the classes.",
      "example": [
        {}
      ]
    },
    "Appointments": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Appointment"
      },
      "description": "Contains information about the appointments.",
      "example": [
        {}
      ]
    },
    "Enrollments": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ClassSchedule"
      },
      "description": "Contains information about enrollment class schedules.",
      "example": [
        {}
      ]
    }
  }
}