ForgeRock · Schema

AuthenticationCallbackRequest

Authentication callback response from client

Access ManagementAuthenticationAuthorizationIdentity GovernanceIdentity ManagementOpenID Connect

Properties

Name Type Description
authId string Authentication session identifier
callbacks array
View JSON Schema on GitHub

JSON Schema

forgerock-authenticationcallbackrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AuthenticationCallbackRequest",
  "title": "AuthenticationCallbackRequest",
  "type": "object",
  "description": "Authentication callback response from client",
  "properties": {
    "authId": {
      "type": "string",
      "description": "Authentication session identifier"
    },
    "callbacks": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string"
          },
          "output": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "input": {
            "type": "array",
            "items": {
              "type": "object"
            }
          }
        }
      }
    }
  }
}