Atlassian · Schema

issue_job_status

The status of an import or export job

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
type string
status string The status of the import/export job
phase string The phase of the import/export job
total integer The total number of issues being imported/exported
count integer The total number of issues already imported/exported
pct number The percentage of issues already imported/exported
View JSON Schema on GitHub

JSON Schema

atlassian-bitbucket-repositories-issue_job_status-schema.json Raw ↑
{
  "$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"
    }
  }
}