{ "$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-user-schema.json", "title": "User", "description": "Implementation of the 'User' model.", "type": "object", "properties": { "Id": { "type": "integer", "format": "int32", "description": "The user\u2019s ID at the business. This is always 0 for Admin and Owner type users.", "example": 123456 }, "FirstName": { "type": "string", "description": "The user\u2019s first name.", "example": "Alex" }, "LastName": { "type": "string", "description": "The user\u2019s last name.", "example": "Lane" }, "Type": { "type": "string", "description": "The user\u2019s type. Possible values are: * Staff * Owner * Admin", "example": "example-value" } } }