Jira · Schema

FieldUpdateOperation

An operation to perform on a field value.

AgileIssue TrackingITSMProject ManagementService Management

Properties

Name Type Description
add string Value to add to the field.
remove string Value to remove from the field.
set string Value to set the field to.
edit string Value to edit in the field.
copy string Value to copy to the field.
View JSON Schema on GitHub

JSON Schema

jira-cloud-platform-rest-field-update-operation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "FieldUpdateOperation",
  "type": "object",
  "description": "An operation to perform on a field value.",
  "properties": {
    "add": {
      "type": "string",
      "description": "Value to add to the field."
    },
    "remove": {
      "type": "string",
      "description": "Value to remove from the field."
    },
    "set": {
      "type": "string",
      "description": "Value to set the field to."
    },
    "edit": {
      "type": "string",
      "description": "Value to edit in the field."
    },
    "copy": {
      "type": "string",
      "description": "Value to copy to the field."
    }
  }
}