Schedule API

This page describes the Schedule API methods you can use to create, configure, and manage the evaluation time frame for the health rules of an application. The metrics associated with a health rule are evaluated according to a schedule that you control. See Health Rule Schedules.

Warning:
  • Syntax validation of the JSON payload is done when creating the schedule.
  • Ensure that you pick a time zone the Time Zone List.

Create a New Schedule

Creates a new schedule with the specified JSON payload. See Property Details.

Resource URL

POST <controller_url>/controller/alerting/rest/v1/applications/<application_id>/schedules

Request/Response Format

JSON

Example

This example creates a health rule schedule that evaluates the health rule once. See Download Examples.

Request
{
"name": "Daily Schedule",
"description": "Daily Schedule",
"timezone": "America/Los_Angeles",
"scheduleConfiguration": {
"scheduleFrequency": "DAILY",
"startTime": "06:00",
"endTime": "18:00"
}
}
Response
{
"id": 62,
"name": "Daily Schedule",
"description": "Daily Schedule",
"timezone": "America/Los_Angeles",
"scheduleConfiguration": {
"scheduleFrequency": "DAILY",
"startTime": "06:00",
"endTime": "18:00"
}
}

Retrieve a List of Schedules for a Given Application

Returns a list of schedule(s) details for a health rule associated with the specified application ID. This API returns the schedule ID, name, and description of the schedule. See Property Details.

Resource URL

GET <controller_url>/controller/alerting/rest/v1/applications/<application_id>/schedules

Response Format

JSON

Example Response

This example returns a list of schedules applicable to a given application ID.

[
{
"id": 62,
"name": "Daily Schedule",
"description": "Daily Schedule",
"timezone": "America/Los_Angeles"
},
{
"id": 12,
"name": "End of Business Hour: 5pm-6pm, Mon-Fri",
"description": "This schedule is active Monday through Friday, during end of business hour",
"timezone": "Asia/Kolkata"
},
{
"id": 61,
"name": "Schedule1",
"description": "Custom Schedule",
"timezone": "America/Los_Angeles"
},
{
"id": 11,
"name": "Weekday lunch: 12pm-1pm, Mon-Fri",
"description": "This schedule is active Monday through Friday, during lunch hour",
"timezone": "Asia/Kolkata"
},
{
"id": 10,
"name": "Weekday mornings: 8am-12pm, Mon-Fri",
"description": "This schedule is active Monday through Friday, during morning hours",
"timezone": "Asia/Kolkata"
},
{
"id": 7,
"name": "Weekdays: 8am-5pm, Mon-Fri",
"description": "This schedule is active Monday through Friday, during business hours",
"timezone": "Asia/Kolkata"
},
{
"id": 9,
"name": "Weekends: 12am-11pm, Sat-Sun",
"description": "This schedule is active all day and night on the weekend",
"timezone": "Asia/Kolkata"
},
{
"id": 8,
"name": "Weeknights: 11pm-6am, Mon-Fri",
"description": "This schedule is active Monday through Friday, during night time batch runs",
"timezone": "Asia/Kolkata"
}
]

Retrieve the Details of a Specified Schedule

Retrieves a schedule with a specified ID. See Property Details.

Resource URL

GET <controller_url>/controller/alerting/rest/v1/applications/<application_id>/schedules/{schedule-id}

Response Format

JSON

Example Response

This example retrieves the details of a schedule. See Download Examples.

{
"id": 12,
"name": "End of Business Hour: 5pm-6pm, Mon-Fri",
"description": "This schedule is active Monday through Friday, during end of business hour",
"timezone": "Asia/Kolkata",
"scheduleConfiguration": {
"scheduleFrequency": "WEEKLY",
"days": [
"MONDAY",
"TUESDAY",
"WEDNESDAY",
"THURSDAY",
"FRIDAY"
],
"startTime": "17:00",
"endTime": "18:00"
}
}

Update a Schedule

Updates an existing schedule with a specified JSON payload. See Property Details.

Resource URL

PUT <controller_url>/controller/alerting/rest/v1/applications/<application_id>/schedules/{schedule-id}

Request/Response Format

JSON

Example

This example updates a schedule that evaluates the health rule once. See Download Examples.

Request
{
"name": "One Time Schedule",
"description": "One Time Schedule",
"timezone": "America/Los_Angeles",
"scheduleConfiguration": {
"scheduleFrequency": "ONE_TIME",
"startTime": "06:00",
"endTime": "18:00",
"startDate": "01/01/2019",
"endDate": "01/01/2019"
}
}
Response

This example confirms that the schedule was updated successfully.

{
"id": 62,
"name": "One Time Schedule",
"description": "One Time Schedule",
"timezone": "America/Los_Angeles",
"scheduleConfiguration": {
"scheduleFrequency": "ONE_TIME",
"startDate": "01/01/2019",
"startTime": "06:00",
"endDate": "01/01/2019",
"endTime": "18:00"
}
}

Delete a Schedule

Delete a schedule with the specified ID. See Property Details.

Resource URL

DELETE <controller_url>/controller/alerting/rest/v1/applications/<application_id>/schedules/{schedule-id}

Response Codes

Code Description
200Fetched successfully
201Created successfully
204Deleted successfully
400Bad request
401Unauthorized
403Forbidden
404Resource not found
409Already exists

Property Details

Schedule

Payload details for the health rule schedule.

Property Name Type Description and Valid Values
id integer

Auto-generated by the system and returned in the response.

It is a ReadOnly value.

name*

string

Name of schedule to be associated with the health rule for evaluation.

Minimum length: 1

description string

Description of the schedule with evaluation details.

Example: Health rules are evaluated daily at 12 noon.

Default value: true

timezone*

string

Timezone Id - Unique identifier of the time zone. See Time Zones.

Example: America/Los_Angeles

scheduleConfiguration*

Property NameTypeDescription
scheduleFrequencystring

The health rule(s) evaluation frequency specified in the schedule.

Enums:

ONE_TIME

DAILY

WEEKLY

MONTHLY_SPECIFIC_DATE

MONTHLY_SPECIFIC_DAY

CUSTOM

OneTimeSchedule

This schedule evaluates the health rule once.

Property NameTypeDescription
scheduleFrequency* stringThe frequency to evaluate the health rule(s). See Enums.
startDate* string

The scheduled start date in DD/MM/YYYY format.

Pattern:

^(?:(?:31(\/|-|\.)(?:0?[13578]|1[02]))\1|(?:(?:29|30)(\/|-|\.)(?:0?[13-9]|1[0-2])\2))(?:(?:1[6-9]|[2-9]\d)?\d{2})$|^(?:29(\/|-|\.)0?2\3(?:(?:(?:1[6-9]|[2-9]\d)?(?:0[48]|[2468][048]|[13579][26])|(?:(?:16|[2468][048]|[3579][26])00))))$|^(?:0?[1-9]|1\d|2[0-8])(\/|-|\.)(?:(?:0?[1-9])|(?:1[0-2]))\4(?:(?:1[6-9]|[2-9]\d)?\d{2})$

startTime* string

The scheduled start time in a 24-hour format.

Pattern:

^([01]\d|2[0-3]):([0-5]\d)$

endDate* string

The scheduled end date in DD/MM/YYYY format.

Pattern:

^(?:(?:31(\/|-|\.)(?:0?[13578]|1[02]))\1|(?:(?:29|30)(\/|-|\.)(?:0?[13-9]|1[0-2])\2))(?:(?:1[6-9]|[2-9]\d)?\d{2})$|^(?:29(\/|-|\.)0?2\3(?:(?:(?:1[6-9]|[2-9]\d)?(?:0[48]|[2468][048]|[13579][26])|(?:(?:16|[2468][048]|[3579][26])00))))$|^(?:0?[1-9]|1\d|2[0-8])(\/|-|\.)(?:(?:0?[1-9])|(?:1[0-2]))\4(?:(?:1[6-9]|[2-9]\d)?\d{2})$

endTime* string

The scheduled end time in a 24-hour format.

Pattern:

^([01]\d|2[0-3]):([0-5]\d)$

DailySchedule

A recurring schedule to evaluate the health rule every day.

Property NameTypeDescription
scheduleFrequency* stringThe frequency to evaluate the health rule(s). See Enums.
startTime* string

The scheduled start time in a 24-hour format.

pattern:

^([01]\d|2[0-3]):([0-5]\d)$

endTime* string

The scheduled end time in a 24-hour format.

pattern:

^([01]\d|2[0-3]):([0-5]\d)$

WeeklySchedule

A recurring schedule to evaluate the health rule every week.

Property NameTypeDescription
scheduleFrequency* stringThe frequency to evaluate the health rule(s). See Enums.
days* string

The day of the week to evaluate the health rule.

minItems: 1

maxItems: 7

Property NameTypeDescription
DayOfWeekstringEnums

SUNDAY

MONDAY

TUESDAY

WEDNESDAY

THURSDAY

FRIDAY

SATURDAY

startTime* string

The scheduled start time in a 24-hour format.

pattern:

^([01]\d|2[0-3]):([0-5]\d)$

endTime* string

The schedule end time in 24-hour format.

pattern:

^([01]\d|2[0-3]):([0-5]\d)$

MonthlySpecificDateSchedule

A recurring schedule to evaluate the health rule every month on a specific date.

Property NameTypeDescription
scheduleFrequency* stringThe frequency to evaluate the health rule(s). See Enums.
startDate* string

The schedule start date in DD/MM/YYYY format.

pattern:

^(?:(?:31(\/|-|\.)(?:0?[13578]|1[02]))\1|(?:(?:29|30)(\/|-|\.)(?:0?[13-9]|1[0-2])\2))(?:(?:1[6-9]|[2-9]\d)?\d{2})$|^(?:29(\/|-|\.)0?2\3(?:(?:(?:1[6-9]|[2-9]\d)?(?:0[48]|[2468][048]|[13579][26])|(?:(?:16|[2468][048]|[3579][26])00))))$|^(?:0?[1-9]|1\d|2[0-8])(\/|-|\.)(?:(?:0?[1-9])|(?:1[0-2]))\4(?:(?:1[6-9]|[2-9]\d)?\d{2})$

startTime* string

The scheduled start time in a 24-hour format.

pattern:

^([01]\d|2[0-3]):([0-5]\d)$

endDate* string

The scheduled end date in DD/MM/YYYY format.

pattern:

^(?:(?:31(\/|-|\.)(?:0?[13578]|1[02]))\1|(?:(?:29|30)(\/|-|\.)(?:0?[13-9]|1[0-2])\2))(?:(?:1[6-9]|[2-9]\d)?\d{2})$|^(?:29(\/|-|\.)0?2\3(?:(?:(?:1[6-9]|[2-9]\d)?(?:0[48]|[2468][048]|[13579][26])|(?:(?:16|[2468][048]|[3579][26])00))))$|^(?:0?[1-9]|1\d|2[0-8])(\/|-|\.)(?:(?:0?[1-9])|(?:1[0-2]))\4(?:(?:1[6-9]|[2-9]\d)?\d{2})$

endTime* string

The scheduled end time in a 24-hour format.

pattern:

^([01]\d|2[0-3]):([0-5]\d)$

MonthlySpecificDaySchedule

A recurring schedule to evaluate the health rule every month on a specific date.

Property NameTypeDescription
scheduleFrequency* stringThe frequency to evaluate the health rule(s). See Enums.
startTime* string

The scheduled start time in a 24-hour format.

pattern:

^([01]\d|2[0-3]):([0-5]\d)$

endTime* string

The schedules end time in a 24-hour format.

pattern:

^([01]\d|2[0-3]):([0-5]\d)$

day* string

The day of the week to evaluate the health rule.

minItems: 1

maxItems: 7

Property NameTypeDescription
DayOfWeekstring

SUNDAY

MONDAY

TUESDAY

WEDNESDAY

THURSDAY

FRIDAY

SATURDAY

occurrence* string

The occurrence of the day within a month.

Enums:

FIRST

SECOND

THIRD

FOURTH

LAST

CustomSchedule

A custom schedule to evaluate the health rule based on specific requirements and timezone. Use UNIX cron expressions to define properties.

Property NameTypeDescription
scheduleFrequency* stringThe frequency to evaluate the health rule(s). See Enums.
startCron* string

The beginning of the UNIX cron expression.

endCron* stringThe end of the UNIX cron expression.

ScheduleSummaryElement

The details of the schedule you have defined that are returned when you retrieve the schedules API.

Property NameTypeDescription
id integer

Auto-generated by the system and returned in the response.

name*

string

Name of the schedule associated with the health rule for evaluation.

description string

Description of the schedule and evaluation details.

timezone* string

Timezone ID - Unique identifier of the time zone.

*This property is required (mandatory).

List of Time Zone IDs

Sl.NoTime Zone
1

ACT

2AET
3AGT
4ART
5AST
6Africa/Abidjan
7Africa/Accra
8Africa/Addis_Ababa
9Africa/Algiers
10Africa/Asmara
11Africa/Asmera
12Africa/Bamako
13Africa/Bangui
14Africa/Banjul
15Africa/Bissau
16Africa/Blantyre
17Africa/Brazzaville
18Africa/Bujumbura
19Africa/Cairo
20Africa/Casablanca
21Africa/Ceuta
22Africa/Conakry
23Africa/Dakar
24Africa/Dar_es_Salaam
25Africa/Djibouti
26Africa/Douala
27Africa/El_Aaiun
28Africa/Freetown
29Africa/Gaborone
30Africa/Harare
31Africa/Johannesburg
32Africa/Juba
33Africa/Kampala
34Africa/Khartoum
35Africa/Kigali
36Africa/Kinshasa
37Africa/Lagos
38Africa/Libreville
39Africa/Lome
40Africa/Luanda
41Africa/Lubumbashi
42Africa/Lusaka
43Africa/Malabo
44Africa/Maputo
45Africa/Maseru
46Africa/Mbabane
47Africa/Mogadishu
48Africa/Monrovia
49Africa/Nairobi
50Africa/Ndjamena
51Africa/Niamey
52Africa/Nouakchott
53Africa/Ouagadougou
54Africa/Porto-Novo
55Africa/Sao_Tome
56Africa/Timbuktu
57Africa/Tripoli
58Africa/Tunis
59Africa/Windhoek
60America/Adak
61America/Anchorage
62America/Anguilla
63America/Antigua
64America/Araguaina
65America/Argentina/Buenos_Aires
66America/Argentina/Catamarca
67America/Argentina/ComodRivadavia
68America/Argentina/Cordoba
69America/Argentina/Jujuy
70America/Argentina/La_Rioja
71America/Argentina/Mendoza
72America/Argentina/Rio_Gallegos
73America/Argentina/Salta
74America/Argentina/San_Juan
75America/Argentina/San_Luis
76America/Argentina/Tucuman
77America/Argentina/Ushuaia
78America/Aruba
79America/Asuncion
80America/Atikokan
81America/Atka
82America/Bahia
83America/Bahia_Banderas
84America/Barbados
85America/Belem
86America/Belize
87America/Blanc-Sablon
88America/Boa_Vista
89America/Bogota
90America/Boise
91America/Buenos_Aires
92America/Cambridge_Bay
93America/Campo_Grande
94America/Cancun
95America/Caracas
96America/Catamarca
97America/Cayenne
98America/Cayman
99America/Chicago
100America/Chihuahua
101America/Coral_Harbour
102America/Cordoba
103America/Costa_Rica
104America/Creston
105America/Cuiaba
106America/Curacao
107America/Danmarkshavn
108America/Dawson
109America/Dawson_Creek
110America/Denver
111America/Detroit
112America/Dominica
113America/Edmonton
114America/Eirunepe
115America/El_Salvador
116America/Ensenada
117America/Fort_Nelson
118America/Fort_Wayne
119America/Fortaleza
120America/Glace_Bay
121America/Godthab
122America/Goose_Bay
123America/Grand_Turk
124America/Grenada
125America/Guadeloupe
126America/Guatemala
127America/Guayaquil
128America/Guyana
129America/Halifax
130America/Havana
131America/Hermosillo
132America/Indiana/Indianapolis
133America/Indiana/Knox
134America/Indiana/Marengo
135America/Indiana/Petersburg
136America/Indiana/Tell_City
137America/Indiana/Vevay
138America/Indiana/Vincennes
139America/Indiana/Winamac
140America/Indianapolis
141America/Inuvik
142America/Iqaluit
143America/Jamaica
144America/Jujuy
145America/Juneau
146America/Kentucky/Louisville
147America/Kentucky/Monticello
148America/Knox_IN
149America/Kralendijk
150America/La_Paz
151America/Lima
152America/Los_Angeles
153America/Louisville
154America/Lower_Princes
155America/Maceio
156America/Managua
157America/Manaus
158America/Marigot
159America/Martinique
160America/Matamoros
161America/Mazatlan
162America/Mendoza
163America/Menominee
164America/Merida
165America/Metlakatla
166America/Mexico_City
167America/Miquelon
168America/Moncton
169America/Monterrey
170America/Montevideo
171America/Montreal
172America/Montserrat
173America/Nassau
174America/New_York
175America/Nipigon
176America/Nome
177America/Noronha
178America/North_Dakota/Beulah
179America/North_Dakota/Center
180America/North_Dakota/New_Salem
181America/Ojinaga
182America/Panama
183America/Pangnirtung
184America/Paramaribo
185America/Phoenix
186America/Port-au-Prince
187America/Port_of_Spain
188America/Porto_Acre
189America/Porto_Velho
190America/Puerto_Rico
191America/Punta_Arenas
192America/Rainy_River
193America/Rankin_Inlet
194America/Recife
195America/Regina
196America/Resolute
197America/Rio_Branco
198America/Rosario
199America/Santa_Isabel
200America/Santarem
201America/Santiago
202America/Santo_Domingo
203America/Sao_Paulo
204America/Scoresbysund
205America/Shiprock
206America/Sitka
207America/St_Barthelemy
208America/St_Johns
209America/St_Kitts
210America/St_Lucia
211America/St_Thomas
212America/St_Vincent
213America/Swift_Current
214America/Tegucigalpa
215America/Thule
216America/Thunder_Bay
217America/Tijuana
218America/Toronto
219America/Tortola
220America/Vancouver
221America/Virgin
222America/Whitehorse
223America/Winnipeg
224America/Yakutat
225America/Yellowknife
226Antarctica/Casey
227Antarctica/Davis
228Antarctica/DumontDUrville
229Antarctica/Macquarie
230Antarctica/Mawson
231Antarctica/McMurdo
232Antarctica/Palmer
233Antarctica/Rothera
234Antarctica/South_Pole
235Antarctica/Syowa
236Antarctica/Troll
237Antarctica/Vostok
238Arctic/Longyearbyen
239Asia/Aden
240Asia/Almaty
241Asia/Amman
242Asia/Anadyr
243Asia/Aqtau
244Asia/Aqtobe
245Asia/Ashgabat
246Asia/Ashkhabad
247Asia/Atyrau
248Asia/Baghdad
249Asia/Bahrain
250Asia/Baku
251Asia/Bangkok
252Asia/Barnaul
253Asia/Beirut
254Asia/Bishkek
255Asia/Brunei
256Asia/Calcutta
257Asia/Chita
258Asia/Choibalsan
259Asia/Chongqing
260Asia/Chungking
261Asia/Colombo
262Asia/Dacca
263Asia/Damascus
264Asia/Dhaka
265Asia/Dili
266Asia/Dubai
267Asia/Dushanbe
268Asia/Famagusta
269Asia/Gaza
270Asia/Harbin
271Asia/Hebron
272Asia/Ho_Chi_Minh
273Asia/Hong_Kong
274Asia/Hovd
275Asia/Irkutsk
276Asia/Istanbul
277Asia/Jakarta
278Asia/Jayapura
279Asia/Jerusalem
280Asia/Kabul
281Asia/Kamchatka
282Asia/Karachi
283Asia/Kashgar
284Asia/Kathmandu
285Asia/Katmandu
286Asia/Khandyga
287Asia/Kolkata
288Asia/Krasnoyarsk
289Asia/Kuala_Lumpur
290Asia/Kuching
291Asia/Kuwait
292Asia/Macao
293Asia/Macau
294Asia/Magadan
295Asia/Makassar
296Asia/Manila
297Asia/Muscat
298Asia/Nicosia
299Asia/Novokuznetsk
300Asia/Novosibirsk
301Asia/Omsk
302Asia/Oral
303Asia/Phnom_Penh
304Asia/Pontianak
305Asia/Pyongyang
306Asia/Qatar
307Asia/Qyzylorda
308Asia/Rangoon
309Asia/Riyadh
310Asia/Saigon
311Asia/Sakhalin
312Asia/Samarkand
313Asia/Seoul
314Asia/Shanghai
315Asia/Singapore
316Asia/Srednekolymsk
317Asia/Taipei
318Asia/Tashkent
319Asia/Tbilisi
320Asia/Tehran
321Asia/Tel_Aviv
322Asia/Thimbu
323Asia/Thimphu
324Asia/Tokyo
325Asia/Tomsk
326Asia/Ujung_Pandang
327Asia/Ulaanbaatar
328Asia/Ulan_Bator
329Asia/Urumqi
330Asia/Ust-Nera
331Asia/Vientiane
332Asia/Vladivostok
333Asia/Yakutsk
334Asia/Yangon
335Asia/Yekaterinburg
336Asia/Yerevan
337Atlantic/Azores
338Atlantic/Bermuda
339Atlantic/Canary
340Atlantic/Cape_Verde
341Atlantic/Faeroe
342Atlantic/Faroe
343Atlantic/Jan_Mayen
344Atlantic/Madeira
345Atlantic/Reykjavik
346Atlantic/South_Georgia
347Atlantic/St_Helena
348Atlantic/Stanley
349Australia/ACT
350Australia/Adelaide
351Australia/Brisbane
352Australia/Broken_Hill
353Australia/Canberra
354Australia/Currie
355Australia/Darwin
356Australia/Eucla
357Australia/Hobart
358Australia/LHI
359Australia/Lindeman
360Australia/Lord_Howe
361Australia/Melbourne
362Australia/NSW
363Australia/North
364Australia/Perth
365Australia/Queensland
366Australia/South
367Australia/Sydney
368Australia/Tasmania
369Australia/Victoria
370Australia/West
371Australia/Yancowinna
372BET
373BST
374Brazil/Acre
375Brazil/DeNoronha
376Brazil/East
377Brazil/West
378CAT
379CET
380CNT
381CST
382CST6CDT
383CTT
384Canada/Atlantic
385Canada/Central
386Canada/Eastern
387Canada/Mountain
388Canada/Newfoundland
389Canada/Pacific
390Canada/Saskatchewan
391Canada/Yukon
392Chile/Continental
393Chile/EasterIsland
394Cuba
395EAT
396ECT
397EET
398EST
399EST5EDT
400Egypt
401Eire
402Etc/GMT
403Etc/GMT+0
404Etc/GMT+1
405Etc/GMT+10
406Etc/GMT+11
407Etc/GMT+12
408Etc/GMT+2
409Etc/GMT+3
410Etc/GMT+4
411Etc/GMT+5
412Etc/GMT+6
413Etc/GMT+7
414Etc/GMT+8
415Etc/GMT+9
416Etc/GMT-0
417Etc/GMT-1
418Etc/GMT-10
419Etc/GMT-11
420Etc/GMT-12
421Etc/GMT-13
422Etc/GMT-14
423Etc/GMT-2
424Etc/GMT-3
425Etc/GMT-4
426Etc/GMT-5
427Etc/GMT-6
428Etc/GMT-7
429Etc/GMT-8
430Etc/GMT-9
431Etc/GMT0
432Etc/Greenwich
433Etc/UCT
434Etc/UTC
435Etc/Universal
436Etc/Zulu
437Europe/Amsterdam
438Europe/Andorra
439Europe/Astrakhan
440Europe/Athens
441Europe/Belfast
442Europe/Belgrade
443Europe/Berlin
444Europe/Bratislava
445Europe/Brussels
446Europe/Bucharest
447Europe/Budapest
448Europe/Busingen
449Europe/Chisinau
450Europe/Copenhagen
451Europe/Dublin
452Europe/Gibraltar
453Europe/Guernsey
454Europe/Helsinki
455Europe/Isle_of_Man
456Europe/Istanbul
457Europe/Jersey
458Europe/Kaliningrad
459Europe/Kiev
460Europe/Kirov
461Europe/Lisbon
462Europe/Ljubljana
463Europe/London
464Europe/Luxembourg
465Europe/Madrid
466Europe/Malta
467Europe/Mariehamn
468Europe/Minsk
469Europe/Monaco
470Europe/Moscow
471Europe/Nicosia
472Europe/Oslo
473Europe/Paris
474Europe/Podgorica
475Europe/Prague
476Europe/Riga
477Europe/Rome
478Europe/Samara
479Europe/San_Marino
480Europe/Sarajevo
481Europe/Saratov
482Europe/Simferopol
483Europe/Skopje
484Europe/Sofia
485Europe/Stockholm
486Europe/Tallinn
487Europe/Tirane
488Europe/Tiraspol
489Europe/Ulyanovsk
490Europe/Uzhgorod
491Europe/Vaduz
492Europe/Vatican
493Europe/Vienna
494Europe/Vilnius
495Europe/Volgograd
496Europe/Warsaw
497Europe/Zagreb
498Europe/Zaporozhye
499Europe/Zurich
500GB
501GB-Eire
502GMT
503GMT0
504Greenwich
505HST
506Hongkong
507IET
508IST
509Iceland
510Indian/Antananarivo
511Indian/Chagos
512Indian/Christmas
513Indian/Cocos
514Indian/Comoro
515Indian/Kerguelen
516Indian/Mahe
517Indian/Maldives
518Indian/Mauritius
519Indian/Mayotte
520Indian/Reunion
521Iran
522Israel
523JST
524Jamaica
525Japan
526Kwajalein
527Libya
528MET
529MIT
530MST
531MST7MDT
532Mexico/BajaNorte
533Mexico/BajaSur
534Mexico/General
535NET
536NST
537NZ
538NZ-CHAT
539Navajo
540PLT
541PNT
542PRC
543PRT
544PST
545PST8PDT
546Pacific/Apia
547Pacific/Auckland
548Pacific/Bougainville
549Pacific/Chatham
550Pacific/Chuuk
551Pacific/Easter
552Pacific/Efate
553Pacific/Enderbury
554Pacific/Fakaofo
555Pacific/Fiji
556Pacific/Funafuti
557Pacific/Galapagos
558Pacific/Gambier
559Pacific/Guadalcanal
560Pacific/Guam
561Pacific/Honolulu
562Pacific/Johnston
563Pacific/Kiritimati
564Pacific/Kosrae
565Pacific/Kwajalein
566Pacific/Majuro
567Pacific/Marquesas
568Pacific/Midway
569Pacific/Nauru
570Pacific/Niue
571Pacific/Norfolk
572Pacific/Noumea
573Pacific/Pago_Pago
574Pacific/Palau
575Pacific/Pitcairn
576Pacific/Pohnpei
577Pacific/Ponape
578Pacific/Port_Moresby
579Pacific/Rarotonga
580Pacific/Saipan
581Pacific/Samoa
582Pacific/Tahiti
583Pacific/Tarawa
584Pacific/Tongatapu
585Pacific/Truk
586Pacific/Wake
587Pacific/Wallis
588Pacific/Yap
589Poland
590Portugal
591ROK
592SST
593Singapore
594SystemV/AST4
595SystemV/AST4ADT
596SystemV/CST6
597SystemV/CST6CDT
598SystemV/EST5
599SystemV/EST5EDT
600SystemV/HST10
601SystemV/MST7
602SystemV/MST7MDT
603SystemV/PST8
604SystemV/PST8PDT
605SystemV/YST9
606SystemV/YST9YDT
607Turkey
608UCT
609US/Alaska
610US/Aleutian
611US/Arizona
612US/Central
613US/East-Indiana
614US/Eastern
615US/Hawaii
616US/Indiana-Starke
617US/Michigan
618US/Mountain
619US/Pacific
620US/Pacific-New
621US/Samoa
622UTC
623Universal
624VST
625W-SU
626WET
627Zulu