ForgeRock · Schema

TokenInfo

Token introspection result

Access ManagementAuthenticationAuthorizationIdentity GovernanceIdentity ManagementOAuthOpenID Connect

Properties

Name Type Description
access_token string
grant_type string
scope array
realm string
token_type string
expires_in integer
client_id string
View JSON Schema on GitHub

JSON Schema

forgerock-tokeninfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TokenInfo",
  "title": "TokenInfo",
  "type": "object",
  "description": "Token introspection result",
  "properties": {
    "access_token": {
      "type": "string"
    },
    "grant_type": {
      "type": "string"
    },
    "scope": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "realm": {
      "type": "string"
    },
    "token_type": {
      "type": "string"
    },
    "expires_in": {
      "type": "integer"
    },
    "client_id": {
      "type": "string"
    }
  }
}