{
"$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"
}