Palo Alto Networks · JSON Structure

Sspm Api Jira Integration Request Structure

JiraIntegrationRequest schema from Palo Alto Networks SaaS Security Posture Management API

Type: object Properties: 7 Required: 5
Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

JiraIntegrationRequest is a JSON Structure definition published by Palo Alto Networks, describing 7 properties, of which 5 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name jira_url project_key issue_type api_token email severity_mapping

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-structure/sspm-api-jira-integration-request-structure.json",
  "name": "JiraIntegrationRequest",
  "description": "JiraIntegrationRequest schema from Palo Alto Networks SaaS Security Posture Management API",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Display name for this integration."
    },
    "jira_url": {
      "type": "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."
    },
    "email": {
      "type": "string",
      "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"
  ]
}