--- title: li-numeric-list description: "Input for multiple numbers." --- ## 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 Input for multiple numbers. ![Numeric List Example](/reference/document/metadata/li-numeric-list-example.png) ## Storage Format ```js [] ``` ## Content Type Config ```js { handle: 'myContentType', // ... metadata: [ { handle: 'myHandle' type: 'li-numeric-list', config: { // common required: true, // optional, default: false requiredErrorMessage: 'Custom required message', // optional index: true, // optional, default: false. Added in release-2023-07 // specific maxItems: 5, // optional }, ui: { label: 'foo', // optional, takes camelized name otherwise config: { placeholder: 'bar', // optional, takes capitalized handle name otherwise readOnly: true // optional, default: false } } } // ... ] } ```