Properties
| Name | Type | Description |
|---|---|---|
| access_token | string | The OAuth 2.0 access token |
| token_type | string | |
| expires_in | integer | Token expiry time in seconds |
| scope | string | Granted scopes |
| refresh_token | string | Refresh token (if applicable) |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TokenResponse",
"title": "TokenResponse",
"type": "object",
"properties": {
"access_token": {
"type": "string",
"description": "The OAuth 2.0 access token"
},
"token_type": {
"type": "string",
"enum": [
"Bearer"
]
},
"expires_in": {
"type": "integer",
"description": "Token expiry time in seconds"
},
"scope": {
"type": "string",
"description": "Granted scopes"
},
"refresh_token": {
"type": "string",
"description": "Refresh token (if applicable)"
}
}
}