Jira · Schema

StatusDetails

A status in Jira.

AgileIssue TrackingITSMProject ManagementService Management

Properties

Name Type Description
self string
id string
name string The name of the status (e.g., To Do, In Progress, Done).
description string
iconUrl string
View JSON Schema on GitHub

JSON Schema

jira-cloud-platform-rest-status-details-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "StatusDetails",
  "type": "object",
  "description": "A status in Jira.",
  "properties": {
    "self": {
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string",
      "description": "The name of the status (e.g., To Do, In Progress, Done)."
    },
    "description": {
      "type": "string"
    },
    "iconUrl": {
      "type": "string"
    }
  }
}