ForgeRock · Schema

AuthenticationRequest

Authentication callback response payload

Access ManagementAuthenticationAuthorizationIdentity GovernanceIdentity ManagementOAuthOpenID Connect

Properties

Name Type Description
authId string Authentication session identifier from the previous step
callbacks array Completed callback responses
View JSON Schema on GitHub

JSON Schema

forgerock-authenticationrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AuthenticationRequest",
  "title": "AuthenticationRequest",
  "type": "object",
  "description": "Authentication callback response payload",
  "properties": {
    "authId": {
      "type": "string",
      "description": "Authentication session identifier from the previous step"
    },
    "callbacks": {
      "type": "array",
      "description": "Completed callback responses",
      "items": {
        "$ref": "#/components/schemas/Callback"
      }
    }
  }
}