Skip to content

Commit 700156c

Browse files
committed
model fix
1 parent d806b40 commit 700156c

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

docs/DatabaseCatalogAPI.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -589,6 +589,10 @@ components:
589589
type: string
590590
example: 2023-07-10T05:59:59+00Z
591591
format: date-time
592+
agency_timezone:
593+
description: The timezone of the agency.
594+
type: string
595+
example: America/Los_Angeles
592596
validation_report:
593597
type: object
594598
properties:
@@ -787,6 +791,10 @@ components:
787791
type: string
788792
example: 2023-07-10T05:59:59+00Z
789793
format: date-time
794+
agency_timezone:
795+
description: The timezone of the agency.
796+
type: string
797+
example: America/Los_Angeles
790798

791799
BoundingBox:
792800
description: Bounding box of the dataset when it was first added to the catalog.

web-app/src/app/services/feeds/types.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -288,6 +288,11 @@ export interface components {
288288
* @example 2023-07-10T05:59:59+00Z
289289
*/
290290
service_date_range_end?: string;
291+
/**
292+
* @description The timezone of the agency.
293+
* @example America/Los_Angeles
294+
*/
295+
agency_timezone?: string;
291296
validation_report?: {
292297
/** @example 10 */
293298
total_error?: number;
@@ -425,6 +430,11 @@ export interface components {
425430
* @example 2023-07-10T05:59:59+00Z
426431
*/
427432
service_date_range_end?: string;
433+
/**
434+
* @description The timezone of the agency.
435+
* @example America/Los_Angeles
436+
*/
437+
agency_timezone?: string;
428438
};
429439
/** @description Bounding box of the dataset when it was first added to the catalog. */
430440
BoundingBox: {

0 commit comments

Comments
 (0)