Atlassian · Schema

StatusUpdateRequest

The list of statuses that will be updated.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
statuses array The list of statuses that will be updated.
View JSON Schema on GitHub

JSON Schema

atlassian-statusupdaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StatusUpdateRequest",
  "title": "StatusUpdateRequest",
  "additionalProperties": false,
  "description": "The list of statuses that will be updated.",
  "properties": {
    "statuses": {
      "description": "The list of statuses that will be updated.",
      "items": {
        "$ref": "#/components/schemas/StatusUpdate"
      },
      "type": "array"
    }
  },
  "required": [
    "statuses"
  ],
  "type": "object"
}