{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://gg.qdev.run/api/v1/webhooks.schema.json",
  "title": "GG webhook event",
  "type": "object",
  "required": [
    "id",
    "event_type",
    "record_id",
    "occurred_at",
    "public_url",
    "primary_source_url"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "event_type": {
      "enum": [
        "record.published"
      ]
    },
    "record_id": {
      "type": "string"
    },
    "occurred_at": {
      "type": "string",
      "format": "date-time"
    },
    "public_url": {
      "type": "string",
      "format": "uri"
    },
    "primary_source_url": {
      "type": "string",
      "format": "uri"
    }
  },
  "additionalProperties": true
}
