Mindbody · JSON Structure

Public Api V6 Category Structure

Implementation of the 'Category' model.

Type: object Properties: 11
FitnessWellnessBeautySchedulingBookingPoint of SaleStudiosSalonsSpasWebhooks

Category is a JSON Structure definition published by Mindbody, describing 11 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Id CategoryName Description Service Active IsPrimary IsSecondary CreatedDateTimeUTC ModifiedDateTimeUTC SubCategories TotalCount

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/mindbody/refs/heads/main/json-structure/public-api-v6-category-structure.json",
  "name": "Category",
  "description": "Implementation of the 'Category' model.",
  "type": "object",
  "properties": {
    "Id": {
      "type": "int32",
      "description": "The category Id used for api calls.",
      "example": 123456
    },
    "CategoryName": {
      "type": "string",
      "description": "Category Name",
      "example": "example-value"
    },
    "Description": {
      "type": "string",
      "description": "Category Description",
      "example": "Example note for Mindbody Public API."
    },
    "Service": {
      "type": "boolean",
      "description": "Category service",
      "example": true
    },
    "Active": {
      "type": "boolean",
      "description": "Check if Category is active.",
      "example": true
    },
    "IsPrimary": {
      "type": "boolean",
      "description": "Check if Category is of primary type.",
      "example": true
    },
    "IsSecondary": {
      "type": "boolean",
      "description": "Check if Category is of secondary type.",
      "example": true
    },
    "CreatedDateTimeUTC": {
      "type": "datetime",
      "description": "Category Created DateTime UTC",
      "example": "2026-05-28T14:30:00Z"
    },
    "ModifiedDateTimeUTC": {
      "type": "datetime",
      "description": "Category Modified DateTime UTC",
      "example": "2026-05-28T14:30:00Z"
    },
    "SubCategories": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/SubCategory"
      },
      "description": "Contains the SubCategory objects, each of which describes the subcategories for a category.",
      "example": [
        {}
      ]
    },
    "TotalCount": {
      "type": "int32",
      "description": "Get total number of rows",
      "example": 10
    }
  }
}