Mindbody · Schema

Level

Implementation of the 'Level' model. A session level.

FitnessWellnessBeautySchedulingBookingPoint of SaleStudiosSalonsSpasWebhooks

Properties

Name Type Description
Id integer Contains the Id given to this level.
Name string Contains the name given to this level.
Description string Contains a description of this level.
View JSON Schema on GitHub

JSON Schema

public-api-v6-level-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-level-schema.json",
  "title": "Level",
  "description": "Implementation of the 'Level' model. A session level.",
  "type": "object",
  "properties": {
    "Id": {
      "type": "integer",
      "format": "int32",
      "description": "Contains the Id given to this level.",
      "example": 123456
    },
    "Name": {
      "type": "string",
      "description": "Contains the name given to this level.",
      "example": "Sunset Yoga Studio"
    },
    "Description": {
      "type": "string",
      "description": "Contains a description of this level.",
      "example": "Example note for Mindbody Public API."
    }
  }
}