{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CreateAccountAliasRequest",
"title": "CreateAccountAliasRequest",
"type": "object",
"required": [
"AccountAlias"
],
"properties": {
"AccountAlias": {
"allOf": [
{
"$ref": "#/components/schemas/accountAliasType"
},
{
"description": "<p>The account alias to create.</p> <p>This parameter allows (through its <a href=\"http://wikipedia.org/wiki/regex\">regex pattern</a>) a string of characters consisting of lowercase letters, digits, and dashes. You cannot start or finish with a dash, nor can you have two dashes in a row.</p>"
}
]
}
}
}