> 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 Items # Type: Schedule Item Object # Link: https://dev.wix.com/docs/api-reference/business-solutions/events/event-management/schedule-items/schedule-item-object.md ## Description: Schedule item describes the schedule within an event. Each event may contain multiple schedule items. ## Schema: ```json Type: Schedule Item Object | type: ScheduleItem Description: Schedule item describes the schedule within an event. Each event may contain multiple schedule items. - name: id | type: string | description: Schedule item ID. - name: hidden | type: boolean | description: Whether a schedule item is hidden from guests. - name: name | type: string | description: Schedule item name. - name: timeSlot | type: TimeInterval | description: Time slot of a schedule item. - name: start | type: string | description: Start of the time slot interval, inclusive. - name: seconds | type: string | description: - name: nanos | type: number | description: - name: end | type: string | description: End of the time slot interval, exclusive. - name: timeZoneId | type: string | description: Time zone ID in TZ database format, e.g., `"EST"`, `"America/Los_Angeles"`. Defaults to `"Etc/UTC"` when not set. - name: value | type: string | description: - name: description | type: string | description: Rich text schedule item description. - name: stageName | type: string | description: Stage or room name in which a session takes place. - name: tags | type: Array | description: Schedule item tags. Used to organize the items by a theme. - name: status | type: string | description: Schedule item status. enum: SCHEDULED, CANCELED - name: createdDate | type: string | description: Date and time the schedule item was created. - name: updatedDate | type: string | description: Date and time the schedule item was updated. - name: eventId | type: string | description: Event ID to which the schedule item belongs. - name: draft | type: boolean | description: Whether the schedule item is a draft. ```