Palo Alto Networks · Schema

EmailDestinationRequest

EmailDestinationRequest schema from Palo Alto Networks Strata Logging Service API

Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

Properties

Name Type Description
name string Display name for this email destination.
gateway string SMTP server hostname or IP address.
from string Sender email address.
to string Primary recipient email address.
and_also_to string Additional recipient email address.
enabled boolean
View JSON Schema on GitHub

JSON Schema

strata-logging-service-api-email-destination-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "EmailDestinationRequest",
  "description": "EmailDestinationRequest schema from Palo Alto Networks Strata Logging Service API",
  "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/strata-logging-service-api-email-destination-request-schema.json",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Display name for this email destination."
    },
    "gateway": {
      "type": "string",
      "description": "SMTP server hostname or IP address."
    },
    "from": {
      "type": "string",
      "format": "email",
      "description": "Sender email address."
    },
    "to": {
      "type": "string",
      "format": "email",
      "description": "Primary recipient email address."
    },
    "and_also_to": {
      "type": "string",
      "format": "email",
      "description": "Additional recipient email address."
    },
    "enabled": {
      "type": "boolean",
      "default": true
    }
  },
  "required": [
    "name",
    "gateway",
    "from",
    "to"
  ]
}