Delinea · Schema

RoleCreateArgs

Role create options

Privileged Access ManagementPAMSecrets ManagementIdentity SecurityDevOpsCybersecurity

Properties

Name Type Description
enabled boolean Whether the Role is active
name string Role name
View JSON Schema on GitHub

JSON Schema

rolecreateargs.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://docs.delinea.com/online-help/secret-server/api-scripting/rest-api/schemas/RoleCreateArgs",
  "title": "RoleCreateArgs",
  "description": "Role create options",
  "required": [
    "name",
    "enabled"
  ],
  "properties": {
    "enabled": {
      "description": "Whether the Role is active",
      "type": "boolean"
    },
    "name": {
      "description": "Role name",
      "type": "string"
    }
  },
  "type": "object"
}