Atlassian · Schema

IssueEntityPropertiesForMultiUpdate

An issue ID with entity property values. See [Entity properties](https://developer.atlassian.com/cloud/jira/platform/jira-entity-properties/) for more information.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
issueID integer The ID of the issue.
properties object Entity properties to set on the issue. The maximum length of an issue property value is 32768 characters.
View JSON Schema on GitHub

JSON Schema

atlassian-issueentitypropertiesformultiupdate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IssueEntityPropertiesForMultiUpdate",
  "title": "IssueEntityPropertiesForMultiUpdate",
  "additionalProperties": false,
  "description": "An issue ID with entity property values. See [Entity properties](https://developer.atlassian.com/cloud/jira/platform/jira-entity-properties/) for more information.",
  "maxProperties": 100,
  "minProperties": 1,
  "properties": {
    "issueID": {
      "description": "The ID of the issue.",
      "format": "int64",
      "type": "integer"
    },
    "properties": {
      "additionalProperties": {
        "$ref": "#/components/schemas/JsonNode"
      },
      "description": "Entity properties to set on the issue. The maximum length of an issue property value is 32768 characters.",
      "maxProperties": 10,
      "minProperties": 1,
      "type": "object"
    }
  },
  "type": "object"
}