{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/issue_job_status", "title": "Issue Job Status", "type": "object", "description": "The status of an import or export job", "properties": { "type": { "type": "string", "example": "example_value" }, "status": { "type": "string", "description": "The status of the import/export job", "enum": [ "ACCEPTED", "STARTED", "RUNNING", "FAILURE" ], "example": "ACCEPTED" }, "phase": { "type": "string", "description": "The phase of the import/export job", "example": "example_value" }, "total": { "type": "integer", "description": "The total number of issues being imported/exported", "example": 10 }, "count": { "type": "integer", "description": "The total number of issues already imported/exported", "example": 10 }, "pct": { "type": "number", "description": "The percentage of issues already imported/exported", "minimum": 0, "maximum": 100, "example": 42.5 } }, "additionalProperties": false }