Mindbody · Schema

GetSemestersResponse

Implementation of the 'GetSemestersResponse' model. Get Semesters Response Model

FitnessWellnessBeautySchedulingBookingPoint of SaleStudiosSalonsSpasWebhooks

Properties

Name Type Description
PaginationResponse object Contains information about the pagination used.
Semesters array Contains the Semester objects, each of which describes the semesters for a site.
View JSON Schema on GitHub

JSON Schema

public-api-v6-get-semesters-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-get-semesters-response-schema.json",
  "title": "GetSemestersResponse",
  "description": "Implementation of the 'GetSemestersResponse' model. Get Semesters Response Model",
  "type": "object",
  "properties": {
    "PaginationResponse": {
      "$ref": "#/components/schemas/PaginationResponse",
      "description": "Contains information about the pagination used."
    },
    "Semesters": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Semester"
      },
      "description": "Contains the Semester objects, each of which describes the semesters for a site.",
      "example": [
        {}
      ]
    }
  }
}