Atlassian · Schema

DeleteAndReplaceVersionBean

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
customFieldReplacementList array An array of custom field IDs (`customFieldId`) and version IDs (`moveTo`) to update when the fields contain the deleted version.
moveAffectedIssuesTo integer The ID of the version to update `affectedVersion` to when the field contains the deleted version.
moveFixIssuesTo integer The ID of the version to update `fixVersion` to when the field contains the deleted version.
View JSON Schema on GitHub

JSON Schema

atlassian-deleteandreplaceversionbean-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DeleteAndReplaceVersionBean",
  "title": "DeleteAndReplaceVersionBean",
  "additionalProperties": false,
  "properties": {
    "customFieldReplacementList": {
      "description": "An array of custom field IDs (`customFieldId`) and version IDs (`moveTo`) to update when the fields contain the deleted version.",
      "items": {
        "$ref": "#/components/schemas/CustomFieldReplacement"
      },
      "type": "array"
    },
    "moveAffectedIssuesTo": {
      "description": "The ID of the version to update `affectedVersion` to when the field contains the deleted version.",
      "format": "int64",
      "type": "integer"
    },
    "moveFixIssuesTo": {
      "description": "The ID of the version to update `fixVersion` to when the field contains the deleted version.",
      "format": "int64",
      "type": "integer"
    }
  },
  "type": "object"
}