TimezoneItem
A single timezone option for use in timezone pickers.
valuestringrequired
The canonical IANA timezone key. This is the value that should be
stored and sent back to the API in fields like default_timezone
or the timezone field on entry sheet save requests.
Example:
America/Chicagotextstringrequired
Human-readable display label including the timezone's common name, current UTC offset, and IANA key. The UTC offset reflects the current DST state.
Example:
Central Time (UTC-06:00) - America/Chicagotext_shortstringrequired
Shorter display label with just the common name and UTC offset.
Example:
Central Time (UTC-06:00)abbrevstringrequired
Standard timezone abbreviation (e.g. CST, CDT, EST).
Reflects the current DST state.
Example:
CSTcommonbooleanrequired
Whether this is a commonly used timezone. Common timezones are sorted first in the response for prominent display in the UI.
Example:
trueTimezoneItem
{
"value": "America/Chicago",
"text": "Central Time (UTC-06:00) - America/Chicago",
"text_short": "Central Time (UTC-06:00)",
"abbrev": "CST",
"common": true
}