{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/abacus/refs/heads/main/json-schema/abacus-oauth-token-response-schema.json", "title": "OAuthTokenResponse", "description": "OAuth 2.0 access token response", "type": "object", "properties": { "access_token": { "type": "string", "description": "Access token for API requests", "example": "a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4" }, "token_type": { "type": "string", "description": "Token type (always Bearer)", "example": "Bearer" }, "expires_in": { "type": "integer", "description": "Token expiration time in seconds", "example": 3600 } } }