Atlassian · Schema

task

A task object.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
id integer
created_on string
updated_on string
state string
content object
pending boolean
resolved_on string The ISO8601 timestamp for when the task was resolved.
View JSON Schema on GitHub

JSON Schema

atlassian-bitbucket-repositories-task-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "task",
  "type": "object",
  "description": "A task object.",
  "properties": {
    "id": {
      "type": "integer"
    },
    "created_on": {
      "type": "string"
    },
    "updated_on": {
      "type": "string"
    },
    "state": {
      "type": "string"
    },
    "content": {
      "type": "object"
    },
    "pending": {
      "type": "boolean"
    },
    "resolved_on": {
      "type": "string",
      "description": "The ISO8601 timestamp for when the task was resolved."
    }
  }
}