Amazon Cognito · Schema

SignUpResponse

The response from the server for a registration request.

AuthenticationAuthorizationIdentityIdentity ProviderOAuth2OIDC

Properties

Name Type Description
UserConfirmed object
CodeDeliveryDetails object
UserSub object
View JSON Schema on GitHub

JSON Schema

cognito-idp-sign-up-response-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "UserConfirmed": {
      "allOf": [
        {
          "$ref": "#/components/schemas/BooleanType"
        },
        {
          "description": "A response from the server indicating that a user registration has been confirmed."
        }
      ]
    },
    "CodeDeliveryDetails": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CodeDeliveryDetailsType"
        },
        {
          "description": "The code delivery details returned by the server response to the user registration request."
        }
      ]
    },
    "UserSub": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StringType"
        },
        {
          "description": "The UUID of the authenticated user. This isn't the same as <code>username</code>."
        }
      ]
    }
  },
  "required": [
    "UserConfirmed",
    "UserSub"
  ],
  "description": "The response from the server for a registration request.",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-cognito/refs/heads/main/json-schema/cognito-idp-sign-up-response-schema.json",
  "title": "SignUpResponse"
}