{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "definitions": {
    "ProjectChangeType": {
      "enum": [
        "created",
        "updated",
        "deleted"
      ],
      "type": "string"
    }
  },
  "properties": {
    "changeType": {
      "$ref": "#/definitions/ProjectChangeType"
    },
    "projectId": {
      "type": "string"
    }
  },
  "required": [
    "changeType",
    "projectId"
  ],
  "title": "ProjectChangedNotification",
  "type": "object"
}