Palo Alto Networks · Schema

TenantGroupPolicyGroupMapping

Tenant group to Policy groups mappings.

Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

Properties

Name Type Description
tenantGroupId string Tenant group to which the policy groups are mapped.
policyGroupIds array Policy groups to be mapped.
View JSON Schema on GitHub

JSON Schema

prisma-cloud-mssp-api-tenant-group-policy-group-mapping-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "TenantGroupPolicyGroupMapping",
  "description": "Tenant group to Policy groups mappings.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/prisma-cloud-mssp-api-tenant-group-policy-group-mapping-schema.json",
  "type": "object",
  "properties": {
    "tenantGroupId": {
      "type": "string",
      "description": "Tenant group to which the policy groups are mapped.",
      "format": "uuid"
    },
    "policyGroupIds": {
      "type": "array",
      "description": "Policy groups to be mapped.",
      "items": {
        "type": "string",
        "description": "Policy groups to be mapped.",
        "format": "uuid"
      }
    }
  },
  "required": [
    "policyGroupIds",
    "tenantGroupId"
  ]
}