Palo Alto Networks · Schema

JiraIntegrationRequest

JiraIntegrationRequest schema from Palo Alto Networks SaaS Security Posture Management API

Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

Properties

Name Type Description
name string Display name for this integration.
jira_url string Base URL of the Jira server or cloud instance.
project_key string Jira project key where tickets will be created.
issue_type string Jira issue type (e.g., Bug, Task, Story).
api_token string Jira API token for authentication.
email string Email address associated with the Jira API token.
severity_mapping object Mapping from SSPM severity levels to Jira priorities.
View JSON Schema on GitHub

JSON Schema

sspm-api-jira-integration-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "JiraIntegrationRequest",
  "description": "JiraIntegrationRequest schema from Palo Alto Networks SaaS Security Posture Management API",
  "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/sspm-api-jira-integration-request-schema.json",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Display name for this integration."
    },
    "jira_url": {
      "type": "string",
      "format": "uri",
      "description": "Base URL of the Jira server or cloud instance."
    },
    "project_key": {
      "type": "string",
      "description": "Jira project key where tickets will be created."
    },
    "issue_type": {
      "type": "string",
      "description": "Jira issue type (e.g., Bug, Task, Story).",
      "default": "Bug"
    },
    "api_token": {
      "type": "string",
      "description": "Jira API token for authentication.",
      "writeOnly": true
    },
    "email": {
      "type": "string",
      "format": "email",
      "description": "Email address associated with the Jira API token."
    },
    "severity_mapping": {
      "type": "object",
      "description": "Mapping from SSPM severity levels to Jira priorities.",
      "additionalProperties": {
        "type": "string"
      }
    }
  },
  "required": [
    "name",
    "jira_url",
    "project_key",
    "api_token",
    "email"
  ]
}