Palo Alto Networks · Schema

JiraIntegration

JiraIntegration schema from Palo Alto Networks SaaS Security Posture Management API

Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

Properties

Name Type Description
id string Unique identifier of the Jira integration.
name string Display name for the integration.
jira_url string Base URL of the Jira server or cloud instance.
project_key string Jira project key where tickets are created.
issue_type string Jira issue type for created tickets (e.g., Bug, Task).
enabled boolean Whether the integration is actively creating tickets.
created_at string
View JSON Schema on GitHub

JSON Schema

sspm-api-jira-integration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "JiraIntegration",
  "description": "JiraIntegration 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-schema.json",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier of the Jira integration."
    },
    "name": {
      "type": "string",
      "description": "Display name for the 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 are created."
    },
    "issue_type": {
      "type": "string",
      "description": "Jira issue type for created tickets (e.g., Bug, Task)."
    },
    "enabled": {
      "type": "boolean",
      "description": "Whether the integration is actively creating tickets."
    },
    "created_at": {
      "type": "string",
      "format": "date-time"
    }
  }
}