Implementation of the 'ClientMemberships' model.
{ "$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-client-memberships-schema.json", "title": "ClientMemberships", "description": "Implementation of the 'ClientMemberships' model.", "type": "object", "properties": { "ClientId": { "type": "string", "description": "ID of the client.", "example": "example-value" }, "Memberships": { "type": "array", "items": { "$ref": "#/components/schemas/ClientMembership" }, "description": "Contains information about the Client Memberships details.", "example": [ {} ] }, "ErrorMessage": { "type": "string", "description": "The model property of type str.", "example": "example-value" } } }