Palo Alto Networks · Schema

FqdnListRequest

FqdnListRequest schema from Palo Alto Networks Cloud NGFW for AWS REST API

Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

Properties

Name Type Description
FqdnListName string
FqdnListEntry object
View JSON Schema on GitHub

JSON Schema

cloud-ngfw-api-fqdn-list-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "FqdnListRequest",
  "description": "FqdnListRequest schema from Palo Alto Networks Cloud NGFW for AWS REST API",
  "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/cloud-ngfw-api-fqdn-list-request-schema.json",
  "type": "object",
  "properties": {
    "FqdnListName": {
      "type": "string"
    },
    "FqdnListEntry": {
      "type": "object",
      "required": [
        "FqdnList"
      ],
      "properties": {
        "Description": {
          "type": "string"
        },
        "FqdnList": {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      }
    }
  },
  "required": [
    "FqdnListName",
    "FqdnListEntry"
  ]
}