{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ConnectionTokenResponse", "title": "ConnectionTokenResponse", "type": "object", "description": "Response containing a JWT token for direct sandbox connection", "properties": { "token": { "type": "string", "description": "JWT token for authenticating with the sandbox" } }, "required": [ "token" ] }