{ "type": "object", "properties": { "Username": { "allOf": [ { "$ref": "#/components/schemas/UsernameType" }, { "description": "The user name of the user you want to retrieve from the get user request." } ] }, "UserAttributes": { "allOf": [ { "$ref": "#/components/schemas/AttributeListType" }, { "description": "
An array of name-value pairs representing user attributes.
For custom attributes, you must prepend the custom: prefix to the attribute name.
SMS_MFA and SOFTWARE_TOKEN_MFA."
}
]
}
},
"required": [
"Username",
"UserAttributes"
],
"description": "Represents the response from the server from the request to get information about the user.",
"$schema": "https://json-structure.org/meta/core/v0/#",
"$id": "https://raw.githubusercontent.com/api-evangelist/aws-cognito/refs/heads/main/json-structure/cognito-idp-get-user-response-structure.json",
"name": "GetUserResponse"
}