{
    "title" : "webhook_event",
    "description" : "The JSON schema that matches any webhook event.",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "id": "https://api-doc.kimoby.com/json-schemas/webhook_event.json",
    "type": "object",
    "additionalProperties": false,
    "properties": {
      "data": {
        "type": "object"
      },
      "event_name": {
        "type": "string"        
      }      
    },
    "requires": [
      "data",
      "event_name"
    ]
  }