Field at a glance
Input and output
Input type
Dropdown (select menu)
API output
string (from set of predefined choices)API response example
Field configuration options
Common use cases
- Tracking content status:
draft,review,published,archived - Options to categorize content types:
blog,tutorial,case-study,news,announcement - Difficulty level to indicate skill level:
beginner,intermediate,advanced,expert - Indicate task or content priority and importance:
low,medium,high,critical - Page layout options or template selection:
default,sidebar-left,sidebar-right,full-width - Product attributes:
xs,small,medium,red,blue,black,bonus
Adding options: slugs and choices
When you add an option to the field to be selected, it has two parts:- Choice: What the editor sees in the dropdown
- Slug: What gets stored and returned via API
* are removed, and spaces are converted to hyphens - (kebab-case).
Dropdowns best practices
General principles
- Keep options concise: Short, clear labels work best
- Set sensible defaults: The default should be the most common choice
- Add help text: Explain what each option means if not obvious
- Consider future needs: Will you need to add more options later?
- Document option meanings: Keep a reference of what each value means for your team
Ordering options
Consider how options should be ordered:- Alphabetical: When options are equivalent (colors, categories)
- Sequential: When there’s a progression (beginner → advanced)
- Frequency: Most common first (default, standard, then special cases)
- Workflow: Following a process (draft → review → published)