Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

VERA Approval roles are defined in the VERA Approval Policy.

Info
iconfalse

Feature improved in the 2021.1 release

Step-by-step guide

...

  1. Locate the Approval Groups section of the approval policy (JSON file).
  2. Modify the Approval Groups to include the desired Approval Role(s). (See Approval Roles Code Snippet below)
  3. Upload the policy file to the defined file location
  4. VERA will read the policy file and the approval roles will be available for assigning to users in the VERA Administration portal.
  5. To add users to the new Approval Role(s), see Adding/Removing Users from VERA RolesAssign Users to a Domain Role.
Code Block
languagejs
titleApproval Roles Code Snippet
{
    "Approval Policy":
    {
        "Version": "Tx3 Standard 0.0.0.3",
        "Schema":
        {
            "ID": "http://tx3services.com/schemas/0/0/approval-policy.json",
            "Major": "0",
            "Minor": "0"
        },
        "Approval Groups": [
            "Business",
            "Quality",
            "Reviewer",
            "Technical",
        ],
		"Route Templates": [
		]
    }
}

...