> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Resource: Schedule Time Frames V3 # Type: Schedule Time Frame Object # Link: https://dev.wix.com/docs/api-reference/business-management/calendar/schedule-time-frames-v3/schedule-time-frame-object.md ## Description: Information about the start and end dates of the first and last [events](https://dev.wix.com/docs/rest/business-management/calendar/events-v3/introduction.md) that belong to a [schedule](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/introduction.md) and whether any events follow an unlimited repetition pattern. ## Schema: ```json Type: Schedule Time Frame Object | type: ScheduleTimeFrame Description: Information about the start and end dates of the first and last [events](https://dev.wix.com/docs/rest/business-management/calendar/events-v3/introduction.md) that belong to a [schedule](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/introduction.md) and whether any events follow an unlimited repetition pattern. - name: id | type: string | description: ID of the [schedule](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/schedule-object.md) to which the time frame belongs. - name: value | type: string | description: - name: status | type: string | description: Information about the presence of recurring events within the schedule. Supported values: + `NONE`: No [events](https://dev.wix.com/docs/rest/business-management/calendar/events-v3/event-object.md) are scheduled within the schedule. + `FINITE`: All recurring events within the schedule have a defined end date, or there are no recurring events. + `INFINITE`: At least one recurring event within the schedule has no end date, meaning it follows an unlimited repetition pattern. enum: NONE, FINITE, INFINITE - name: firstEventStartDate | type: ZonedDate | description: Start date of the first [event](https://dev.wix.com/docs/rest/business-management/calendar/events-v3/event-object.md) within the schedule. Identical to `event.start.localDate`. Available only if `status` is set to `FINITE` or `INFINITE`. - name: localDate | type: string | description: Local date time in [ISO-8601 format](https://en.wikipedia.org/wiki/ISO_8601). For example, `2024-01-30T13:30:00`. Wix Calendar APIs ignore seconds. - name: timeZone | type: string | description: Time zone in [IANA tz database format](https://en.wikipedia.org/wiki/Tz_database). For example, `America/New_York`. - name: utcDate | type: string | description: UTC date time in [ISO-8601 format](https://en.wikipedia.org/wiki/ISO_8601). For example, `2024-01-30T13:30:00`. Not available for adjusted date fields. - name: seconds | type: string | description: - name: nanos | type: number | description: - name: lastEventEndDate | type: ZonedDate | description: End date of the last [event](https://dev.wix.com/docs/rest/business-management/calendar/events-v3/event-object.md) belonging to the schedule. Identical to `event.end.localDate`. Available only if `status` is set to `FINITE`. - name: adjustedFirstEventStartDate | type: ZonedDate | description: Start date of the first [event](https://dev.wix.com/docs/rest/business-management/calendar/events-v3/event-object.md) belonging to the schedule, adjusted to `timeZone` of the [site properties](https://dev.wix.com/docs/rest/business-management/site-properties/properties/properties-object.md) or the `timeZone` specified in the request. Identical to `event.adjustedStart.localDate`. - name: adjustedLastEventEndDate | type: ZonedDate | description: End date of the last [event](https://dev.wix.com/docs/rest/business-management/calendar/events-v3/event-object.md) belonging to the schedule, adjusted to `timeZone` of the [site properties](https://dev.wix.com/docs/rest/business-management/site-properties/properties/properties-object.md) or the `timeZone` specified in the request. Identical to `event.adjustedEnd.localDate`. - name: revision | type: string | description: Revision number, which increments by 1 each time the schedule time frame is updated. - name: value | type: string | description: ```