Mindbody · Schema

GetStaffSessionTypesResponse

Implementation of the 'GetStaffSessionTypesResponse' model.

FitnessWellnessBeautySchedulingBookingPoint of SaleStudiosSalonsSpasWebhooks

Properties

Name Type Description
PaginationResponse object Contains information about the pagination properties used.
StaffSessionTypes array Contains information about staff member session types.
View JSON Schema on GitHub

JSON Schema

public-api-v6-get-staff-session-types-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-staff-session-types-response-schema.json",
  "title": "GetStaffSessionTypesResponse",
  "description": "Implementation of the 'GetStaffSessionTypesResponse' model.",
  "type": "object",
  "properties": {
    "PaginationResponse": {
      "$ref": "#/components/schemas/PaginationResponse",
      "description": "Contains information about the pagination properties used."
    },
    "StaffSessionTypes": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/StaffSessionType"
      },
      "description": "Contains information about staff member session types.",
      "example": [
        {}
      ]
    }
  }
}