Jira · Schema

IssueUpdateRequest

Request body for editing an issue.

AgileIssue TrackingITSMProject ManagementService Management

Properties

Name Type Description
update object A map of operations to perform on issue fields.
fields object A map of field ID to field value for the issue.
historyMetadata object Metadata about the history entry.
properties array Entity properties to set on the issue.
View JSON Schema on GitHub

JSON Schema

jira-cloud-platform-rest-issue-update-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "IssueUpdateRequest",
  "type": "object",
  "description": "Request body for editing an issue.",
  "properties": {
    "update": {
      "type": "object",
      "description": "A map of operations to perform on issue fields."
    },
    "fields": {
      "type": "object",
      "description": "A map of field ID to field value for the issue."
    },
    "historyMetadata": {
      "type": "object",
      "description": "Metadata about the history entry."
    },
    "properties": {
      "type": "array",
      "description": "Entity properties to set on the issue."
    }
  }
}