{ "$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-delete-user-pool-domain-request-schema.json", "title": "DeleteUserPoolDomainRequest", "description": "DeleteUserPoolDomainRequest schema from Amazon Cognito API", "type": "object", "properties": { "Domain": { "allOf": [ { "$ref": "#/components/schemas/DomainType" }, { "description": "The domain string. For custom domains, this is the fully-qualified domain name, such as auth.example.com. For Amazon Cognito prefix domains, this is the prefix alone, such as auth." } ] }, "UserPoolId": { "allOf": [ { "$ref": "#/components/schemas/UserPoolIdType" }, { "description": "The user pool ID." } ] } }, "required": [ "Domain", "UserPoolId" ] }