From 5edf0f2b1d78dc229768966df2438f8ba671d9eb Mon Sep 17 00:00:00 2001 From: Allen Porter Date: Wed, 30 Mar 2022 14:48:30 +0000 Subject: [PATCH] Update CalendarEvent table to include a mention of required timezone --- docs/core/entity/calendar.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/core/entity/calendar.md b/docs/core/entity/calendar.md index d59b9dc4..6c6dcbc7 100644 --- a/docs/core/entity/calendar.md +++ b/docs/core/entity/calendar.md @@ -49,10 +49,10 @@ class MyCalendar(CalendarEntity): A `CalendarEvent` represents an individual event on a calendar. -| Name | Type | Default | Description | -| ----------- | ---------------- | ------------ | -------------------------------------------------------------------- | -| start | datetime or date | **Required** | The start (inclusive) of the event. Must be before `end`. Both `start` and `end` must be the same type. | -| end | datetime or date | **Required** | The end (exclusive) of the event. Must be after `start`. | -| summary | string | **Required** | A title or summary of the event. | -| location | string | `None` | A geographic location of the event. | -| description | string | `None` | A detailed description of the event. | +| Name | Type | Default | Description | +| ----------- | ---------------- | ------------ | ----------------------------------------------------------------------------------------------------------------------------------------------- | +| start | datetime or date | **Required** | The start (inclusive) of the event. Must be before `end`. Both `start` and `end` must be the same type. As a datetime, must be in UTC timezone. | +| end | datetime or date | **Required** | The end (exclusive) of the event. Must be after `start`. As a datetime, must be in UTC timezone. | +| summary | string | **Required** | A title or summary of the event. | +| location | string | `None` | A geographic location of the event. | +| description | string | `None` | A detailed description of the event. |