Palo Alto Networks · Schema

AccessPolicy

AccessPolicy schema from Palo Alto Networks SASE IAM Service API

Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

Properties

Name Type Description
id string Unique identifier of the access policy.
principal_id string ID of the service account or user this policy applies to.
principal_type string Type of principal.
role_id string ID of the role assigned by this policy.
role_name string Name of the role assigned.
tsg_id string TSG scope this policy applies to.
created_at string
View JSON Schema on GitHub

JSON Schema

sase-iam-api-access-policy-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "AccessPolicy",
  "description": "AccessPolicy schema from Palo Alto Networks SASE IAM Service API",
  "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/sase-iam-api-access-policy-schema.json",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier of the access policy."
    },
    "principal_id": {
      "type": "string",
      "description": "ID of the service account or user this policy applies to."
    },
    "principal_type": {
      "type": "string",
      "enum": [
        "service_account",
        "user"
      ],
      "description": "Type of principal."
    },
    "role_id": {
      "type": "string",
      "description": "ID of the role assigned by this policy."
    },
    "role_name": {
      "type": "string",
      "description": "Name of the role assigned."
    },
    "tsg_id": {
      "type": "string",
      "description": "TSG scope this policy applies to."
    },
    "created_at": {
      "type": "string",
      "format": "date-time"
    }
  }
}