{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AaaLoginResponse", "title": "AaaLoginResponse", "type": "object", "properties": { "totalCount": { "type": "string", "example": "example_value" }, "imdata": { "type": "array", "items": { "type": "object", "properties": { "aaaLogin": { "type": "object", "properties": { "attributes": { "type": "object", "properties": { "token": { "type": "string", "description": "Authentication token (also set as cookie)" }, "refreshTimeoutSeconds": { "type": "string", "description": "Session idle timeout in seconds" }, "userName": { "type": "string", "description": "Authenticated username" } } } } } } }, "example": [] } } }