Juniper Networks · Schema

Privilege

AIAutomationCloudEnterpriseNetworkingSDNSecurityFortune 1000

Properties

Name Type Description
scope string
role string
org_id string
site_id string
sitegroup_id string
View JSON Schema on GitHub

JSON Schema

juniper-privilege-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Privilege",
  "title": "Privilege",
  "type": "object",
  "properties": {
    "scope": {
      "type": "string",
      "enum": [
        "org",
        "site",
        "sitegroup"
      ]
    },
    "role": {
      "type": "string",
      "enum": [
        "admin",
        "write",
        "read",
        "helpdesk"
      ]
    },
    "org_id": {
      "type": "string",
      "format": "uuid"
    },
    "site_id": {
      "type": "string",
      "format": "uuid"
    },
    "sitegroup_id": {
      "type": "string",
      "format": "uuid"
    }
  }
}