{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-structure/public-api-user-account-structure.json", "name": "UserAccount", "description": "UserAccount schema from Public API (Otter Public API).", "type": "object", "properties": { "id": { "type": "string", "description": "The user identifier.", "example": "somestring" }, "userFields": { "type": "array", "description": "The user info fields.", "items": { "$ref": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-user-field-schema.json" } }, "balances": { "type": "array", "description": "The user's current balances.", "items": { "$ref": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-user-balance-schema.json" } } } }