{ "$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-admin-disable-provider-for-user-request-schema.json", "title": "AdminDisableProviderForUserRequest", "description": "AdminDisableProviderForUserRequest schema from Amazon Cognito API", "type": "object", "properties": { "UserPoolId": { "allOf": [ { "$ref": "#/components/schemas/StringType" }, { "description": "The user pool ID for the user pool." } ] }, "User": { "allOf": [ { "$ref": "#/components/schemas/ProviderUserIdentifierType" }, { "description": "The user to be disabled." } ] } }, "required": [ "UserPoolId", "User" ] }