Palo Alto Networks · Schema
ServiceList
ServiceList schema from Palo Alto Networks Strata Cloud Manager API
Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR
Properties
| Name | Type | Description |
|---|---|---|
| data | array | |
| offset | integer | |
| total | integer | |
| limit | integer |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "ServiceList",
"description": "ServiceList schema from Palo Alto Networks Strata Cloud Manager API",
"$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/strata-cloud-manager-api-service-list-schema.json",
"type": "object",
"properties": {
"data": {
"type": "array",
"items": {
"type": "object",
"description": "A service object defining a protocol and port combination for use in security policy rules.",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"readOnly": true
},
"name": {
"type": "string"
},
"folder": {
"type": "string",
"readOnly": true
},
"protocol": {
"type": "object",
"properties": {
"tcp": {
"type": "object",
"properties": {
"port": {
"type": "string",
"description": "TCP destination port or range (e.g., 80, 8080-8090)."
},
"source_port": {
"type": "string"
}
}
},
"udp": {
"type": "object",
"properties": {
"port": {
"type": "string",
"description": "UDP destination port or range (e.g., 53)."
},
"source_port": {
"type": "string"
}
}
}
}
},
"description": {
"type": "string"
},
"tag": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
},
"offset": {
"type": "integer"
},
"total": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}