We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3998f7 commit db5dbceCopy full SHA for db5dbce
tinybird/datasources/vercel.datasource
@@ -0,0 +1,16 @@
1
+TOKEN "append" APPEND
2
+
3
+# Refer to https://vercel.com/docs/observability/webhooks-overview#events for the event types and payload schema
4
5
+TAGS "vercel"
6
7
+SCHEMA >
8
+ `type` LowCardinality(String) `json:$.type`,
9
+ `id` String `json:$.id`,
10
+ `date` DateTime64(3) `json:$.created_at` DEFAULT now(),
11
+ `region` LowCardinality(String) `json:$.region`,
12
+ `payload` JSON `json:$.payload` DEFAULT '{}'
13
14
+ENGINE "MergeTree"
15
+ENGINE_PARTITION_KEY "toYYYYMM(date)"
16
+ENGINE_SORTING_KEY "type, date"
0 commit comments