{
"$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-admin-get-user-response-schema.json",
"title": "AdminGetUserResponse",
"description": "Represents the response from the server from the request to get the specified user as an administrator.",
"type": "object",
"properties": {
"Username": {
"allOf": [
{
"$ref": "#/components/schemas/UsernameType"
},
{
"description": "The username of the user that you requested."
}
]
},
"UserAttributes": {
"allOf": [
{
"$ref": "#/components/schemas/AttributeListType"
},
{
"description": "An array of name-value pairs representing user attributes."
}
]
},
"UserCreateDate": {
"allOf": [
{
"$ref": "#/components/schemas/DateType"
},
{
"description": "The date the user was created."
}
]
},
"UserLastModifiedDate": {
"allOf": [
{
"$ref": "#/components/schemas/DateType"
},
{
"description": "The date and time, in ISO 8601 format, when the item was modified."
}
]
},
"Enabled": {
"allOf": [
{
"$ref": "#/components/schemas/BooleanType"
},
{
"description": "Indicates that the status is enabled."
}
]
},
"UserStatus": {
"allOf": [
{
"$ref": "#/components/schemas/UserStatusType"
},
{
"description": "
The user status. Can be one of the following:
UNCONFIRMED - User has been created but not confirmed.
CONFIRMED - User has been confirmed.
UNKNOWN - User status isn't known.
RESET_REQUIRED - User is confirmed, but the user must request a code and reset their password before they can sign in.
FORCE_CHANGE_PASSWORD - The user is confirmed and the user can sign in using a temporary password, but on first sign-in, the user must change their password to a new value before doing anything else.
SMS_MFA and SOFTWARE_TOKEN_MFA."
}
]
}
},
"required": [
"Username"
]
}