Response containing access token
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AccessTokenResponse", "title": "AccessTokenResponse", "type": "object", "description": "Response containing access token", "properties": { "access_token": { "type": "string", "description": "OAuth 2.0 access token", "example": "AQV8vPRN5zF9BxJ..." }, "expires_in": { "type": "integer", "description": "Token expiration time in seconds", "example": 5184000 }, "token_type": { "type": "string", "description": "Token type", "example": "Bearer" } } }