Palo Alto Networks · Schema

Tenant5G

Tenant5G schema from Palo Alto Networks SASE 5G Managed Services API

Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

Properties

Name Type Description
tenant_id string Unique identifier of the 5G tenant configuration.
name string Tenant display name.
description string Description of the tenant.
assigned_slices array Network slice IDs assigned to this tenant.
default_policy_id string Default security policy ID for this tenant's traffic.
created_at string
updated_at string
View JSON Schema on GitHub

JSON Schema

sase-5g-api-tenant5-g-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Tenant5G",
  "description": "Tenant5G schema from Palo Alto Networks SASE 5G Managed Services API",
  "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/sase-5g-api-tenant5-g-schema.json",
  "type": "object",
  "properties": {
    "tenant_id": {
      "type": "string",
      "description": "Unique identifier of the 5G tenant configuration."
    },
    "name": {
      "type": "string",
      "description": "Tenant display name."
    },
    "description": {
      "type": "string",
      "description": "Description of the tenant."
    },
    "assigned_slices": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Network slice IDs assigned to this tenant."
    },
    "default_policy_id": {
      "type": "string",
      "description": "Default security policy ID for this tenant's traffic."
    },
    "created_at": {
      "type": "string",
      "format": "date-time"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time"
    }
  }
}