{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iam-identity-center/refs/heads/main/json-schema/identitystore-describe-user-request-schema.json",
"title": "DescribeUserRequest",
"description": "DescribeUserRequest schema from AWS IAM Identity Center",
"type": "object",
"properties": {
"IdentityStoreId": {
"allOf": [
{
"$ref": "#/components/schemas/IdentityStoreId"
},
{
"description": "The globally unique identifier for the identity store, such as d-1234567890. In this example, d- is a fixed prefix, and 1234567890 is a randomly generated string that contains numbers and lower case letters. This value is generated at the time that a new identity store is created."
}
]
},
"UserId": {
"allOf": [
{
"$ref": "#/components/schemas/ResourceId"
},
{
"description": "The identifier for a user in the identity store."
}
]
}
},
"required": [
"IdentityStoreId",
"UserId"
]
}