{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Change", "title": "Change", "type": "object", "properties": { "type": { "type": "string", "readOnly": true }, "action": { "type": "string", "readOnly": true }, "field": { "type": "string", "readOnly": true }, "before": { "readOnly": true }, "after": { "readOnly": true } }, "required": [ "action", "after", "before", "field", "type" ] }