{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "issue_job_status", "type": "object", "description": "The status of an import or export job", "properties": { "type": { "type": "string" }, "status": { "type": "string", "description": "The status of the import/export job" }, "phase": { "type": "string", "description": "The phase of the import/export job" }, "total": { "type": "integer", "description": "The total number of issues being imported/exported" }, "count": { "type": "integer", "description": "The total number of issues already imported/exported" }, "pct": { "type": "number", "description": "The percentage of issues already imported/exported" } } }