Atlassian · Schema

CustomFieldReplacement

Details about the replacement for a deleted version.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
customFieldId integer The ID of the custom field in which to replace the version number.
moveTo integer The version number to use as a replacement for the deleted version.
View JSON Schema on GitHub

JSON Schema

atlassian-customfieldreplacement-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CustomFieldReplacement",
  "title": "CustomFieldReplacement",
  "additionalProperties": false,
  "description": "Details about the replacement for a deleted version.",
  "properties": {
    "customFieldId": {
      "description": "The ID of the custom field in which to replace the version number.",
      "format": "int64",
      "type": "integer"
    },
    "moveTo": {
      "description": "The version number to use as a replacement for the deleted version.",
      "format": "int64",
      "type": "integer"
    }
  },
  "type": "object"
}