type: object
properties:
  access_token:
    type: string
    example: 'EXAMPLE7J0JtkhGZzA6MscSiUH8qYwer...'
  scope:
    description: 'After authorizing, the available scopes are returned in a standard space deliminated format.'
    type: string
    example: 'read:files'
  expires_in:
    description: 'Length in seconds until token expiration.'
    type: number
    example: 86400
  expires_at:
    description: 'The timestamp of the token expiration in the (Unix) epoch format.'
    type: number
    format: int32
    example: 1569612083
  token_type:
    description: 'The token type, currently the only implementation is for `Bearer`.'
    type: string
    example: 'Bearer'