Version: 5.0Item SchemaDefault schema#schema={{ label: 'label', // required value: 'value', // required icon: 'icon', parent: 'parent', selectable: 'selectable', disabled: 'disabled'}}CopyCustomize the schema#You can customize the item keys, therefore you won't need modification.const remoteItems = [ {id: 1, title: 'Item 1', val: 'item-1'}, {id: 2, title: 'Item 2', val: 'item-2'},]; <DropDownPicker schema={{ label: 'title', value: 'val' }} .../>Copy