UpdateRoleDescriptionRequest

APIs.ioEngineeringPlatform

Properties

Name Type Description
RoleName object
Description object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-updateroledescriptionrequest-schema.json Raw ↑
{
  "$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."
        }
      ]
    }
  }
}