Skip to content

Commit b79e01d

Browse files
committed
add stripe
1 parent 21197d5 commit b79e01d

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)