{
"$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-get-user-id-request-schema.json",
"title": "GetUserIdRequest",
"description": "GetUserIdRequest schema from AWS IAM Identity Center",
"type": "object",
"properties": {
"IdentityStoreId": {
"allOf": [
{
"$ref": "#/components/schemas/IdentityStoreId"
},
{
"description": "The globally unique identifier for the identity store."
}
]
},
"AlternateIdentifier": {
"allOf": [
{
"$ref": "#/components/schemas/AlternateIdentifier"
},
{
"description": "A unique identifier for a user or group that is not the primary identifier. This value can be an identifier from an external identity provider (IdP) that is associated with the user, the group, or a unique attribute. For the unique attribute, the only valid paths are <code>userName</code> and <code>emails.value</code>."
}
]
}
},
"required": [
"IdentityStoreId",
"AlternateIdentifier"
]
}