From 276e5a52405dc94a6047780f09f2f59795e01181 Mon Sep 17 00:00:00 2001 From: Miner28_3 Date: Sat, 7 Feb 2026 11:38:38 +0100 Subject: [PATCH] Sets durationInMs to use 64-bit integer format Enhances schema accuracy by specifying a 64-bit integer format for durationInMs, supporting larger duration values and improving data consistency. --- openapi/components/schemas/CalendarEvent.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/openapi/components/schemas/CalendarEvent.yaml b/openapi/components/schemas/CalendarEvent.yaml index 88b32530..81147ca3 100644 --- a/openapi/components/schemas/CalendarEvent.yaml +++ b/openapi/components/schemas/CalendarEvent.yaml @@ -19,6 +19,7 @@ properties: type: string durationInMs: type: integer + format: int64 endsAt: type: string format: date-time