--- title: li-distribution-schedule description: "Allows a user to select Distribution Channels that they would like to view in the Distribution Schedule side panel." --- **Notice**: The li-distribution-schedule plugin is only available if the Planning System is enabled. ## 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 This plugin will allow a user to select Distribution Channels that they would like to view in the Distribution Schedule side panel. Once selected the Schedule button in the editor becomes active and the side panel can be opened. It is possible to lock the schedule to a specific date. ## Default UI Multi-select input for distribution channel selection, and date input ## Storage Format ```js { distributionChannels: [], date: } ``` ## Content Type Config ```js { handle: 'myContentType', // ... metadata: [ { handle: 'myHandle' type: 'li-distribution-schedule', config: { allowFixedDate: true }, ui: { label: 'Distribution Schedule', config: { placeholder: 'Select a Distribution Channel', useDashboard: 'articlesSimple' } } } // ... ] } ```