Palo Alto Networks · JSON Structure

Prisma Access Insights Api Export Job Status Structure

Status and result of an export job

Type: object Properties: 5
Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

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

Properties

job_id status download_url expires_at error_message

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/prisma-access-insights-api-export-job-status-structure.json",
  "name": "ExportJobStatus",
  "description": "Status and result of an export job",
  "type": "object",
  "properties": {
    "job_id": {
      "type": "string",
      "description": "Export job identifier"
    },
    "status": {
      "type": "string",
      "description": "Current job status",
      "enum": [
        "PENDING",
        "RUNNING",
        "COMPLETED",
        "FAILED"
      ]
    },
    "download_url": {
      "type": "uri",
      "description": "Signed URL to download the export file (available when COMPLETED)"
    },
    "expires_at": {
      "type": "datetime",
      "description": "Expiration time of the download URL"
    },
    "error_message": {
      "type": "string",
      "description": "Error description if the job failed"
    }
  }
}