idnits 2.17.1 draft-lange-netmod-iana-timezones-01.txt: Checking boilerplate required by RFC 5378 and the IETF Trust (see https://trustee.ietf.org/license-info): ---------------------------------------------------------------------------- No issues found here. Checking nits according to https://www.ietf.org/id-info/1id-guidelines.txt: ---------------------------------------------------------------------------- No issues found here. Checking nits according to https://www.ietf.org/id-info/checklist : ---------------------------------------------------------------------------- ** The document seems to lack a both a reference to RFC 2119 and the recommended RFC 2119 boilerplate, even if it appears to use RFC 2119 keywords. RFC 2119 keyword, line 1792: '...one" enumeration MUST be updated as de...' RFC 2119 keyword, line 1794: '..."enum" statement MUST be added to the ...' RFC 2119 keyword, line 1796: '...A new enum value MUST be allocated by ...' RFC 2119 keyword, line 1797: '...ry. New entries MAY be placed in any ...' Miscellaneous warnings: ---------------------------------------------------------------------------- == The copyright year in the IETF Trust and authors Copyright Line does not match the current year -- The document date (June 28, 2012) is 4319 days in the past. Is this intentional? Checking references for intended status: Experimental ---------------------------------------------------------------------------- No issues found here. Summary: 1 error (**), 0 flaws (~~), 1 warning (==), 1 comment (--). Run idnits with the --verbose option for more detailed information about the items above. -------------------------------------------------------------------------------- 2 Network Working Group J. Lange 3 Internet-Draft GE Digital Energy 4 Intended status: Experimental June 28, 2012 5 Expires: December 30, 2012 7 IANA Timezone Database YANG Module 8 draft-lange-netmod-iana-timezones-01 10 Abstract 12 This document defines the initial version of the iana-timezones YANG 13 module. 15 Status of this Memo 17 This Internet-Draft is submitted in full conformance with the 18 provisions of BCP 78 and BCP 79. 20 Internet-Drafts are working documents of the Internet Engineering 21 Task Force (IETF). Note that other groups may also distribute 22 working documents as Internet-Drafts. The list of current Internet- 23 Drafts is at http://datatracker.ietf.org/drafts/current/. 25 Internet-Drafts are draft documents valid for a maximum of six months 26 and may be updated, replaced, or obsoleted by other documents at any 27 time. It is inappropriate to use Internet-Drafts as reference 28 material or to cite them other than as "work in progress." 30 This Internet-Draft will expire on December 30, 2012. 32 Copyright Notice 34 Copyright (c) 2012 IETF Trust and the persons identified as the 35 document authors. All rights reserved. 37 This document is subject to BCP 78 and the IETF Trust's Legal 38 Provisions Relating to IETF Documents 39 (http://trustee.ietf.org/license-info) in effect on the date of 40 publication of this document. Please review these documents 41 carefully, as they describe your rights and restrictions with respect 42 to this document. Code Components extracted from this document must 43 include Simplified BSD License text as described in Section 4.e of 44 the Trust Legal Provisions and are provided without warranty as 45 described in the Simplified BSD License. 47 Table of Contents 49 1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . . 3 50 2. IANA Maintained Timezones YANG Module . . . . . . . . . . . . 3 51 3. IANA Considerations . . . . . . . . . . . . . . . . . . . . . 38 52 4. Security Considerations . . . . . . . . . . . . . . . . . . . 39 53 5. Normative References . . . . . . . . . . . . . . . . . . . . . 39 54 Author's Address . . . . . . . . . . . . . . . . . . . . . . . . . 40 56 1. Introduction 58 This document defines the initial version of the iana-timezones YANG 59 module for timezone configuration. 61 The iana-timezones module reflects IANA's existing "timezone 62 database". The latest revision of the module can be obtained from 63 the IANA web site. 65 Whenever a new timezone name is added to the IANA "timezone 66 database", the iana-timezones module is updated by IANA. 68 2. IANA Maintained Timezones YANG Module 70 file "iana-timezones@2012-06-28.yang" 71 module iana-timezones { 72 namespace "urn:ietf:params:xml:ns:yang:iana-timezones"; 73 prefix ianatz; 75 organization "IANA"; 76 contact 77 " Internet Assigned Numbers Authority 79 Postal: ICANN 80 4676 Admiralty Way, Suite 330 81 Marina del Rey, CA 90292 83 Tel: +1 310 823 9358 84 E-Mail: iana&iana.org"; 85 description 86 "This YANG module defines the iana-timezone typedef, which 87 contains YANG definitions for IANA-registered timezones. 89 This YANG module is maintained by IANA, and reflects the 90 IANA Time Zone Database. 91 (http://www.iana.org/time-zones) 93 The latest revision of this YANG module can be obtained from 94 the IANA web site. 96 Copyright (c) 2011 IETF Trust and the persons identified as 97 authors of the code. All rights reserved. 99 Redistribution and use in source and binary forms, with or 100 without modification, is permitted pursuant to, and subject 101 to the license terms contained in, the Simplified BSD License 102 set forth in Section 4.c of the IETF Trust's Legal Provisions 103 Relating to IETF Documents 104 (http://trustee.ietf.org/license-info). 106 This version of this YANG module is part of RFC XXXX; see 107 the RFC itself for full legal notices."; 109 revision 2012-06-28 { 110 description 111 "Initial revision. Using IANA Time Zone Data v. 2012c 112 (Released 2012-03-27)"; 113 reference "RFC XXXX: TITLE"; 114 } 115 typedef iana-timezone { 116 description 117 "A timezone location as defined by the IANA timezone 118 database (http://www.iana.org/time-zones)"; 119 type enumeration { 120 enum "Europe/Andorra" { 121 value 0; 122 } 123 enum "Asia/Dubai" { 124 value 1; 125 } 126 enum "Asia/Kabul" { 127 value 2; 128 } 129 enum "America/Antigua" { 130 value 3; 131 } 132 enum "America/Anguilla" { 133 value 4; 134 } 135 enum "Europe/Tirane" { 136 value 5; 137 } 138 enum "Asia/Yerevan" { 139 value 6; 140 } 141 enum "Africa/Luanda" { 142 value 7; 143 } 144 enum "Antarctica/McMurdo" { 145 value 8; 146 description 147 "McMurdo Station, Ross Island"; 148 } 149 enum "Antarctica/South_Pole" { 150 value 9; 151 description 152 "Amundsen-Scott Station, South Pole"; 153 } 154 enum "Antarctica/Rothera" { 155 value 10; 156 description 157 "Rothera Station, Adelaide Island"; 158 } 159 enum "Antarctica/Palmer" { 160 value 11; 161 description 162 "Palmer Station, Anvers Island"; 163 } 164 enum "Antarctica/Mawson" { 165 value 12; 166 description 167 "Mawson Station, Holme Bay"; 168 } 169 enum "Antarctica/Davis" { 170 value 13; 171 description 172 "Davis Station, Vestfold Hills"; 173 } 174 enum "Antarctica/Casey" { 175 value 14; 176 description 177 "Casey Station, Bailey Peninsula"; 178 } 179 enum "Antarctica/Vostok" { 180 value 15; 181 description 182 "Vostok Station, Lake Vostok"; 183 } 184 enum "Antarctica/DumontDUrville" { 185 value 16; 186 description 187 "Dumont-d'Urville Station, Terre Adelie"; 188 } 189 enum "Antarctica/Syowa" { 190 value 17; 191 description 192 "Syowa Station, E Ongul I"; 193 } 194 enum "Antarctica/Macquarie" { 195 value 18; 196 description 197 "Macquarie Island Station, Macquarie Island"; 198 } 199 enum "America/Argentina/Buenos_Aires" { 200 value 19; 201 description 202 "Buenos Aires (BA, CF)"; 203 } 204 enum "America/Argentina/Cordoba" { 205 value 20; 206 description 207 "most locations (CB, CC, CN, ER, FM, MN, SE, SF)"; 208 } 209 enum "America/Argentina/Salta" { 210 value 21; 211 description 212 "(SA, LP, NQ, RN)"; 213 } 214 enum "America/Argentina/Jujuy" { 215 value 22; 216 description 217 "Jujuy (JY)"; 218 } 219 enum "America/Argentina/Tucuman" { 220 value 23; 221 description 222 "Tucuman (TM)"; 223 } 224 enum "America/Argentina/Catamarca" { 225 value 24; 226 description 227 "Catamarca (CT), Chubut (CH)"; 228 } 229 enum "America/Argentina/La_Rioja" { 230 value 25; 231 description 232 "La Rioja (LR)"; 233 } 234 enum "America/Argentina/San_Juan" { 235 value 26; 236 description 237 "San Juan (SJ)"; 238 } 239 enum "America/Argentina/Mendoza" { 240 value 27; 241 description 242 "Mendoza (MZ)"; 243 } 244 enum "America/Argentina/San_Luis" { 245 value 28; 246 description 247 "San Luis (SL)"; 248 } 249 enum "America/Argentina/Rio_Gallegos" { 250 value 29; 251 description 252 "Santa Cruz (SC)"; 253 } 254 enum "America/Argentina/Ushuaia" { 255 value 30; 256 description 257 "Tierra del Fuego (TF)"; 258 } 259 enum "Pacific/Pago_Pago" { 260 value 31; 261 } 262 enum "Europe/Vienna" { 263 value 32; 264 } 265 enum "Australia/Lord_Howe" { 266 value 33; 267 description 268 "Lord Howe Island"; 269 } 270 enum "Australia/Hobart" { 271 value 34; 272 description 273 "Tasmania - most locations"; 274 } 275 enum "Australia/Currie" { 276 value 35; 277 description 278 "Tasmania - King Island"; 279 } 280 enum "Australia/Melbourne" { 281 value 36; 282 description 283 "Victoria"; 284 } 285 enum "Australia/Sydney" { 286 value 37; 287 description 288 "New South Wales - most locations"; 289 } 290 enum "Australia/Broken_Hill" { 291 value 38; 292 description 293 "New South Wales - Yancowinna"; 294 } 295 enum "Australia/Brisbane" { 296 value 39; 297 description 298 "Queensland - most locations"; 299 } 300 enum "Australia/Lindeman" { 301 value 40; 302 description 303 "Queensland - Holiday Islands"; 304 } 305 enum "Australia/Adelaide" { 306 value 41; 307 description 308 "South Australia"; 309 } 310 enum "Australia/Darwin" { 311 value 42; 312 description 313 "Northern Territory"; 314 } 315 enum "Australia/Perth" { 316 value 43; 317 description 318 "Western Australia - most locations"; 319 } 320 enum "Australia/Eucla" { 321 value 44; 322 description 323 "Western Australia - Eucla area"; 324 } 325 enum "America/Aruba" { 326 value 45; 327 } 328 enum "Europe/Mariehamn" { 329 value 46; 330 } 331 enum "Asia/Baku" { 332 value 47; 333 } 334 enum "Europe/Sarajevo" { 335 value 48; 336 } 337 enum "America/Barbados" { 338 value 49; 339 } 340 enum "Asia/Dhaka" { 341 value 50; 342 } 343 enum "Europe/Brussels" { 344 value 51; 345 } 346 enum "Africa/Ouagadougou" { 347 value 52; 348 } 349 enum "Europe/Sofia" { 350 value 53; 351 } 352 enum "Asia/Bahrain" { 353 value 54; 354 } 355 enum "Africa/Bujumbura" { 356 value 55; 357 } 358 enum "Africa/Porto-Novo" { 359 value 56; 360 } 361 enum "America/St_Barthelemy" { 362 value 57; 363 } 364 enum "Atlantic/Bermuda" { 365 value 58; 366 } 367 enum "Asia/Brunei" { 368 value 59; 369 } 370 enum "America/La_Paz" { 371 value 60; 372 } 373 enum "America/Kralendijk" { 374 value 61; 375 } 376 enum "America/Noronha" { 377 value 62; 378 description 379 "Atlantic islands"; 380 } 381 enum "America/Belem" { 382 value 63; 383 description 384 "Amapa, E Para"; 385 } 386 enum "America/Fortaleza" { 387 value 64; 388 description 389 "NE Brazil (MA, PI, CE, RN, PB)"; 390 } 391 enum "America/Recife" { 392 value 65; 393 description 394 "Pernambuco"; 395 } 396 enum "America/Araguaina" { 397 value 66; 398 description 399 "Tocantins"; 400 } 401 enum "America/Maceio" { 402 value 67; 403 description 404 "Alagoas, Sergipe"; 405 } 406 enum "America/Bahia" { 407 value 68; 408 description 409 "Bahia"; 410 } 411 enum "America/Sao_Paulo" { 412 value 69; 413 description 414 "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)"; 415 } 416 enum "America/Campo_Grande" { 417 value 70; 418 description 419 "Mato Grosso do Sul"; 420 } 421 enum "America/Cuiaba" { 422 value 71; 423 description 424 "Mato Grosso"; 425 } 426 enum "America/Santarem" { 427 value 72; 428 description 429 "W Para"; 430 } 431 enum "America/Porto_Velho" { 432 value 73; 433 description 434 "Rondonia"; 435 } 436 enum "America/Boa_Vista" { 437 value 74; 438 description 439 "Roraima"; 440 } 441 enum "America/Manaus" { 442 value 75; 443 description 444 "E Amazonas"; 445 } 446 enum "America/Eirunepe" { 447 value 76; 448 description 449 "W Amazonas"; 450 } 451 enum "America/Rio_Branco" { 452 value 77; 453 description 454 "Acre"; 455 } 456 enum "America/Nassau" { 457 value 78; 458 } 459 enum "Asia/Thimphu" { 460 value 79; 461 } 462 enum "Africa/Gaborone" { 463 value 80; 464 } 465 enum "Europe/Minsk" { 466 value 81; 467 } 468 enum "America/Belize" { 469 value 82; 470 } 471 enum "America/St_Johns" { 472 value 83; 473 description 474 "Newfoundland Time, including SE Labrador"; 475 } 476 enum "America/Halifax" { 477 value 84; 478 description 479 "Atlantic Time - Nova Scotia (most places), PEI"; 480 } 481 enum "America/Glace_Bay" { 482 value 85; 483 description 484 "Atlantic Time - Nova Scotia - places that did not observe 485 DST 1966-1971"; 486 } 487 enum "America/Moncton" { 488 value 86; 489 description 490 "Atlantic Time - New Brunswick"; 491 } 492 enum "America/Goose_Bay" { 493 value 87; 494 description 495 "Atlantic Time - Labrador - most locations"; 496 } 497 enum "America/Blanc-Sablon" { 498 value 88; 499 description 500 "Atlantic Standard Time - Quebec - Lower North Shore"; 501 } 502 enum "America/Montreal" { 503 value 89; 504 description 505 "Eastern Time - Quebec - most locations"; 506 } 507 enum "America/Toronto" { 508 value 90; 509 description 510 "Eastern Time - Ontario - most locations"; 511 } 512 enum "America/Nipigon" { 513 value 91; 514 description 515 "Eastern Time - Ontario & Quebec - places that did not 516 observe DST 1967-1973"; 517 } 518 enum "America/Thunder_Bay" { 519 value 92; 520 description 521 "Eastern Time - Thunder Bay, Ontario"; 522 } 523 enum "America/Iqaluit" { 524 value 93; 525 description 526 "Eastern Time - east Nunavut - most locations"; 527 } 528 enum "America/Pangnirtung" { 529 value 94; 530 description 531 "Eastern Time - Pangnirtung, Nunavut"; 532 } 533 enum "America/Resolute" { 534 value 95; 535 description 536 "Central Standard Time - Resolute, Nunavut"; 537 } 538 enum "America/Atikokan" { 539 value 96; 540 description 541 "Eastern Standard Time - Atikokan, Ontario and Southampton I, 542 Nunavut"; 543 } 544 enum "America/Rankin_Inlet" { 545 value 97; 546 description 547 "Central Time - central Nunavut"; 548 } 549 enum "America/Winnipeg" { 550 value 98; 551 description 552 "Central Time - Manitoba & west Ontario"; 553 } 554 enum "America/Rainy_River" { 555 value 99; 556 description 557 "Central Time - Rainy River & Fort Frances, Ontario"; 558 } 559 enum "America/Regina" { 560 value 100; 561 description 562 "Central Standard Time - Saskatchewan - most locations"; 563 } 564 enum "America/Swift_Current" { 565 value 101; 566 description 567 "Central Standard Time - Saskatchewan - midwest"; 568 } 569 enum "America/Edmonton" { 570 value 102; 571 description 572 "Mountain Time - Alberta, east British Columbia & west 573 Saskatchewan"; 574 } 575 enum "America/Cambridge_Bay" { 576 value 103; 577 description 578 "Mountain Time - west Nunavut"; 579 } 580 enum "America/Yellowknife" { 581 value 104; 582 description 583 "Mountain Time - central Northwest Territories"; 584 } 585 enum "America/Inuvik" { 586 value 105; 587 description 588 "Mountain Time - west Northwest Territories"; 589 } 590 enum "America/Creston" { 591 value 106; 592 description 593 "Mountain Standard Time - Creston, British Columbia"; 594 } 595 enum "America/Dawson_Creek" { 596 value 107; 597 description 598 "Mountain Standard Time - Dawson Creek & Fort Saint John, 599 British Columbia"; 600 } 601 enum "America/Vancouver" { 602 value 108; 603 description 604 "Pacific Time - west British Columbia"; 605 } 606 enum "America/Whitehorse" { 607 value 109; 608 description 609 "Pacific Time - south Yukon"; 610 } 611 enum "America/Dawson" { 612 value 110; 613 description 614 "Pacific Time - north Yukon"; 615 } 616 enum "Indian/Cocos" { 617 value 111; 618 } 619 enum "Africa/Kinshasa" { 620 value 112; 621 description 622 "west Dem. Rep. of Congo"; 623 } 624 enum "Africa/Lubumbashi" { 625 value 113; 626 description 627 "east Dem. Rep. of Congo"; 628 } 629 enum "Africa/Bangui" { 630 value 114; 632 } 633 enum "Africa/Brazzaville" { 634 value 115; 635 } 636 enum "Europe/Zurich" { 637 value 116; 638 } 639 enum "Africa/Abidjan" { 640 value 117; 641 } 642 enum "Pacific/Rarotonga" { 643 value 118; 644 } 645 enum "America/Santiago" { 646 value 119; 647 description 648 "most locations"; 649 } 650 enum "Pacific/Easter" { 651 value 120; 652 description 653 "Easter Island & Sala y Gomez"; 654 } 655 enum "Africa/Douala" { 656 value 121; 657 } 658 enum "Asia/Shanghai" { 659 value 122; 660 description 661 "east China - Beijing, Guangdong, Shanghai, etc."; 662 } 663 enum "Asia/Harbin" { 664 value 123; 665 description 666 "Heilongjiang (except Mohe), Jilin"; 667 } 668 enum "Asia/Chongqing" { 669 value 124; 670 description 671 "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, 672 etc."; 673 } 674 enum "Asia/Urumqi" { 675 value 125; 676 description 677 "most of Tibet & Xinjiang"; 678 } 679 enum "Asia/Kashgar" { 680 value 126; 681 description 682 "west Tibet & Xinjiang"; 683 } 684 enum "America/Bogota" { 685 value 127; 686 } 687 enum "America/Costa_Rica" { 688 value 128; 689 } 690 enum "America/Havana" { 691 value 129; 692 } 693 enum "Atlantic/Cape_Verde" { 694 value 130; 695 } 696 enum "America/Curacao" { 697 value 131; 698 } 699 enum "Indian/Christmas" { 700 value 132; 701 } 702 enum "Asia/Nicosia" { 703 value 133; 704 } 705 enum "Europe/Prague" { 706 value 134; 707 } 708 enum "Europe/Berlin" { 709 value 135; 710 } 711 enum "Africa/Djibouti" { 712 value 136; 713 } 714 enum "Europe/Copenhagen" { 715 value 137; 716 } 717 enum "America/Dominica" { 718 value 138; 719 } 720 enum "America/Santo_Domingo" { 721 value 139; 722 } 723 enum "Africa/Algiers" { 724 value 140; 725 } 726 enum "America/Guayaquil" { 727 value 141; 728 description 729 "mainland"; 730 } 731 enum "Pacific/Galapagos" { 732 value 142; 733 description 734 "Galapagos Islands"; 735 } 736 enum "Europe/Tallinn" { 737 value 143; 738 } 739 enum "Africa/Cairo" { 740 value 144; 741 } 742 enum "Africa/El_Aaiun" { 743 value 145; 744 } 745 enum "Africa/Asmara" { 746 value 146; 747 } 748 enum "Europe/Madrid" { 749 value 147; 750 description 751 "mainland"; 752 } 753 enum "Africa/Ceuta" { 754 value 148; 755 description 756 "Ceuta & Melilla"; 757 } 758 enum "Atlantic/Canary" { 759 value 149; 760 description 761 "Canary Islands"; 762 } 763 enum "Africa/Addis_Ababa" { 764 value 150; 765 } 766 enum "Europe/Helsinki" { 767 value 151; 768 } 769 enum "Pacific/Fiji" { 770 value 152; 771 } 772 enum "Atlantic/Stanley" { 773 value 153; 774 } 775 enum "Pacific/Chuuk" { 776 value 154; 777 description 778 "Chuuk (Truk) and Yap"; 779 } 780 enum "Pacific/Pohnpei" { 781 value 155; 782 description 783 "Pohnpei (Ponape)"; 784 } 785 enum "Pacific/Kosrae" { 786 value 156; 787 description 788 "Kosrae"; 789 } 790 enum "Atlantic/Faroe" { 791 value 157; 792 } 793 enum "Europe/Paris" { 794 value 158; 795 } 796 enum "Africa/Libreville" { 797 value 159; 798 } 799 enum "Europe/London" { 800 value 160; 801 } 802 enum "America/Grenada" { 803 value 161; 804 } 805 enum "Asia/Tbilisi" { 806 value 162; 807 } 808 enum "America/Cayenne" { 809 value 163; 810 } 811 enum "Europe/Guernsey" { 812 value 164; 813 } 814 enum "Africa/Accra" { 815 value 165; 816 } 817 enum "Europe/Gibraltar" { 818 value 166; 819 } 820 enum "America/Godthab" { 821 value 167; 822 description 823 "most locations"; 825 } 826 enum "America/Danmarkshavn" { 827 value 168; 828 description 829 "east coast, north of Scoresbysund"; 830 } 831 enum "America/Scoresbysund" { 832 value 169; 833 description 834 "Scoresbysund / Ittoqqortoormiit"; 835 } 836 enum "America/Thule" { 837 value 170; 838 description 839 "Thule / Pituffik"; 840 } 841 enum "Africa/Banjul" { 842 value 171; 843 } 844 enum "Africa/Conakry" { 845 value 172; 846 } 847 enum "America/Guadeloupe" { 848 value 173; 849 } 850 enum "Africa/Malabo" { 851 value 174; 852 } 853 enum "Europe/Athens" { 854 value 175; 855 } 856 enum "Atlantic/South_Georgia" { 857 value 176; 858 } 859 enum "America/Guatemala" { 860 value 177; 861 } 862 enum "Pacific/Guam" { 863 value 178; 864 } 865 enum "Africa/Bissau" { 866 value 179; 867 } 868 enum "America/Guyana" { 869 value 180; 870 } 871 enum "Asia/Hong_Kong" { 872 value 181; 874 } 875 enum "America/Tegucigalpa" { 876 value 182; 877 } 878 enum "Europe/Zagreb" { 879 value 183; 880 } 881 enum "America/Port-au-Prince" { 882 value 184; 883 } 884 enum "Europe/Budapest" { 885 value 185; 886 } 887 enum "Asia/Jakarta" { 888 value 186; 889 description 890 "Java & Sumatra"; 891 } 892 enum "Asia/Pontianak" { 893 value 187; 894 description 895 "west & central Borneo"; 896 } 897 enum "Asia/Makassar" { 898 value 188; 899 description 900 "east & south Borneo, Sulawesi (Celebes), Bali, Nusa 901 Tengarra, west Timor"; 902 } 903 enum "Asia/Jayapura" { 904 value 189; 905 description 906 "west New Guinea (Irian Jaya) & Malukus (Moluccas)"; 907 } 908 enum "Europe/Dublin" { 909 value 190; 910 } 911 enum "Asia/Jerusalem" { 912 value 191; 913 } 914 enum "Europe/Isle_of_Man" { 915 value 192; 916 } 917 enum "Asia/Kolkata" { 918 value 193; 919 } 920 enum "Indian/Chagos" { 921 value 194; 923 } 924 enum "Asia/Baghdad" { 925 value 195; 926 } 927 enum "Asia/Tehran" { 928 value 196; 929 } 930 enum "Atlantic/Reykjavik" { 931 value 197; 932 } 933 enum "Europe/Rome" { 934 value 198; 935 } 936 enum "Europe/Jersey" { 937 value 199; 938 } 939 enum "America/Jamaica" { 940 value 200; 941 } 942 enum "Asia/Amman" { 943 value 201; 944 } 945 enum "Asia/Tokyo" { 946 value 202; 947 } 948 enum "Africa/Nairobi" { 949 value 203; 950 } 951 enum "Asia/Bishkek" { 952 value 204; 953 } 954 enum "Asia/Phnom_Penh" { 955 value 205; 956 } 957 enum "Pacific/Tarawa" { 958 value 206; 959 description 960 "Gilbert Islands"; 961 } 962 enum "Pacific/Enderbury" { 963 value 207; 964 description 965 "Phoenix Islands"; 966 } 967 enum "Pacific/Kiritimati" { 968 value 208; 969 description 970 "Line Islands"; 972 } 973 enum "Indian/Comoro" { 974 value 209; 975 } 976 enum "America/St_Kitts" { 977 value 210; 978 } 979 enum "Asia/Pyongyang" { 980 value 211; 981 } 982 enum "Asia/Seoul" { 983 value 212; 984 } 985 enum "Asia/Kuwait" { 986 value 213; 987 } 988 enum "America/Cayman" { 989 value 214; 990 } 991 enum "Asia/Almaty" { 992 value 215; 993 description 994 "most locations"; 995 } 996 enum "Asia/Qyzylorda" { 997 value 216; 998 description 999 "Qyzylorda (Kyzylorda, Kzyl-Orda)"; 1000 } 1001 enum "Asia/Aqtobe" { 1002 value 217; 1003 description 1004 "Aqtobe (Aktobe)"; 1005 } 1006 enum "Asia/Aqtau" { 1007 value 218; 1008 description 1009 "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)"; 1010 } 1011 enum "Asia/Oral" { 1012 value 219; 1013 description 1014 "West Kazakhstan"; 1015 } 1016 enum "Asia/Vientiane" { 1017 value 220; 1018 } 1019 enum "Asia/Beirut" { 1020 value 221; 1021 } 1022 enum "America/St_Lucia" { 1023 value 222; 1024 } 1025 enum "Europe/Vaduz" { 1026 value 223; 1027 } 1028 enum "Asia/Colombo" { 1029 value 224; 1030 } 1031 enum "Africa/Monrovia" { 1032 value 225; 1033 } 1034 enum "Africa/Maseru" { 1035 value 226; 1036 } 1037 enum "Europe/Vilnius" { 1038 value 227; 1039 } 1040 enum "Europe/Luxembourg" { 1041 value 228; 1042 } 1043 enum "Europe/Riga" { 1044 value 229; 1045 } 1046 enum "Africa/Tripoli" { 1047 value 230; 1048 } 1049 enum "Africa/Casablanca" { 1050 value 231; 1051 } 1052 enum "Europe/Monaco" { 1053 value 232; 1054 } 1055 enum "Europe/Chisinau" { 1056 value 233; 1057 } 1058 enum "Europe/Podgorica" { 1059 value 234; 1060 } 1061 enum "America/Marigot" { 1062 value 235; 1063 } 1064 enum "Indian/Antananarivo" { 1065 value 236; 1066 } 1067 enum "Pacific/Majuro" { 1068 value 237; 1069 description 1070 "most locations"; 1071 } 1072 enum "Pacific/Kwajalein" { 1073 value 238; 1074 description 1075 "Kwajalein"; 1076 } 1077 enum "Europe/Skopje" { 1078 value 239; 1079 } 1080 enum "Africa/Bamako" { 1081 value 240; 1082 } 1083 enum "Asia/Rangoon" { 1084 value 241; 1085 } 1086 enum "Asia/Ulaanbaatar" { 1087 value 242; 1088 description 1089 "most locations"; 1090 } 1091 enum "Asia/Hovd" { 1092 value 243; 1093 description 1094 "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan"; 1095 } 1096 enum "Asia/Choibalsan" { 1097 value 244; 1098 description 1099 "Dornod, Sukhbaatar"; 1100 } 1101 enum "Asia/Macau" { 1102 value 245; 1103 } 1104 enum "Pacific/Saipan" { 1105 value 246; 1106 } 1107 enum "America/Martinique" { 1108 value 247; 1109 } 1110 enum "Africa/Nouakchott" { 1111 value 248; 1112 } 1113 enum "America/Montserrat" { 1114 value 249; 1115 } 1116 enum "Europe/Malta" { 1117 value 250; 1118 } 1119 enum "Indian/Mauritius" { 1120 value 251; 1121 } 1122 enum "Indian/Maldives" { 1123 value 252; 1124 } 1125 enum "Africa/Blantyre" { 1126 value 253; 1127 } 1128 enum "America/Mexico_City" { 1129 value 254; 1130 description 1131 "Central Time - most locations"; 1132 } 1133 enum "America/Cancun" { 1134 value 255; 1135 description 1136 "Central Time - Quintana Roo"; 1137 } 1138 enum "America/Merida" { 1139 value 256; 1140 description 1141 "Central Time - Campeche, Yucatan"; 1142 } 1143 enum "America/Monterrey" { 1144 value 257; 1145 description 1146 "Mexican Central Time - Coahuila, Durango, Nuevo Leon, 1147 Tamaulipas away from US border"; 1148 } 1149 enum "America/Matamoros" { 1150 value 258; 1151 description 1152 "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas 1153 near US border"; 1154 } 1155 enum "America/Mazatlan" { 1156 value 259; 1157 description 1158 "Mountain Time - S Baja, Nayarit, Sinaloa"; 1159 } 1160 enum "America/Chihuahua" { 1161 value 260; 1162 description 1163 "Mexican Mountain Time - Chihuahua away from US border"; 1165 } 1166 enum "America/Ojinaga" { 1167 value 261; 1168 description 1169 "US Mountain Time - Chihuahua near US border"; 1170 } 1171 enum "America/Hermosillo" { 1172 value 262; 1173 description 1174 "Mountain Standard Time - Sonora"; 1175 } 1176 enum "America/Tijuana" { 1177 value 263; 1178 description 1179 "US Pacific Time - Baja California near US border"; 1180 } 1181 enum "America/Santa_Isabel" { 1182 value 264; 1183 description 1184 "Mexican Pacific Time - Baja California away from US border"; 1185 } 1186 enum "America/Bahia_Banderas" { 1187 value 265; 1188 description 1189 "Mexican Central Time - Bahia de Banderas"; 1190 } 1191 enum "Asia/Kuala_Lumpur" { 1192 value 266; 1193 description 1194 "peninsular Malaysia"; 1195 } 1196 enum "Asia/Kuching" { 1197 value 267; 1198 description 1199 "Sabah & Sarawak"; 1200 } 1201 enum "Africa/Maputo" { 1202 value 268; 1203 } 1204 enum "Africa/Windhoek" { 1205 value 269; 1206 } 1207 enum "Pacific/Noumea" { 1208 value 270; 1209 } 1210 enum "Africa/Niamey" { 1211 value 271; 1212 } 1213 enum "Pacific/Norfolk" { 1214 value 272; 1215 } 1216 enum "Africa/Lagos" { 1217 value 273; 1218 } 1219 enum "America/Managua" { 1220 value 274; 1221 } 1222 enum "Europe/Amsterdam" { 1223 value 275; 1224 } 1225 enum "Europe/Oslo" { 1226 value 276; 1227 } 1228 enum "Asia/Kathmandu" { 1229 value 277; 1230 } 1231 enum "Pacific/Nauru" { 1232 value 278; 1233 } 1234 enum "Pacific/Niue" { 1235 value 279; 1236 } 1237 enum "Pacific/Auckland" { 1238 value 280; 1239 description 1240 "most locations"; 1241 } 1242 enum "Pacific/Chatham" { 1243 value 281; 1244 description 1245 "Chatham Islands"; 1246 } 1247 enum "Asia/Muscat" { 1248 value 282; 1249 } 1250 enum "America/Panama" { 1251 value 283; 1252 } 1253 enum "America/Lima" { 1254 value 284; 1255 } 1256 enum "Pacific/Tahiti" { 1257 value 285; 1258 description 1259 "Society Islands"; 1260 } 1261 enum "Pacific/Marquesas" { 1262 value 286; 1263 description 1264 "Marquesas Islands"; 1265 } 1266 enum "Pacific/Gambier" { 1267 value 287; 1268 description 1269 "Gambier Islands"; 1270 } 1271 enum "Pacific/Port_Moresby" { 1272 value 288; 1273 } 1274 enum "Asia/Manila" { 1275 value 289; 1276 } 1277 enum "Asia/Karachi" { 1278 value 290; 1279 } 1280 enum "Europe/Warsaw" { 1281 value 291; 1282 } 1283 enum "America/Miquelon" { 1284 value 292; 1285 } 1286 enum "Pacific/Pitcairn" { 1287 value 293; 1288 } 1289 enum "America/Puerto_Rico" { 1290 value 294; 1291 } 1292 enum "Asia/Gaza" { 1293 value 295; 1294 description 1295 "Gaza Strip"; 1296 } 1297 enum "Asia/Hebron" { 1298 value 296; 1299 description 1300 "West Bank"; 1301 } 1302 enum "Europe/Lisbon" { 1303 value 297; 1304 description 1305 "mainland"; 1306 } 1307 enum "Atlantic/Madeira" { 1308 value 298; 1309 description 1310 "Madeira Islands"; 1311 } 1312 enum "Atlantic/Azores" { 1313 value 299; 1314 description 1315 "Azores"; 1316 } 1317 enum "Pacific/Palau" { 1318 value 300; 1319 } 1320 enum "America/Asuncion" { 1321 value 301; 1322 } 1323 enum "Asia/Qatar" { 1324 value 302; 1325 } 1326 enum "Indian/Reunion" { 1327 value 303; 1328 } 1329 enum "Europe/Bucharest" { 1330 value 304; 1331 } 1332 enum "Europe/Belgrade" { 1333 value 305; 1334 } 1335 enum "Europe/Kaliningrad" { 1336 value 306; 1337 description 1338 "Moscow-01 - Kaliningrad"; 1339 } 1340 enum "Europe/Moscow" { 1341 value 307; 1342 description 1343 "Moscow+00 - west Russia"; 1344 } 1345 enum "Europe/Volgograd" { 1346 value 308; 1347 description 1348 "Moscow+00 - Caspian Sea"; 1349 } 1350 enum "Europe/Samara" { 1351 value 309; 1352 description 1353 "Moscow+00 - Samara, Udmurtia"; 1354 } 1355 enum "Asia/Yekaterinburg" { 1356 value 310; 1357 description 1358 "Moscow+02 - Urals"; 1359 } 1360 enum "Asia/Omsk" { 1361 value 311; 1362 description 1363 "Moscow+03 - west Siberia"; 1364 } 1365 enum "Asia/Novosibirsk" { 1366 value 312; 1367 description 1368 "Moscow+03 - Novosibirsk"; 1369 } 1370 enum "Asia/Novokuznetsk" { 1371 value 313; 1372 description 1373 "Moscow+03 - Novokuznetsk"; 1374 } 1375 enum "Asia/Krasnoyarsk" { 1376 value 314; 1377 description 1378 "Moscow+04 - Yenisei River"; 1379 } 1380 enum "Asia/Irkutsk" { 1381 value 315; 1382 description 1383 "Moscow+05 - Lake Baikal"; 1384 } 1385 enum "Asia/Yakutsk" { 1386 value 316; 1387 description 1388 "Moscow+06 - Lena River"; 1389 } 1390 enum "Asia/Vladivostok" { 1391 value 317; 1392 description 1393 "Moscow+07 - Amur River"; 1394 } 1395 enum "Asia/Sakhalin" { 1396 value 318; 1397 description 1398 "Moscow+07 - Sakhalin Island"; 1399 } 1400 enum "Asia/Magadan" { 1401 value 319; 1402 description 1403 "Moscow+08 - Magadan"; 1404 } 1405 enum "Asia/Kamchatka" { 1406 value 320; 1407 description 1408 "Moscow+08 - Kamchatka"; 1409 } 1410 enum "Asia/Anadyr" { 1411 value 321; 1412 description 1413 "Moscow+08 - Bering Sea"; 1414 } 1415 enum "Africa/Kigali" { 1416 value 322; 1417 } 1418 enum "Asia/Riyadh" { 1419 value 323; 1420 } 1421 enum "Pacific/Guadalcanal" { 1422 value 324; 1423 } 1424 enum "Indian/Mahe" { 1425 value 325; 1426 } 1427 enum "Africa/Khartoum" { 1428 value 326; 1429 } 1430 enum "Europe/Stockholm" { 1431 value 327; 1432 } 1433 enum "Asia/Singapore" { 1434 value 328; 1435 } 1436 enum "Atlantic/St_Helena" { 1437 value 329; 1438 } 1439 enum "Europe/Ljubljana" { 1440 value 330; 1441 } 1442 enum "Arctic/Longyearbyen" { 1443 value 331; 1444 } 1445 enum "Europe/Bratislava" { 1446 value 332; 1447 } 1448 enum "Africa/Freetown" { 1449 value 333; 1450 } 1451 enum "Europe/San_Marino" { 1452 value 334; 1454 } 1455 enum "Africa/Dakar" { 1456 value 335; 1457 } 1458 enum "Africa/Mogadishu" { 1459 value 336; 1460 } 1461 enum "America/Paramaribo" { 1462 value 337; 1463 } 1464 enum "Africa/Juba" { 1465 value 338; 1466 } 1467 enum "Africa/Sao_Tome" { 1468 value 339; 1469 } 1470 enum "America/El_Salvador" { 1471 value 340; 1472 } 1473 enum "America/Lower_Princes" { 1474 value 341; 1475 } 1476 enum "Asia/Damascus" { 1477 value 342; 1478 } 1479 enum "Africa/Mbabane" { 1480 value 343; 1481 } 1482 enum "America/Grand_Turk" { 1483 value 344; 1484 } 1485 enum "Africa/Ndjamena" { 1486 value 345; 1487 } 1488 enum "Indian/Kerguelen" { 1489 value 346; 1490 } 1491 enum "Africa/Lome" { 1492 value 347; 1493 } 1494 enum "Asia/Bangkok" { 1495 value 348; 1496 } 1497 enum "Asia/Dushanbe" { 1498 value 349; 1499 } 1500 enum "Pacific/Fakaofo" { 1501 value 350; 1503 } 1504 enum "Asia/Dili" { 1505 value 351; 1506 } 1507 enum "Asia/Ashgabat" { 1508 value 352; 1509 } 1510 enum "Africa/Tunis" { 1511 value 353; 1512 } 1513 enum "Pacific/Tongatapu" { 1514 value 354; 1515 } 1516 enum "Europe/Istanbul" { 1517 value 355; 1518 } 1519 enum "America/Port_of_Spain" { 1520 value 356; 1521 } 1522 enum "Pacific/Funafuti" { 1523 value 357; 1524 } 1525 enum "Asia/Taipei" { 1526 value 358; 1527 } 1528 enum "Africa/Dar_es_Salaam" { 1529 value 359; 1530 } 1531 enum "Europe/Kiev" { 1532 value 360; 1533 description 1534 "most locations"; 1535 } 1536 enum "Europe/Uzhgorod" { 1537 value 361; 1538 description 1539 "Ruthenia"; 1540 } 1541 enum "Europe/Zaporozhye" { 1542 value 362; 1543 description 1544 "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk"; 1545 } 1546 enum "Europe/Simferopol" { 1547 value 363; 1548 description 1549 "central Crimea"; 1550 } 1551 enum "Africa/Kampala" { 1552 value 364; 1553 } 1554 enum "Pacific/Johnston" { 1555 value 365; 1556 description 1557 "Johnston Atoll"; 1558 } 1559 enum "Pacific/Midway" { 1560 value 366; 1561 description 1562 "Midway Islands"; 1563 } 1564 enum "Pacific/Wake" { 1565 value 367; 1566 description 1567 "Wake Island"; 1568 } 1569 enum "America/New_York" { 1570 value 368; 1571 description 1572 "Eastern Time"; 1573 } 1574 enum "America/Detroit" { 1575 value 369; 1576 description 1577 "Eastern Time - Michigan - most locations"; 1578 } 1579 enum "America/Kentucky/Louisville" { 1580 value 370; 1581 description 1582 "Eastern Time - Kentucky - Louisville area"; 1583 } 1584 enum "America/Kentucky/Monticello" { 1585 value 371; 1586 description 1587 "Eastern Time - Kentucky - Wayne County"; 1588 } 1589 enum "America/Indiana/Indianapolis" { 1590 value 372; 1591 description 1592 "Eastern Time - Indiana - most locations"; 1593 } 1594 enum "America/Indiana/Vincennes" { 1595 value 373; 1596 description 1597 "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin 1598 Counties"; 1600 } 1601 enum "America/Indiana/Winamac" { 1602 value 374; 1603 description 1604 "Eastern Time - Indiana - Pulaski County"; 1605 } 1606 enum "America/Indiana/Marengo" { 1607 value 375; 1608 description 1609 "Eastern Time - Indiana - Crawford County"; 1610 } 1611 enum "America/Indiana/Petersburg" { 1612 value 376; 1613 description 1614 "Eastern Time - Indiana - Pike County"; 1615 } 1616 enum "America/Indiana/Vevay" { 1617 value 377; 1618 description 1619 "Eastern Time - Indiana - Switzerland County"; 1620 } 1621 enum "America/Chicago" { 1622 value 378; 1623 description 1624 "Central Time"; 1625 } 1626 enum "America/Indiana/Tell_City" { 1627 value 379; 1628 description 1629 "Central Time - Indiana - Perry County"; 1630 } 1631 enum "America/Indiana/Knox" { 1632 value 380; 1633 description 1634 "Central Time - Indiana - Starke County"; 1635 } 1636 enum "America/Menominee" { 1637 value 381; 1638 description 1639 "Central Time - Michigan - Dickinson, Gogebic, Iron & 1640 Menominee Counties"; 1641 } 1642 enum "America/North_Dakota/Center" { 1643 value 382; 1644 description 1645 "Central Time - North Dakota - Oliver County"; 1646 } 1647 enum "America/North_Dakota/New_Salem" { 1648 value 383; 1649 description 1650 "Central Time - North Dakota - Morton County (except Mandan 1651 area)"; 1652 } 1653 enum "America/North_Dakota/Beulah" { 1654 value 384; 1655 description 1656 "Central Time - North Dakota - Mercer County"; 1657 } 1658 enum "America/Denver" { 1659 value 385; 1660 description 1661 "Mountain Time"; 1662 } 1663 enum "America/Boise" { 1664 value 386; 1665 description 1666 "Mountain Time - south Idaho & east Oregon"; 1667 } 1668 enum "America/Shiprock" { 1669 value 387; 1670 description 1671 "Mountain Time - Navajo"; 1672 } 1673 enum "America/Phoenix" { 1674 value 388; 1675 description 1676 "Mountain Standard Time - Arizona"; 1677 } 1678 enum "America/Los_Angeles" { 1679 value 389; 1680 description 1681 "Pacific Time"; 1682 } 1683 enum "America/Anchorage" { 1684 value 390; 1685 description 1686 "Alaska Time"; 1687 } 1688 enum "America/Juneau" { 1689 value 391; 1690 description 1691 "Alaska Time - Alaska panhandle"; 1692 } 1693 enum "America/Sitka" { 1694 value 392; 1695 description 1696 "Alaska Time - southeast Alaska panhandle"; 1697 } 1698 enum "America/Yakutat" { 1699 value 393; 1700 description 1701 "Alaska Time - Alaska panhandle neck"; 1702 } 1703 enum "America/Nome" { 1704 value 394; 1705 description 1706 "Alaska Time - west Alaska"; 1707 } 1708 enum "America/Adak" { 1709 value 395; 1710 description 1711 "Aleutian Islands"; 1712 } 1713 enum "America/Metlakatla" { 1714 value 396; 1715 description 1716 "Metlakatla Time - Annette Island"; 1717 } 1718 enum "Pacific/Honolulu" { 1719 value 397; 1720 description 1721 "Hawaii"; 1722 } 1723 enum "America/Montevideo" { 1724 value 398; 1725 } 1726 enum "Asia/Samarkand" { 1727 value 399; 1728 description 1729 "west Uzbekistan"; 1730 } 1731 enum "Asia/Tashkent" { 1732 value 400; 1733 description 1734 "east Uzbekistan"; 1735 } 1736 enum "Europe/Vatican" { 1737 value 401; 1738 } 1739 enum "America/St_Vincent" { 1740 value 402; 1741 } 1742 enum "America/Caracas" { 1743 value 403; 1745 } 1746 enum "America/Tortola" { 1747 value 404; 1748 } 1749 enum "America/St_Thomas" { 1750 value 405; 1751 } 1752 enum "Asia/Ho_Chi_Minh" { 1753 value 406; 1754 } 1755 enum "Pacific/Efate" { 1756 value 407; 1757 } 1758 enum "Pacific/Wallis" { 1759 value 408; 1760 } 1761 enum "Pacific/Apia" { 1762 value 409; 1763 } 1764 enum "Asia/Aden" { 1765 value 410; 1766 } 1767 enum "Indian/Mayotte" { 1768 value 411; 1769 } 1770 enum "Africa/Johannesburg" { 1771 value 412; 1772 } 1773 enum "Africa/Lusaka" { 1774 value 413; 1775 } 1776 enum "Africa/Harare" { 1777 value 414; 1778 } 1779 } 1780 } 1781 } 1783 1785 3. IANA Considerations 1787 This document defines the initial version of the IANA-maintained 1788 iana-timezones YANG module. 1790 The iana-timezones module is intended to reflect the IANA "timezone 1791 database". When a timezone location is added to the database, the 1792 "iana-timezone" enumeration MUST be updated as defined in RFC 6020 1793 Section 10 to add the newly created timezone location to the 1794 enumeration. The new "enum" statement MUST be added to the "iana- 1795 timezone" typedef with the same name as the newly added timezone 1796 location. A new enum value MUST be allocated by IANA and applied to 1797 the newly created enum entry. New entries MAY be placed in any order 1798 in the enumeration as long as the previously assigned enumeration 1799 values are not changed. 1801 When the iana-timezones YANG module is updated, a new "revision" 1802 statement must be added. 1804 This document registers one URI in the IETF XML registry [RFC3688]. 1805 Following the format in RFC 3688, the following registration is 1806 requested to be made. 1808 URI: urn:ietf:params:xml:ns:yang:iana-timezones 1810 Registrant Contact: IANA. 1812 XML: N/A, the requested URI is an XML namespace. 1814 This document registers one YANG module in the YANG Module Names 1815 registry [RFC6020]. 1817 name: iana-timezones 1819 namespace: urn:ietf:params:xml:ns:yang:iana-timezones 1821 prefix: ianatz 1823 reference: RFC XXXX 1825 4. Security Considerations 1827 Since this document does not introduce any technology or protocol, 1828 there are no security issues to be considered for this document 1829 itself. 1831 5. Normative References 1833 [RFC3688] Mealling, M., "The IETF XML Registry", BCP 81, RFC 3688, 1834 January 2004. 1836 [RFC6020] Bjorklund, M., "YANG - A Data Modeling Language for the 1837 Network Configuration Protocol (NETCONF)", RFC 6020, 1838 October 2010. 1840 Author's Address 1842 Jeffrey Lange 1843 GE Digital Energy 1845 Email: jeffrey.k.lange@ge.com