{
    "title" : "webhook",
    "description" : "The JSON schema that matches webhook.",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "id": "https://api-doc.kimoby.com/json-schemas/webhook.json",
    "type": "object",
    "additionalProperties": false,
    "properties": {
      "id": {
        "type": "string",
        "pattern": "^(wh|WH)[a-zA-Z0-9]{32}$"
      },
      "url": {
        "type": "string",
        "format": "uri"
      },
      "created_at": {
        "type": "string",
        "format": "date-time"
      },
      "updated_at": {
        "type": "string",
        "format": "date-time"
      }
    },
    "requires": [
      "id",
      "url",
      "created_at",
      "updated_at"
    ]
  }