Skip to content

Commit 25ea186

Browse files
committed
update
1 parent 43176c2 commit 25ea186

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

tinybird/datasources/stripe.datasource

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,18 @@ TOKEN "append" APPEND
22

33
# Refer to https://docs.stripe.com/api/events/object for the event schemas
44

5-
TAGS "sentry"
5+
TAGS "stripe"
66

77
SCHEMA >
88
`id` String `json:$.id`,
99
`object` LowCardinality(String) `json:$.object`,
10-
`api_version` LowCardinality(String) `json:$.api_version`,
10+
`api_version` LowCardinality(String) `json:$.api_version` DEFAULT '',
1111
`created` DateTime `json:$.created`,
1212
`type` LowCardinality(String) `json:$.type`,
1313
`livemode` Bool `json:$.livemode`,
1414
`data` JSON `json:$.data` DEFAULT '{}',
15-
`request` JSON `json:$.request` DEFAULT '{}'
15+
`request` JSON `json:$.request` DEFAULT '{}',
16+
`account` String `json:$.account` DEFAULT ''
1617

1718
ENGINE "MergeTree"
1819
ENGINE_PARTITION_KEY "toYYYYMM(created)"

0 commit comments

Comments
 (0)