{ "$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" ] }