@tmlmobilidade/go-interfaces-labdb 20260903.2201.22 → 20260904.1059.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -193,6 +193,7 @@ export const ridesTableSchema = {
|
|
|
193
193
|
shape_id: { type: 'LowCardinality(String)' },
|
|
194
194
|
start_time_observed: { type: 'Nullable(Int64) CODEC(DoubleDelta, ZSTD)' },
|
|
195
195
|
start_time_scheduled: { type: 'Int64 CODEC(DoubleDelta, ZSTD)' },
|
|
196
|
+
timezone: { type: 'LowCardinality(String)' },
|
|
196
197
|
trip_id: { type: 'LowCardinality(String)' },
|
|
197
198
|
updated_at: { type: 'Int64 CODEC(DoubleDelta, ZSTD)' },
|
|
198
199
|
vehicle_ids: { type: 'Array(LowCardinality(String))' },
|
|
@@ -201,10 +202,10 @@ export const ridesTableSchema = {
|
|
|
201
202
|
export const eventRideOpportunitiesTableSchema = {
|
|
202
203
|
_id: { type: 'String' },
|
|
203
204
|
agency_id: { type: 'LowCardinality(String)' },
|
|
204
|
-
trip_id: { type: 'LowCardinality(String)' },
|
|
205
|
-
window_start: { type: 'Int64 CODEC(DoubleDelta, ZSTD)' },
|
|
206
|
-
window_end: { type: 'Int64 CODEC(DoubleDelta, ZSTD)' },
|
|
207
205
|
operational_dates: { type: 'Array(UInt32) CODEC(ZSTD)' },
|
|
208
206
|
processing_status: { type: 'LowCardinality(String)' },
|
|
207
|
+
trip_id: { type: 'LowCardinality(String)' },
|
|
209
208
|
updated_at: { type: 'Int64 CODEC(DoubleDelta, ZSTD)' },
|
|
209
|
+
window_end: { type: 'Int64 CODEC(DoubleDelta, ZSTD)' },
|
|
210
|
+
window_start: { type: 'Int64 CODEC(DoubleDelta, ZSTD)' },
|
|
210
211
|
};
|