{
"$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-get-user-request-schema.json",
"title": "GetUserRequest",
"description": "Represents the request to get information about the user.",
"type": "object",
"properties": {
"AccessToken": {
"allOf": [
{
"$ref": "#/components/schemas/TokenModelType"
},
{
"description": "A non-expired access token for the user whose information you want to query."
}
]
}
},
"required": [
"AccessToken"
]
}