Atlassian · Schema

ChangedValueBean

Details of names changed in the record event.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
changedFrom string The value of the field before the change.
changedTo string The value of the field after the change.
fieldName string The name of the field changed.
View JSON Schema on GitHub

JSON Schema

atlassian-changedvaluebean-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ChangedValueBean",
  "title": "ChangedValueBean",
  "additionalProperties": false,
  "description": "Details of names changed in the record event.",
  "properties": {
    "changedFrom": {
      "description": "The value of the field before the change.",
      "readOnly": true,
      "type": "string"
    },
    "changedTo": {
      "description": "The value of the field after the change.",
      "readOnly": true,
      "type": "string"
    },
    "fieldName": {
      "description": "The name of the field changed.",
      "readOnly": true,
      "type": "string"
    }
  },
  "type": "object"
}