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 21197d5 commit b79e01dCopy full SHA for b79e01d
tinybird/datasources/stripe_events.datasource
@@ -0,0 +1,17 @@
1
+DESCRIPTION >
2
+ Stripe Setup Intent Events Data Source - Time series data for tracking Stripe events
3
+
4
+SCHEMA >
5
+ `id` String `json:$.id`,
6
+ `object` LowCardinality(String) `json:$.object`,
7
+ `api_version` LowCardinality(String) `json:$.api_version`,
8
+ `created` DateTime `json:$.created`,
9
+ `type` LowCardinality(String) `json:$.type`,
10
+ `livemode` Bool `json:$.livemode`,
11
+ `data` JSON `json:$.data` DEFAULT '{}',
12
+ `request` JSON `json:$.request` DEFAULT '{}'
13
14
+ENGINE "MergeTree"
15
+ENGINE_PARTITION_KEY "toYYYYMM(created)"
16
+ENGINE_SORTING_KEY "type, created"
17
+ENGINE_SETTINGS "index_granularity=8192"
0 commit comments