Atlassian · Schema

LongTask

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
ari string the ARI for the long task, based on its ID
id string a unique identifier for the long task
links object
View JSON Schema on GitHub

JSON Schema

atlassian-longtask-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LongTask",
  "title": "LongTask",
  "required": [
    "id",
    "links"
  ],
  "type": "object",
  "properties": {
    "ari": {
      "type": "string",
      "description": "the ARI for the long task, based on its ID",
      "example": "example_value"
    },
    "id": {
      "type": "string",
      "description": "a unique identifier for the long task",
      "example": "abc123"
    },
    "links": {
      "type": "object",
      "additionalProperties": true,
      "properties": {
        "status": {
          "type": "string",
          "description": "The URL to retrive status of long task."
        }
      },
      "example": "example_value"
    }
  }
}