Skip to content

Commit c7e688c

Browse files
committed
fix schema
1 parent be9de14 commit c7e688c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tinybird/datasources/vercel_logs.datasource

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ SCHEMA >
88
`id` String `json:$.id`,
99
`message` String `json:$.message`,
1010
`date` DateTime64(3) `json:$.timestamp` DEFAULT now(),
11-
`type` LowCardinality(String) `json:$.type`,
11+
`type` LowCardinality(String) `json:$.type` DEFAULT '',
1212
`request_id` Nullable(String) `json:$.requestId`,
1313
`status_code` Nullable(UInt16) `json:$.statusCode`,
1414
`project_id` String `json:$.projectId` DEFAULT '',
@@ -17,7 +17,7 @@ SCHEMA >
1717
`source` LowCardinality(String) `json:$.source` DEFAULT '',
1818
`host` Nullable(String) `json:$.host`,
1919
`path` Nullable(String) `json:$.path`,
20-
`proxy` JSON `json:$.proxy` DEFAULT '{}',
20+
`proxy` String `json:$.proxy` DEFAULT '',
2121
`level` LowCardinality(String) `json:$.level` DEFAULT '',
2222
`execution_region` Nullable(String) `json:$.executionRegion`,
2323
`environment` Nullable(String) `json:$.environment`,

0 commit comments

Comments
 (0)