Amazon Cognito · Schema

ChallengeResponseType

The challenge response type.

AuthenticationIdentityOAuthOIDCSAMLUser ManagementFederated Identity

Properties

Name Type Description
ChallengeName object
ChallengeResponse object
View JSON Schema on GitHub

JSON Schema

user-pools-challenge-response-type-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-cognito/refs/heads/main/json-schema/user-pools-challenge-response-type-schema.json",
  "title": "ChallengeResponseType",
  "description": "The challenge response type.",
  "type": "object",
  "properties": {
    "ChallengeName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ChallengeName"
        },
        {
          "description": "The challenge name."
        }
      ]
    },
    "ChallengeResponse": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ChallengeResponse"
        },
        {
          "description": "The challenge response."
        }
      ]
    }
  }
}