--- title: li-desknet-schedule description: "Allows a user to select Desk-Net platforms and categories that they would like to view in the Desk-Net Schedule side panel." --- ## 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 > [!WARNING] > Desk-Net rebranded as Kordiam. Consequently, `li-desknet-schedule` has been deprecated as of [`release-2024-11`](/operations/releases/release-2024-11/) and will be removed in [`release-2025-05`](/operations/releases/release-2025-05/). Please use [`li-kordiam-schedule`](/reference/document/metadata/plugins/li-kordiam-schedule/llms.txt) instead. For more details, refer to our [Desk-Net to Kordiam migration guide](/guides/integrations/desknet-to-kordiam-migration/llms.txt). This plugin will allow a user to select Desk-Net platforms and categories that they would like to view in the Desk-Net Schedule side panel. Once selected the Desk-Net 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 Desk-Net stories that are displayed. Further details can be found in the [Desk-Net Schedule Guide](/guides/integrations/desknet-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-desknet-schedule', config: { filters: { linkedDocumentsOnly: true, elementStatusIds: [1, 2, 10322, 10332], publicationStatusIds: [5] }), desknetExternalElementIdMetadataPath: 'myExternalSystem.id', automaticPlacementCreationFlowHandle: 'myDesknetGenerateContentFlow' }, ui: { label: 'Desk-Net Schedule', config: { placeholder: 'Select a Desk-Net platform or category', useDashboard: 'articlesSimple' } } } // ... ] } ```