> ## Documentation Index
> Fetch the complete documentation index at: https://forest-docs-prd-616-workflow-webhook-trigger.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Dropdown with list of values in smart action form

**Context**: Within a smart action form, I want to enable my users to choose the value of an input field within a set of predefined values.

<img src="https://mintcdn.com/forest-docs-prd-616-workflow-webhook-trigger/7CReagZK6gkpGoy9/images/legacy/javascript-agents/image%20(522).png?fit=max&auto=format&n=7CReagZK6gkpGoy9&q=85&s=0c9dd7980cc0ecfce0a225fcbf7a0bdb" alt="" width="2000" height="1239" data-path="images/legacy/javascript-agents/image (522).png" />

Here I have a smart action called `change status` for the collection `companies`. I want users to be able to only select the new status from a list of possible options.

`forest/companies.js`

```javascript theme={null}
const { collection } = require('forest-express-sequelize');

collection('companies', {
  actions: [
    {
      name: 'Change status',
      type: 'single',
      fields: [
        {
          field: 'New status',
          type: 'Enum',
          isRequired: true,
          enums: ['Pending', 'Live'],
        },
      ],
    },
  ],
  fields: [],
  segments: [],
});
```
