{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/RevokeUserAccessRequestContent", "title": "RevokeUserAccessRequestContent", "type": "object", "additionalProperties": false, "properties": { "session_id": { "type": "string", "description": "ID of the session to revoke.", "maxLength": 50, "format": "session-id" }, "preserve_refresh_tokens": { "type": "boolean", "description": "Whether to preserve the refresh tokens associated with the session.", "default": false } } }