{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DeleteLoginProfileRequest", "title": "DeleteLoginProfileRequest", "type": "object", "required": [ "UserName" ], "properties": { "UserName": { "allOf": [ { "$ref": "#/components/schemas/userNameType" }, { "description": "

The name of the user whose password you want to delete.

This parameter allows (through its regex pattern) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-

" } ] } } }