Palo Alto Networks · JSON Structure

Prisma Access Insights Api Export Job Response Structure

Response from a submitted export job

Type: object Properties: 3
Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

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

Properties

job_id status submitted_at

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-response-structure.json",
  "name": "ExportJobResponse",
  "description": "Response from a submitted export job",
  "type": "object",
  "properties": {
    "job_id": {
      "type": "string",
      "description": "Unique identifier for the export job"
    },
    "status": {
      "type": "string",
      "description": "Current job status",
      "enum": [
        "PENDING",
        "RUNNING",
        "COMPLETED",
        "FAILED"
      ]
    },
    "submitted_at": {
      "type": "datetime",
      "description": "Job submission timestamp"
    }
  }
}