{ "$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-api-job-status-structure.json", "name": "JobStatus", "description": "JobStatus schema from Palo Alto Networks Prisma Access Configuration API", "type": "object", "properties": { "id": { "type": "string", "description": "Unique job identifier." }, "type": { "type": "string", "description": "Type of asynchronous job." }, "status": { "type": "string", "description": "Current status of the job.", "enum": [ "pending", "running", "completed", "failed" ] }, "result": { "type": "string", "description": "Final result of the job once completed.", "enum": [ "OK", "FAIL" ] }, "start_ts": { "type": "datetime", "description": "Timestamp when the job started." }, "end_ts": { "type": "datetime", "description": "Timestamp when the job completed." }, "description": { "type": "string", "description": "Job description." }, "details": { "type": "array", "description": "Job status detail messages.", "items": { "type": "string" } } } }