--- title: li-system-date --- ## History | Version | Change | | ------- | ------ | | release-2025-05 | Table dashboard support was added in the `2025-05` release. | ## 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 | ✔ | ## Default UI Date input field as system metadata ## Storage Format ```js ``` ## Content Type Config ```js { handle: 'myContentType', // ... metadata: [ { handle: 'myHandle', type: 'li-system-date', config: { // common hideFromForm: false, // optional, default: false required: true, // optional, default: false requiredErrorMessage: 'Provide a value', // optional translatable: false, // optional, default: false index: true // optional, default: false }, ui: { label: 'foo', // optional, takes camelized name otherwise config: { readOnly: true // optional, default: false } } } // ... ] } ```