{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/LogOutResourceRequest", "title": "LogOutResourceRequest", "properties": { "logoutReason": { "description": "The reason for performing logout operation, maximum length 128 characters.", "type": "string", "example": "Logout initiated by user abcd@xyz.com" }, "agentId": { "description": "Unique ID of the user who is being logged out, maximum length 36 characters.", "type": "string", "example": "faedfcc8-035a-41e3-ad53-ee9fad4ca286" } }, "required": [ "logoutReason" ], "type": "object" }