{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TokenPostImpersonation", "title": "TokenPostImpersonation", "type": "object", "x-internal": false, "x-examples": {}, "properties": { "channel_id": { "type": "integer", "minimum": 1, "description": "Channel ID for requested token", "example": 1 }, "expires_at": { "type": "integer", "description": "Unix timestamp (UTC time) defining when the token should expire. Supports seconds, but does not support milliseconds, microseconds, or nanoseconds.", "example": 1885635176, "minimum": 0 } }, "required": [ "channel_id", "expires_at" ] }