Palo Alto Networks · JSON Structure

Sase Iam Api Access Policy Request Structure

AccessPolicyRequest schema from Palo Alto Networks SASE IAM Service API

Type: object Properties: 4 Required: 4
Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

AccessPolicyRequest is a JSON Structure definition published by Palo Alto Networks, describing 4 properties, of which 4 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

principal_id principal_type role_id tsg_id

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-structure/sase-iam-api-access-policy-request-structure.json",
  "name": "AccessPolicyRequest",
  "description": "AccessPolicyRequest schema from Palo Alto Networks SASE IAM Service API",
  "type": "object",
  "properties": {
    "principal_id": {
      "type": "string",
      "description": "ID of the service account or user to grant access to."
    },
    "principal_type": {
      "type": "string",
      "description": "Type of principal.",
      "enum": [
        "service_account",
        "user"
      ]
    },
    "role_id": {
      "type": "string",
      "description": "ID of the role to assign."
    },
    "tsg_id": {
      "type": "string",
      "description": "TSG scope for this policy."
    }
  },
  "required": [
    "principal_id",
    "principal_type",
    "role_id",
    "tsg_id"
  ]
}