> 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 ## Article: Introduction ## Article Link: https://dev.wix.com/docs/velo/apis/wix-events-v2/schedule/introduction.md ## Article Content: --- title: Introduction --- # Introduction With the Schedule API you can share the lineup of an event’s activities, presentations, performances, or sessions. Guests can make a personalized agenda with their chosen items by [bookmarking them](https://dev.wix.com/docs/velo/api-reference/wix-events-v2/schedule-bookmarks/introduction.md). The created schedule will appear on your Event Details page. With the Schedule API you can: - Add, delete, update schedule items. - Adjust time of all draft schedule items at once. - Publish or discard draft schedule. - Get the information about schedules. ## Before you begin It’s important to note the following points before starting to code: - Install the **Wix Events & Tickets** app from [Wix App Market](https://www.wix.com/app-market/web-solution/events). - To use the Schedule API, import `{ schedule }` from the `wix-events.v2` module: ```javascript import { schedule } from 'wix-events.v2'; ``` ## Terminology - **Schedule**: A structured plan or timetable that outlines the sequence of activities, presentations, performances, or sessions scheduled to occur during an event. - **Schedule item**: A specific activity, presentation, performance, or session listed within the overall schedule of an event. Each schedule item represents a distinct component of the event's agenda and may include details such as the activity name, time slot, location, and any additional information relevant to the event's program. - **Event**: A gathering organized by an individual or business for a group of people.