--- title: li-kordiam-schedule description: "Allows a user to select Kordiam platforms and categories that they would like to view in the Kordiam Schedule side panel." --- ## History | Version | Change | | ------- | ------ | | release-2024-11 | Initial support with the rename as replacement for `li-desknet-schedule` | ## Supported Features | Feature | Supported | | ------- | :-------: | | Document | ✔ | | Media | ✗ | | Include | ✗ | | Document Creation Flow | ✗ | | Push Message | ✗ | | Usage Log | ✗ | | Table Dashboard | ✗ | | Display Filter | ✗ | | Search Indexing | ✗ | | System Metadata | ✔ | | Planning System | ✗ | | Webhook Conditions | ✗ | ## Description > [!NOTE] > Added in: [`release-2024-11`](/operations/releases/release-2024-11/). Prior to [`release-2024-11`](/operations/releases/release-2024-11/), `li-kordiam-schedule` was known as [`li-desknet-schedule`](/reference/document/metadata/plugins/li-desknet-schedule/llms.txt). This plugin will allow a user to select Kordiam platforms and categories that they would like to view in the Kordiam Schedule side panel. Once selected the Kordiam button in the editor becomes active and the side panel can be opened. It is possible to lock the schedule to a specific date, as well as filter the Kordiam stories that are displayed. Further details can be found in the [Kordiam Schedule Guide](/guides/integrations/kordiam-schedule/llms.txt). ## Default UI Platform/category select and date input ## Storage Format ```js { platforms: [ { platformId: , categoryId: } ], date: } ``` ## Content Type Config ```js { handle: 'myContentType', // ... metadata: [ { handle: 'myHandle' type: 'li-kordiam-schedule', config: { filters: { linkedDocumentsOnly: true, elementStatusIds: [1, 2, 10322, 10332], publicationStatusIds: [5] }), externalElementIdMetadataPath: 'myExternalSystem.id', automaticPlacementCreationFlowHandle: 'myKordiamGenerateContentFlow' }, ui: { label: 'Kordiam Schedule', config: { placeholder: 'Select a Kordiam platform or category', useDashboard: 'articlesSimple' } } } // ... ] } ```