Atlassian · Schema

ChangedValue

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
name string
oldValue string
hiddenOldValue string
newValue string
hiddenNewValue string
View JSON Schema on GitHub

JSON Schema

atlassian-changedvalue-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ChangedValue",
  "title": "ChangedValue",
  "required": [
    "name",
    "newValue",
    "oldValue"
  ],
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "oldValue": {
      "type": "string"
    },
    "hiddenOldValue": {
      "type": "string"
    },
    "newValue": {
      "type": "string"
    },
    "hiddenNewValue": {
      "type": "string"
    }
  }
}