Amazon Cognito · Schema

AdminCreateUserResponse

Represents the response from the server to the request to create the user.

AuthenticationAuthorizationIdentityIdentity ProviderOAuth2OIDC

Properties

Name Type Description
User object
View JSON Schema on GitHub

JSON Schema

cognito-idp-admin-create-user-response-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "User": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UserType"
        },
        {
          "description": "The newly created user."
        }
      ]
    }
  },
  "description": "Represents the response from the server to the request to create the user.",
  "$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-admin-create-user-response-schema.json",
  "title": "AdminCreateUserResponse"
}