RoleRef

Reference to a role by its numeric ID

Properties

Name Type Description
id integer Numeric identifier of the referenced role
name string Name of the referenced role
View JSON Schema on GitHub

JSON Schema

automation-anywhere-roleref-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RoleRef",
  "title": "RoleRef",
  "type": "object",
  "description": "Reference to a role by its numeric ID",
  "properties": {
    "id": {
      "type": "integer",
      "format": "int64",
      "description": "Numeric identifier of the referenced role"
    },
    "name": {
      "type": "string",
      "description": "Name of the referenced role"
    }
  }
}