UpdateUserRequest schema from AWS IAM Identity Center
{ "$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-update-user-request-schema.json", "title": "UpdateUserRequest", "description": "UpdateUserRequest schema from AWS IAM Identity Center", "type": "object", "properties": { "IdentityStoreId": { "allOf": [ { "$ref": "#/components/schemas/IdentityStoreId" }, { "description": "The globally unique identifier for the identity store." } ] }, "UserId": { "allOf": [ { "$ref": "#/components/schemas/ResourceId" }, { "description": "The identifier for a user in the identity store." } ] }, "Operations": { "allOf": [ { "$ref": "#/components/schemas/AttributeOperations" }, { "description": "A list of <code>AttributeOperation</code> objects to apply to the requested user. These operations might add, replace, or remove an attribute." } ] } }, "required": [ "IdentityStoreId", "UserId", "Operations" ] }