Mindbody · Schema

Relationship

Implementation of the 'Relationship' model. Jim is a RelationshipName1 of John. John is a RelationshipName2 of Jim.

FitnessWellnessBeautySchedulingBookingPoint of SaleStudiosSalonsSpasWebhooks

Properties

Name Type Description
Id integer The ID of the relationship.
RelationshipName1 string The name of the first relationship.
RelationshipName2 string The name of the second relationship.
View JSON Schema on GitHub

JSON Schema

public-api-v6-relationship-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-relationship-schema.json",
  "title": "Relationship",
  "description": "Implementation of the 'Relationship' model. Jim is a RelationshipName1 of John. John is a RelationshipName2 of Jim.",
  "type": "object",
  "properties": {
    "Id": {
      "type": "integer",
      "format": "int32",
      "description": "The ID of the relationship.",
      "example": 123456
    },
    "RelationshipName1": {
      "type": "string",
      "description": "The name of the first relationship.",
      "example": "example-value"
    },
    "RelationshipName2": {
      "type": "string",
      "description": "The name of the second relationship.",
      "example": "example-value"
    }
  }
}