{ "$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" } } }