{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AuthResponse", "title": "AuthResponse", "type": "object", "description": "Authentication response with private player token.", "properties": { "success": { "type": "boolean", "description": "Whether authentication succeeded.", "example": true }, "token": { "type": "string", "description": "Private player token for subsequent API calls.", "example": "priv-token-xyz789" }, "playerId": { "type": "string", "description": "Unique player identifier.", "example": "player-500123" } } }