Palo Alto Networks · Schema
ExportJobStatus
Status and result of an export job
Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR
Properties
| Name | Type | Description |
|---|---|---|
| job_id | string | Export job identifier |
| status | string | Current job status |
| download_url | string | Signed URL to download the export file (available when COMPLETED) |
| expires_at | string | Expiration time of the download URL |
| error_message | string | Error description if the job failed |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "ExportJobStatus",
"description": "Status and result of an export job",
"$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/prisma-access-insights-api-export-job-status-schema.json",
"type": "object",
"properties": {
"job_id": {
"type": "string",
"description": "Export job identifier"
},
"status": {
"type": "string",
"enum": [
"PENDING",
"RUNNING",
"COMPLETED",
"FAILED"
],
"description": "Current job status"
},
"download_url": {
"type": "string",
"format": "uri",
"description": "Signed URL to download the export file (available when COMPLETED)"
},
"expires_at": {
"type": "string",
"format": "date-time",
"description": "Expiration time of the download URL"
},
"error_message": {
"type": "string",
"description": "Error description if the job failed"
}
}
}