ForgeRock · Schema

TokenResponse

OAuth 2.0 token response

Access ManagementAuthenticationAuthorizationIdentity GovernanceIdentity ManagementOAuthOpenID Connect

Properties

Name Type Description
access_token string
token_type string
expires_in integer
refresh_token string
scope string
id_token string
View JSON Schema on GitHub

JSON Schema

forgerock-tokenresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TokenResponse",
  "title": "TokenResponse",
  "type": "object",
  "description": "OAuth 2.0 token response",
  "properties": {
    "access_token": {
      "type": "string"
    },
    "token_type": {
      "type": "string"
    },
    "expires_in": {
      "type": "integer"
    },
    "refresh_token": {
      "type": "string"
    },
    "scope": {
      "type": "string"
    },
    "id_token": {
      "type": "string"
    }
  }
}