Looker · Schema

AccessToken

An API access token returned after successful authentication

AnalyticsBI PlatformBusiness IntelligenceData AnalyticsData Visualization

Properties

Name Type Description
access_token string The OAuth2 access token string
token_type string Token type, always 'Bearer'
expires_in integer Number of seconds until the token expires
refresh_token string Refresh token (not used in API client credential flow)
View JSON Schema on GitHub

JSON Schema

looker-access-token-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "AccessToken",
  "type": "object",
  "description": "An API access token returned after successful authentication",
  "properties": {
    "access_token": {
      "type": "string",
      "description": "The OAuth2 access token string"
    },
    "token_type": {
      "type": "string",
      "description": "Token type, always 'Bearer'"
    },
    "expires_in": {
      "type": "integer",
      "description": "Number of seconds until the token expires"
    },
    "refresh_token": {
      "type": "string",
      "description": "Refresh token (not used in API client credential flow)"
    }
  }
}