ForgeRock · Schema

AuthenticationResponse

Authentication step or success result

Access ManagementAuthenticationAuthorizationIdentity GovernanceIdentity ManagementOAuthOpenID Connect

Properties

Name Type Description
authId string
tokenId string SSO token on successful authentication
successUrl string
realm string
callbacks array
View JSON Schema on GitHub

JSON Schema

forgerock-authenticationresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AuthenticationResponse",
  "title": "AuthenticationResponse",
  "type": "object",
  "description": "Authentication step or success result",
  "properties": {
    "authId": {
      "type": "string"
    },
    "tokenId": {
      "type": "string",
      "description": "SSO token on successful authentication"
    },
    "successUrl": {
      "type": "string"
    },
    "realm": {
      "type": "string"
    },
    "callbacks": {
      "type": "array",
      "items": {
        "type": "object"
      }
    }
  }
}