Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejs
titleAdded operation property in content
{
  	"definitions": {
		...
    	"Content": {
			"properties": {
				"operation": {
          			"description": "The operation supported by the ",
          			"type": "string",
          			"enum": ["CREATE", "UPDATE", "DELETE"]
        			}
				...
			}
		}
	}
}
Optional Data field

...

The existing 'data' section in the content should not be provided in the delete event and it should be marked as optional. As we are deleting a mandatory field, the change is still backwards compatible. 

...