{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/UpdateRoleDescriptionRequest",
"title": "UpdateRoleDescriptionRequest",
"type": "object",
"required": [
"RoleName",
"Description"
],
"properties": {
"RoleName": {
"allOf": [
{
"$ref": "#/components/schemas/roleNameType"
},
{
"description": "The name of the role that you want to modify."
}
]
},
"Description": {
"allOf": [
{
"$ref": "#/components/schemas/roleDescriptionType"
},
{
"description": "The new description that you want to apply to the specified role."
}
]
}
}
}