{ "$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" } } }