Atlassian · Schema

Status

The status of the item.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
icon object Details of the icon representing the status. If not provided, no status icon displays in Jira.
resolved boolean Whether the item is resolved. If set to "true", the link to the issue is displayed in a strikethrough font, otherwise the link displays in normal font.
View JSON Schema on GitHub

JSON Schema

atlassian-status-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Status",
  "title": "Status",
  "additionalProperties": true,
  "description": "The status of the item.",
  "properties": {
    "icon": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Icon"
        }
      ],
      "description": "Details of the icon representing the status. If not provided, no status icon displays in Jira."
    },
    "resolved": {
      "description": "Whether the item is resolved. If set to \"true\", the link to the issue is displayed in a strikethrough font, otherwise the link displays in normal font.",
      "type": "boolean"
    }
  },
  "type": "object"
}