File size: 162,253 Bytes
21626e7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 | [
{
"id": "P-33.01-s1",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "1",
"marginal_note": "Short title",
"part": "",
"division": "",
"heading": "Short Title",
"text": "1 This Act may be cited as the Public Service Employment Act.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 1",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-1.html"
},
{
"id": "P-33.01-s2",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "2",
"marginal_note": "Definitions",
"part": "",
"division": "",
"heading": "Interpretation",
"text": "2\n(1) The following definitions apply in this Act.\nBoard means the Federal Public Sector Labour Relations and Employment Board referred to in subsection 4(1) of the Federal Public Sector Labour Relations and Employment Board Act. (Commission des relations de travail et de l’emploi)\nCommission means the Public Service Commission continued by subsection 4(1). (Commission)\ndepartment means\n(a) an organization named in Schedule I to the Financial Administration Act;\n(b) any other organization that is designated by the Governor in Council as a department for the purposes of this Act; or\n(c) any part of any organization that is designated by the Governor in Council as a department for the purposes of this Act. (ministère)\ndeployment means the transfer of a person from one position to another in accordance with Part 3. (mutation)\ndeputy head\n(a) in relation to an organization named in Schedule I to the Financial Administration Act, its deputy minister;\n(b) in relation to any organization or part of an organization that is designated as a department under this Act, the person that the Governor in Council designates as the deputy head for the purposes of this Act; and\n(c) in relation to any organization named in Schedule IV or V to the Financial Administration Act to which the Commission has the exclusive authority to make appointments, its chief executive officer or, if there is no chief executive officer, its statutory deputy head or, if there is neither, the person designated by the Governor in Council as its deputy head for the purposes of this Act. (administrateur général)\nemployee means a person employed in that part of the public service to which the Commission has exclusive authority to make appointments. (fonctionnaire)\nemployer means\n(a) the Treasury Board, in relation to an organization named in Schedule I or IV to the Financial Administration Act; or\n(b) in relation to a separate agency to which the Commission has exclusive authority to make appointments, that separate agency. (employeur)\nequity-seeking group means a group of persons who are disadvantaged on the basis of one or more prohibited grounds of discrimination within the meaning of the Canadian Human Rights Act. (groupe en quête d’équité)\nexternal appointment process means a process for making one or more appointments in which persons may be considered whether or not they are employed in the public service. (processus de nomination externe)\ninternal appointment process means a process for making one or more appointments in which only persons employed in the public service may be considered. (processus de nomination interne)\nminister, except in section 131, means any minister referred to in section 4.1 of the Salaries Act and any minister of State referred to in the Ministries and Ministers of State Act. (ministre)\norganization means any portion of the federal public administration named in Schedule I, IV or V to the Financial Administration Act. (administration)\npublic service means the several positions in or under\n(a) the departments named in Schedule I to the Financial Administration Act;\n(b) the organizations named in Schedule IV to that Act; and\n(c) the separate agencies named in Schedule V to that Act. (fonction publique)\nseparate agency means an organization named in Schedule V to the Financial Administration Act. (organisme distinct)\nstatutory deputy head means any officer who, by any Act of Parliament, is or is deemed to be a deputy head or who has, or is deemed to have, the rank of a deputy head. (administrateur général au titre de la loi)\nTribunal[Repealed, 2013, c. 40, s. 403]\n(2) [References to deputy head] In this Act, unless the context otherwise requires,\n(a) a reference to a deputy head in relation to an employee shall be construed as a reference to the deputy head of the department or other organization, as the case may be, in which the employee is employed; and\n(b) a reference to a deputy head in relation to an appointment shall be construed as a reference to the deputy head of the department or other organization, as the case may be, in which the appointment is made.\n(3) [References to occupational groups] A reference in this Act to an occupational group shall be construed as a reference to a group or subgroup of employees defined by the employer, and a reference to the executive group shall be construed as a reference to an occupational group or subgroup designated by the employer and consisting of management personnel.\n(4) [References to abuse of authority] For greater certainty, a reference in this Act to abuse of authority shall be construed as including bad faith and personal favouritism.\n(5) [References to error, omission or improper conduct] A reference in this Act to an error, an omission or improper conduct shall be construed as including an error, an omission or improper conduct that results from a bias or barrier that disadvantages persons who belong to any equity-seeking group.",
"history": "2003, c. 22, ss. 12 “2”, 271; 2005, c. 16, s. 17; 2013, c. 40, s. 403; 2017, c. 9, s. 48; 2021, c. 23, s. 277",
"last_amended": "2023-07-01",
"current_to": "2023-07-25",
"citation": "PSEA, s. 2",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-2.html"
},
{
"id": "P-33.01-s3",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "3",
"marginal_note": "Descriptive cross-references",
"part": "",
"division": "",
"heading": "Interpretation",
"text": "3 If, in any provision of this Act, a reference to another provision of this Act is followed by words in parentheses that are descriptive of the subject-matter of the provision referred to, the words in parentheses form no part of the provision in which they occur and are deemed to have been inserted for convenience of reference only.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 3",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-3.html"
},
{
"id": "P-33.01-s4",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "4",
"marginal_note": "Commission continued",
"part": "PART 1 - Public Service Commission, Deputy Heads and Employer",
"division": "",
"heading": "Commission",
"text": "4\n(1) The Public Service Commission is continued, consisting of a President and two or more other Commissioners.\n(2) [Eligibility] In order to be eligible to hold office as a Commissioner, a person must be a Canadian citizen within the meaning of the Citizenship Act or a permanent resident within the meaning of the Immigration and Refugee Protection Act.\n(3) [Full-time or part-time] The President shall serve on a full-time basis and the other Commissioners on a part-time basis.\n(4) [Other employment or activities] Commissioners shall not accept or hold any office or employment, or carry on any activity, that is inconsistent with their functions, and the President shall devote the whole of his or her time to the performance of the President’s functions.\n(5) [Appointment of Commissioners] The President and other Commissioners shall be appointed by the Governor in Council. The appointment of the President shall be made by commission under the Great Seal, after approval by resolution of the Senate and House of Commons.\n(6) [Tenure and term of office] A Commissioner holds office during good behaviour for a term of seven years, but may be removed by the Governor in Council at any time on address of the Senate and House of Commons.\n(7) [Re-appointment] A Commissioner, on the expiration of a first or any subsequent term of office, is eligible to be re-appointed for a further term not exceeding seven years.\n(8) [Oath or affirmation] Before commencing his or her functions, a Commissioner shall take an oath or make a solemn affirmation in the following form before the Clerk of the Privy Council or the person designated by the Clerk:\nI, , do swear (or solemnly affirm) that I will faithfully, truly and impartially, to the best of my judgment, skill and ability, execute and perform the office of (Commissioner or President, as the case may be) of the Public Service Commission. (Add, in the case where an oath is taken, “So help me God” (or name of deity).)",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 4",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-4.html"
},
{
"id": "P-33.01-s5",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "5",
"marginal_note": "Salaries",
"part": "PART 1 - Public Service Commission, Deputy Heads and Employer",
"division": "",
"heading": "Commission",
"text": "5\n(1) The Commissioners shall be paid the remuneration determined by the Governor in Council.\n(2) [Expenses] The Commissioners are entitled to be paid reasonable travel and other expenses incurred by them in the course of their duties while absent from their ordinary place of residence or, in the case of the President, while absent from his or her ordinary place of work.\n(3) [Application of Public Service Superannuation Act] The President is deemed to be employed in the public service for the purposes of the Public Service Superannuation Act.\n(4) [Application of other Acts] The Commissioners are deemed to be employed in the federal public administration for the purposes of the Government Employees Compensation Act and regulations made under section 9 of the Aeronautics Act.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 5",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-5.html"
},
{
"id": "P-33.01-s6",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "6",
"marginal_note": "President",
"part": "PART 1 - Public Service Commission, Deputy Heads and Employer",
"division": "",
"heading": "Commission",
"text": "6\n(1) The President is the chief executive officer of the Commission.\n(2) [Residence] The President shall reside in the National Capital Region as described in the schedule to the National Capital Act or within the distance of it specified by the Governor in Council.\n(3) [Acting President] If the President is absent or unable to act or if the office of President is vacant, the minister designated under section 23 may authorize a Commissioner or other qualified person to act as President for a period not exceeding sixty days, and the Governor in Council may authorize a Commissioner or other qualified person to act as President for any longer period.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 6",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-6.html"
},
{
"id": "P-33.01-s7",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "7",
"marginal_note": "Quorum",
"part": "PART 1 - Public Service Commission, Deputy Heads and Employer",
"division": "",
"heading": "Commission",
"text": "7\n(1) A majority of the Commissioners constitutes a quorum of the Commission.\n(2) [Vacancy] A vacancy in the membership of the Commission does not impair the right of the remaining Commissioners to act.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 7",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-7.html"
},
{
"id": "P-33.01-s8",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "8",
"marginal_note": "Head office",
"part": "PART 1 - Public Service Commission, Deputy Heads and Employer",
"division": "",
"heading": "Commission",
"text": "8 The head office of the Commission shall be in the National Capital Region described in the schedule to the National Capital Act.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 8",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-8.html"
},
{
"id": "P-33.01-s9",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "9",
"marginal_note": "Human resources",
"part": "PART 1 - Public Service Commission, Deputy Heads and Employer",
"division": "",
"heading": "Commission",
"text": "9 The Commission may appoint the persons necessary for the proper conduct of its work in the manner authorized by this Act.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 9",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-9.html"
},
{
"id": "P-33.01-s10",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "10",
"marginal_note": "Experts and advisers",
"part": "PART 1 - Public Service Commission, Deputy Heads and Employer",
"division": "",
"heading": "Commission",
"text": "10\n(1) The Commission may retain on a temporary basis the services of experts or other persons having technical or special knowledge to assist it in an advisory capacity and, subject to the approval of the Treasury Board, fix their remuneration.\n(2) [Application of Public Service Superannuation Act] Persons whose services are retained under subsection (1) are not employed in the public service for the purposes of the Public Service Superannuation Act.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 10",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-10.html"
},
{
"id": "P-33.01-s11",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "11",
"marginal_note": "Mandate",
"part": "PART 1 - Public Service Commission, Deputy Heads and Employer",
"division": "",
"heading": "Mandate and Functions of Commission",
"text": "11 The mandate of the Commission is\n(a) to appoint, or provide for the appointment of, persons to or from within the public service in accordance with this Act;\n(b) to conduct investigations and audits in accordance with this Act; and\n(c) to administer the provisions of this Act relating to political activities of employees and deputy heads.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 11",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-11.html"
},
{
"id": "P-33.01-s12",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "12",
"marginal_note": "Functions assigned by Governor in Council",
"part": "PART 1 - Public Service Commission, Deputy Heads and Employer",
"division": "",
"heading": "Mandate and Functions of Commission",
"text": "12 The Commission shall perform any functions in relation to the public service that are assigned to it by the Governor in Council.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 12",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-12.html"
},
{
"id": "P-33.01-s13",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "13",
"marginal_note": "Delegation to Commissioners and employees",
"part": "PART 1 - Public Service Commission, Deputy Heads and Employer",
"division": "",
"heading": "Mandate and Functions of Commission",
"text": "13 Any power or function of the Commission under this Act, other than under section 20 or 22, may be exercised or performed by any Commissioner or employee of the Commission authorized by the Commission to do so and, if so exercised or performed, is deemed to have been exercised or performed by the Commission.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 13",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-13.html"
},
{
"id": "P-33.01-s14",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "14",
"marginal_note": "Consultation by Commission",
"part": "PART 1 - Public Service Commission, Deputy Heads and Employer",
"division": "",
"heading": "Mandate and Functions of Commission",
"text": "14 The Commission shall, on request or if it considers consultation necessary or desirable, consult with the employer or any employee organization certified as a bargaining agent under the Federal Public Sector Labour Relations Act with respect to policies respecting the manner of making and revoking appointments or with respect to the principles governing lay-offs or priorities for appointment.",
"history": "2003, c. 22, s. 12 “14”; 2017, c. 9, s. 55",
"last_amended": "2017-06-19",
"current_to": "2023-07-25",
"citation": "PSEA, s. 14",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-14.html"
},
{
"id": "P-33.01-s15",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "15",
"marginal_note": "Exercise of powers and functions by deputy heads",
"part": "PART 1 - Public Service Commission, Deputy Heads and Employer",
"division": "",
"heading": "Delegation by Commission to Deputy Heads",
"text": "15\n(1) The Commission may authorize a deputy head to exercise or perform, in relation to his or her organization, in the manner and subject to any terms and conditions that the Commission directs, any of the powers and functions of the Commission under this Act, other than its powers under sections 17, 20 and 22, its power to investigate appointments under sections 66 to 69 and its powers under Part 7.\n(2) [Revision or rescission] Subject to subsection (3), the Commission may revise or rescind an authorization granted under this section.\n(3) [Revocation of appointments] Where the Commission authorizes a deputy head to make appointments pursuant to an internal appointment process, the authorization must include the power to revoke those appointments and to take corrective action whenever the deputy head, after investigation, is satisfied that an error, an omission or improper conduct affected the selection of a person for appointment.\n(4) [Exception] In authorizing a deputy head under subsection (3), the Commission is not required to include the authority to revoke appointments or to take corrective action in circumstances referred to in sections 68 and 69.\n(5) [Commission jurisdiction] The Commission may not revoke an appointment referred to in subsection (3) or take corrective action in relation to such an appointment except in circumstances referred to in sections 68 and 69.\n(6) [Re-appointment on revocation] Where the appointment of a person is revoked by a deputy head acting pursuant to subsection (3), the Commission may appoint that person to another position if the Commission is satisfied that the person meets the essential qualifications referred to in paragraph 30(2)(a).",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 15",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-15.html"
},
{
"id": "P-33.01-s16",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "16",
"marginal_note": "Compliance with appointment policies",
"part": "PART 1 - Public Service Commission, Deputy Heads and Employer",
"division": "",
"heading": "Delegation by Commission to Deputy Heads",
"text": "16 In exercising or performing any of the Commission’s powers and functions pursuant to section 15, a deputy head is subject to any policies established by the Commission under subsection 29(3).",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 16",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-16.html"
},
{
"id": "P-33.01-s17",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "17",
"marginal_note": "Audits by Commission",
"part": "PART 1 - Public Service Commission, Deputy Heads and Employer",
"division": "",
"heading": "Commission Audits",
"text": "17\n(1) The Commission may conduct audits on any matter within its jurisdiction and on the exercise, by deputy heads, of their authority under subsection 30(2) and may make recommendations to deputy heads.\n(2) [Biases and barriers] The power to conduct audits includes the power to determine whether there are biases or barriers that disadvantage persons belonging to any equity-seeking group.",
"history": "2003, c. 22, s. 12 “17”; 2021, c. 23, s. 278",
"last_amended": "2021-06-29",
"current_to": "2023-07-25",
"citation": "PSEA, s. 17",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-17.html"
},
{
"id": "P-33.01-s18",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "18",
"marginal_note": "Powers of Commission",
"part": "PART 1 - Public Service Commission, Deputy Heads and Employer",
"division": "",
"heading": "Commission Audits",
"text": "18 In conducting an audit, the Commission has all the powers of a commissioner under Part I of the Inquiries Act.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 18",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-18.html"
},
{
"id": "P-33.01-s19",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "19",
"marginal_note": "Persons acting for Commission",
"part": "PART 1 - Public Service Commission, Deputy Heads and Employer",
"division": "",
"heading": "Commission Audits",
"text": "19\n(1) The Commission may direct that any audit under section 17 be conducted, in whole or in part, by a Commissioner or any other person.\n(2) [Powers of Commissioner] In relation to a matter before a Commissioner under subsection (1), the Commissioner has the powers referred to in section 18.\n(3) [Powers of other persons] In relation to a matter before a person other than a Commissioner under subsection (1), the person has the powers referred to in section 18 subject to any limitations specified by the Commission.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 19",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-19.html"
},
{
"id": "P-33.01-s20",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "20",
"marginal_note": "Exclusion of positions and persons",
"part": "PART 1 - Public Service Commission, Deputy Heads and Employer",
"division": "",
"heading": "Exclusions from this Act",
"text": "20\n(1) Where the Commission decides that it is neither practicable nor in the best interests of the public service to apply this Act or any of its provisions to any position or person or class of positions or persons, the Commission may, with the approval of the Governor in Council, exclude that position, person or class from the application of this Act or those provisions.\n(2) [Consultation with employer] The Commission shall consult the employer in respect of an exclusion from any provision of this Act whose application is not within the Commission’s jurisdiction.\n(3) [Re-application of provisions to persons or positions] The Commission may, with the approval of the Governor in Council, re-apply any of the provisions of this Act to any position or person, or class of positions or persons, excluded pursuant to subsection (1).",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 20",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-20.html"
},
{
"id": "P-33.01-s21",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "21",
"marginal_note": "Regulations of Governor in Council",
"part": "PART 1 - Public Service Commission, Deputy Heads and Employer",
"division": "",
"heading": "Exclusions from this Act",
"text": "21 The Governor in Council may, on the recommendation of the Commission, make regulations prescribing how any position or person, or class of positions or persons, excluded under section 20 from the application of this Act or any of its provisions is to be dealt with.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 21",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-21.html"
},
{
"id": "P-33.01-s22",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "22",
"marginal_note": "General regulatory power",
"part": "PART 1 - Public Service Commission, Deputy Heads and Employer",
"division": "",
"heading": "Regulations of Commission",
"text": "22\n(1) The Commission may make any regulations that it considers necessary to give effect to the provisions of this Act relating to matters under its jurisdiction.\n(2) [Regulations] Without limiting the generality of subsection (1), the Commission may make regulations\n(a) establishing for any person or class of persons a right to be appointed — in priority to all persons other than those referred to in sections 39.1 and 40 and subsections 41(1) and (4) — during the period specified by the Commission, to any position for which the Commission is satisfied that they meet the essential qualifications referred to in paragraph 30(2)(a);\n(b) determining the order of priority of the rights to appointment established by any regulations made under paragraph (a);\n(c) respecting appointments on an acting basis and the maximum period for which any such appointments or any class of such appointments may be made, and excluding any such appointments or class from the operation of any or all of the provisions of this Act;\n(d) for the purpose of facilitating the implementation of employment equity programs developed by an employer or a deputy head, respecting the appointment to or from within the public service of persons belonging to a designated group within the meaning of section 3 of the Employment Equity Act, and excluding any such persons or any group of such persons from the operation of any or all of the provisions of this Act;\n(e) respecting the appointment of persons within the executive group or to the executive group from within or outside the public service, and excluding any such persons or any class of such persons from the operation of any or all of the provisions of this Act;\n(f) respecting the disclosure of information obtained in the course of an investigation under this Act;\n(g) defining incumbent-based process for the purposes of subsection 34(1);\n(h) prescribing the manner in which and the period within which allegations are to be made, and the manner in which investigations are to be conducted under Part 7;\n(i) respecting the manner of laying off employees and the manner of selecting employees to be laid off, for the purposes of section 64; and\n(j) prescribing circumstances for the purposes of section 50.2.",
"history": "2003, c. 22, s. 12 “22”; 2006, c. 9, s. 100; 2013, c. 18, s. 59; 2015, c. 5, s. 2",
"last_amended": "2015-07-01",
"current_to": "2023-07-25",
"citation": "PSEA, s. 22",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-22.html"
},
{
"id": "P-33.01-s23",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "23",
"marginal_note": "Preparation of report",
"part": "PART 1 - Public Service Commission, Deputy Heads and Employer",
"division": "",
"heading": "Reports — Commission",
"text": "23\n(1) The Commission shall, as soon as possible after the end of each fiscal year, prepare and transmit to the minister designated by the Governor in Council for the purposes of this section a report for that fiscal year in respect of matters under its jurisdiction.\n(2) [Tabling in Parliament] The minister to whom the report is transmitted shall cause the report to be laid before each House of Parliament within the first fifteen days on which that House is sitting after the minister receives it.\n(3) [Special reports] The Commission may, at any time, make a special report to Parliament referring to and commenting on any matter within the scope of the powers and functions of the Commission where, in the opinion of the Commission, the matter is of such urgency or importance that a report on it should not be deferred until the time provided for transmission of the next annual report of the Commission.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 23",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-23.html"
},
{
"id": "P-33.01-s24",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "24",
"marginal_note": "Delegation by deputy head",
"part": "PART 1 - Public Service Commission, Deputy Heads and Employer",
"division": "",
"heading": "Deputy Heads",
"text": "24\n(1) Subject to subsection (2), a deputy head may authorize any person to exercise or perform any of the powers and functions conferred on the deputy head by this Act.\n(2) [Subdelegation by deputy head] Where the Commission has authorized a deputy head under subsection 15(1) to exercise or perform any of the Commission’s powers and functions, the deputy head may — subject to the Commission’s approval and any terms and conditions specified under that subsection — authorize another person to exercise or perform any of those powers or functions, other than the power to revoke appointments.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 24",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-24.html"
},
{
"id": "P-33.01-s25",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "25",
"marginal_note": "Acting deputy head",
"part": "PART 1 - Public Service Commission, Deputy Heads and Employer",
"division": "",
"heading": "Deputy Heads",
"text": "25 In the absence of the deputy head of a department or other organization, the powers and functions of the deputy head may be exercised by the person designated by the deputy head to act in his or her absence or, if no person has been so designated or there is no deputy head,\n(a) the person designated by the person who, under the Financial Administration Act, is the appropriate Minister with respect to that department or other organization; or\n(b) any other person designated by the Governor in Council.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 25",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-25.html"
},
{
"id": "P-33.01-s26",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "26",
"marginal_note": "Regulations of Treasury Board",
"part": "PART 1 - Public Service Commission, Deputy Heads and Employer",
"division": "",
"heading": "Regulations and Policies of Employer",
"text": "26\n(1) The Treasury Board may, in respect of organizations named in Schedule I or IV to the Financial Administration Act, make regulations\n(a) respecting deployments;\n(b) defining the word promotion for the purposes of subsection 51(5);\n(c) establishing periods of probation for the purposes of subsection 61(1) and notice periods for the purposes of subsection 62(1); and\n(d) in respect of any occupational group or part of one, extending or changing to levels the provisions of this Act that apply to positions.\n(2) [Policies of separate agencies] A separate agency to which the Commission has exclusive authority to make appointments may make policies for the purposes referred to in subsection (1) in respect of the separate agency.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 26",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-26.html"
},
{
"id": "P-33.01-s27",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "27",
"marginal_note": "Consultation by employer",
"part": "PART 1 - Public Service Commission, Deputy Heads and Employer",
"division": "",
"heading": "Regulations and Policies of Employer",
"text": "27 An employer shall, on request or if it considers consultation necessary or desirable,\n(a) consult with the Commission, or any employee organization certified as a bargaining agent under the Federal Public Sector Labour Relations Act, with respect to regulations made under paragraph 26(1)(b) or (d) or corresponding policies made under subsection 26(2), as the case may be; and\n(b) consult with any employee organization so certified with respect to regulations made under paragraph 26(1)(a) or (c) or corresponding policies made under subsection 26(2), as the case may be, or with respect to any standards established under subsection 31(1).",
"history": "2003, c. 22, s. 12 “27”; 2017, c. 9, s. 55",
"last_amended": "2017-06-19",
"current_to": "2023-07-25",
"citation": "PSEA, s. 27",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-27.html"
},
{
"id": "P-33.01-s28",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "28",
"marginal_note": "",
"part": "PART 1 - Public Service Commission, Deputy Heads and Employer",
"division": "",
"heading": "Regulations and Policies of Employer",
"text": "28 [Repealed, 2012, c. 19, s. 222]",
"history": "",
"last_amended": "2012-06-29",
"current_to": "2023-07-25",
"citation": "PSEA, s. 28",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-28.html"
},
{
"id": "P-33.01-s29",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "29",
"marginal_note": "Commission’s exclusive authority",
"part": "PART 2 - Appointments",
"division": "",
"heading": "Authority to Appoint",
"text": "29\n(1) Except as provided in this Act, the Commission has the exclusive authority to make appointments, to or from within the public service, of persons for whose appointment there is no authority in or under any other Act of Parliament.\n(2) [Request of deputy head] The Commission’s authority under subsection (1) may only be exercised at the request of the deputy head of the organization to which the appointment is to be made.\n(3) [Commission policies] The Commission may establish policies respecting the manner of making and revoking appointments and taking corrective action.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 29",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-29.html"
},
{
"id": "P-33.01-s30",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "30",
"marginal_note": "Appointment on basis of merit",
"part": "PART 2 - Appointments",
"division": "",
"heading": "Basis of Appointment",
"text": "30\n(1) Appointments by the Commission to or from within the public service shall be made on the basis of merit and must be free from political influence.\n(2) [Meaning of merit] An appointment is made on the basis of merit when\n(a) the Commission is satisfied that the person to be appointed meets the essential qualifications for the work to be performed, as established by the deputy head, including official language proficiency; and\n(b) the Commission has regard to\n(i) any additional qualifications that the deputy head may consider to be an asset for the work to be performed, or for the organization, currently or in the future,\n(ii) any current or future operational requirements of the organization that may be identified by the deputy head, and\n(iii) any current or future needs of the organization that may be identified by the deputy head.\n(3) [Needs of public service] The current and future needs of the organization referred to in subparagraph (2)(b)(iii) may include current and future needs of the public service, as identified by the employer, that the deputy head determines to be relevant to the organization.\n(4) [Interpretation] The Commission is not required to consider more than one person in order for an appointment to be made on the basis of merit.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 30",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-30.html"
},
{
"id": "P-33.01-s31",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "31",
"marginal_note": "Qualification standards",
"part": "PART 2 - Appointments",
"division": "",
"heading": "Basis of Appointment",
"text": "31\n(1) The employer may establish qualification standards, in relation to education, knowledge, experience, occupational certification, language or other qualifications, that the employer considers necessary or desirable having regard to the nature of the work to be performed and the present and future needs of the public service.\n(2) [Qualifications] The qualifications referred to in paragraph 30(2)(a) and subparagraph 30(2)(b)(i) must meet or exceed any applicable qualification standards established by the employer under subsection (1).\n(3) [Identification of biases and barriers] When establishing or reviewing qualification standards, the employer shall conduct an evaluation to identify whether they include or create biases or barriers that disadvantage persons belonging to any equity-seeking group. If a bias or barrier is identified in the course of the evaluation, the employer shall make reasonable efforts to remove it or to mitigate its impact on those persons.",
"history": "2003, c. 22, s. 12 “31”; 2021, c. 23, s. 279",
"last_amended": "2021-06-29",
"current_to": "2023-07-25",
"citation": "PSEA, s. 31",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-31.html"
},
{
"id": "P-33.01-s32",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "32",
"marginal_note": "Professional development programs",
"part": "PART 2 - Appointments",
"division": "",
"heading": "Basis of Appointment",
"text": "32 In respect of appointments made within the framework of any professional development or apprenticeship program that is offered across departments and other organizations, the qualifications, requirements and needs referred to in subsection 30(2) are established or identified by the Treasury Board with respect to organizations for which the Treasury Board is the employer.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 32",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-32.html"
},
{
"id": "P-33.01-s33",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "33",
"marginal_note": "Appointment processes",
"part": "PART 2 - Appointments",
"division": "",
"heading": "Basis of Appointment",
"text": "33 In making an appointment, the Commission may use an advertised or non-advertised appointment process.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 33",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-33.html"
},
{
"id": "P-33.01-s34",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "34",
"marginal_note": "Area of selection",
"part": "PART 2 - Appointments",
"division": "",
"heading": "Basis of Appointment",
"text": "34\n(1) For purposes of eligibility in any appointment process, other than an incumbent-based process, the Commission may determine an area of selection by establishing geographic, organizational or occupational criteria or by establishing, as a criterion, belonging to any of the designated groups within the meaning of section 3 of the Employment Equity Act.\n(2) [Designated groups] The Commission may establish different geographic, organizational or occupational criteria for designated groups within the meaning of section 3 of the Employment Equity Act than for other persons.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 34",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-34.html"
},
{
"id": "P-33.01-s35",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "35",
"marginal_note": "Mobility — separate agencies",
"part": "PART 2 - Appointments",
"division": "",
"heading": "Basis of Appointment",
"text": "35\n(1) Unless otherwise provided in this or any other Act, a person employed in a separate agency to which the Commission does not have the exclusive authority to make appointments\n(a) may participate in an advertised appointment process for which the organizational criterion established under section 34 entitles all employees to be considered, as long as the person meets the other criteria, if any, established under that section; and\n(b) has the right to make a complaint under section 77.\n(2) [Mobility — designated organizations] A person not otherwise employed in the public service who is employed in any portion of the federal public administration designated under subsection (4)\n(a) may participate in an advertised appointment process for which the organizational criterion established under section 34 entitles all persons employed in the public service to be considered, as long as the person meets the other criteria, if any, established under that section; and\n(b) has the right to make a complaint under section 77.\n(3) [Repealed, 2013, c. 40, s. 404]\n(4) [Designation] The Governor in Council may, on the recommendation of the Commission, designate any portion of the federal public administration for the purposes of subsection (2).\n(5) [Revocation] The Governor in Council may, on the recommendation of the Commission, revoke any designation under subsection (4).",
"history": "2003, c. 22, s. 12 \"35\"; 2013, c. 40, s. 404",
"last_amended": "2014-11-01",
"current_to": "2023-07-25",
"citation": "PSEA, s. 35",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-35.html"
},
{
"id": "P-33.01-s35.1",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "35.1",
"marginal_note": "Mobility — member of Canadian Forces",
"part": "PART 2 - Appointments",
"division": "",
"heading": "Basis of Appointment",
"text": "35.1\n(1) A member of the Canadian Forces who has accumulated at least three years of service and is not employed in the public service for an indeterminate period\n(a) may participate in an advertised internal appointment process; and\n(b) has the right to make a complaint under section 77.\n(1.1) [Exception] For the purpose of paragraph (1)(a), if a criterion in relation to belonging to any of the designated groups, as defined in section 3 of the Employment Equity Act, is established under section 34, the member shall meet that criterion.\n(2) [Deemed employment in public service] A member who participates in a process referred to in subsection (1) is, for the purpose of the process, deemed to be a person employed in the public service.\n(3) [Definition of member] In this section, member means a person who is enrolled in the Canadian Forces.",
"history": "2005, c. 21, s. 115; 2015, c. 5, s. 3",
"last_amended": "2015-07-01",
"current_to": "2023-07-25",
"citation": "PSEA, s. 35.1",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-35.1.html"
},
{
"id": "P-33.01-s35.11",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "35.11",
"marginal_note": "Mobility — former member of Canadian Forces",
"part": "PART 2 - Appointments",
"division": "",
"heading": "Basis of Appointment",
"text": "35.11\n(1) A person who is not enrolled in the Canadian Forces, has served at least three years in the Canadian Forces, has been honourably released within the meaning of regulations made under the National Defence Act and is not employed in the public service for an indeterminate period\n(a) may, during a period of five years after their date of release, participate in an advertised internal appointment process; and\n(b) has the right to make a complaint under section 77.\n(2) [Deemed employment in public service] A person who participates in a process referred to in subsection (1) is, for the purpose of the process, deemed to be a person employed in the public service.\n(3) [Exception] For the purpose of paragraph (1)(a), if a criterion in relation to belonging to any of the designated groups, as defined in section 3 of the Employment Equity Act, is established under section 34, the person shall meet that criterion.",
"history": "2015, c. 5, s. 4",
"last_amended": "2015-07-01",
"current_to": "2023-07-25",
"citation": "PSEA, s. 35.11",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-35.11.html"
},
{
"id": "P-33.01-s35.2",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "35.2",
"marginal_note": "Mobility — ministers’ staffs",
"part": "PART 2 - Appointments",
"division": "",
"heading": "Basis of Appointment",
"text": "35.2 A person who has been employed for at least three years in the office of a minister or of a person holding the recognized position of Leader of the Opposition in the Senate or Leader of the Opposition in the House of Commons, or in any of those offices successively,\n(a) may, during a period of one year after they cease to be so employed, participate in an advertised appointment process for which the organizational criterion established under section 34 entitles all employees to be considered, as long as they meet the other criteria, if any, established under that section; and\n(b) has the right to make a complaint under section 77.",
"history": "2006, c. 9, s. 101",
"last_amended": "2006-12-12",
"current_to": "2023-07-25",
"citation": "PSEA, s. 35.2",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-35.2.html"
},
{
"id": "P-33.01-s35.3",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "35.3",
"marginal_note": "Parliamentary employees",
"part": "PART 2 - Appointments",
"division": "",
"heading": "Basis of Appointment",
"text": "35.3 A person employed in the Senate, House of Commons, Library of Parliament, office of the Senate Ethics Officer, office of the Conflict of Interest and Ethics Commissioner, Parliamentary Protective Service or office of the Parliamentary Budget Officer\n(a) may participate in an advertised appointment process for which the organizational criterion established under section 34 entitles all employees to be considered, as long as the person meets the other criteria, if any, established under that section; and\n(b) has the right to make a complaint under section 77.",
"history": "2006, c. 9, s. 101; 2015, c. 36, s. 151; 2017, c. 20, s. 186",
"last_amended": "2017-09-21",
"current_to": "2023-07-25",
"citation": "PSEA, s. 35.3",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-35.3.html"
},
{
"id": "P-33.01-s36",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "36",
"marginal_note": "Assessment methods",
"part": "PART 2 - Appointments",
"division": "",
"heading": "Basis of Appointment",
"text": "36\n(1) In making an appointment, the Commission may, subject to subsection (2), use any assessment method, such as a review of past performance and accomplishments, interviews and examinations, that it considers appropriate to determine whether a person meets the qualifications referred to in paragraph 30(2)(a) and subparagraph 30(2)(b)(i).\n(2) [Identification of biases and barriers] Before using an assessment method, the Commission shall conduct an evaluation to identify whether the assessment method and the manner in which it will be applied includes or creates biases or barriers that disadvantage persons belonging to any equity-seeking group and, if one is identified, make reasonable efforts to remove it or to mitigate its impact on those persons.",
"history": "2003, c. 22, s. 12 “36”; 2021, c. 23, s. 280",
"last_amended": "2023-07-01",
"current_to": "2023-07-25",
"citation": "PSEA, s. 36",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-36.html"
},
{
"id": "P-33.01-s37",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "37",
"marginal_note": "Language of examination",
"part": "PART 2 - Appointments",
"division": "",
"heading": "Basis of Appointment",
"text": "37\n(1) An examination or interview, when conducted for the purpose of assessing qualifications referred to in paragraph 30(2)(a) and subparagraph 30(2)(b)(i), other than language proficiency, shall be conducted in English or French or both at the option of the candidate.\n(2) [Testing for language skills] An examination or interview, when conducted for the purpose of assessing the qualifications of the candidate in the knowledge and use of English or French or both, or of a third language, shall be conducted in that language or those languages.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 37",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-37.html"
},
{
"id": "P-33.01-s38",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "38",
"marginal_note": "Exceptions to merit",
"part": "PART 2 - Appointments",
"division": "",
"heading": "Basis of Appointment",
"text": "38 Paragraph 30(2)(b) does not apply in relation to any appointment made under subsection 15(6) (re-appointment on revocation by deputy head), section 39.1 (priority — members of the Canadian Forces) or 40 (priorities — surplus employees), subsection 41(1) or (4) (other priorities) or section 73 (re-appointment on revocation by Commission) or 86 (re-appointment following Board order), or under any regulations made under paragraph 22(2)(a).",
"history": "2003, c. 22, s. 12 “38”; 2006, c. 9, s. 102; 2013, c. 40, s. 414; 2015, c. 5, ss. 5, 14",
"last_amended": "2015-07-01",
"current_to": "2023-07-25",
"citation": "PSEA, s. 38",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-38.html"
},
{
"id": "P-33.01-s39",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "39",
"marginal_note": "Preference to veterans and Canadian citizens",
"part": "PART 2 - Appointments",
"division": "",
"heading": "Preferences, Priorities and Entitlements",
"text": "39\n(1) In an advertised external appointment process, subject to any priorities established under paragraph 22(2)(a) and by sections 39.1, 40 and 41, any of the following who, in the Commission’s opinion, meet the essential qualifications referred to in paragraph 30(2)(a) shall be appointed ahead of other candidates, in the following order:\n(a) a person who is in receipt of a pension by reason of war service, within the meaning of the schedule;\n(b) a veteran or a survivor of a veteran, within the meaning of the schedule; and\n(c) a Canadian citizen, within the meaning of the Citizenship Act, and a permanent resident, within the meaning of subsection 2(1) of the Immigration and Refugee Protection Act, in any case where a person who is not a Canadian citizen or permanent resident is also a candidate.\n(2) [Application of merit] Where the Commission is satisfied that two or more candidates described in any of paragraphs (1)(a) to (c) meet the essential qualifications referred to in paragraph 30(2)(a), paragraph 30(2)(b) applies in the selection of a person from among the candidates described in that paragraph.\n(3) [Limit of five years] With respect to a veteran referred to in paragraph (f) of the definition veteran within the meaning of the schedule, the order of appointment set out in subsection (1) is valid for a period of five years after the veteran’s date of release.",
"history": "2003, c. 22, s. 12 \"39\"; 2015, c. 5, s. 6; 2021, c. 23, s. 281",
"last_amended": "2021-06-29",
"current_to": "2023-07-25",
"citation": "PSEA, s. 39",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-39.html"
},
{
"id": "P-33.01-s39.1",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "39.1",
"marginal_note": "Priority — member of Canadian Forces",
"part": "PART 2 - Appointments",
"division": "",
"heading": "Preferences, Priorities and Entitlements",
"text": "39.1\n(1) Despite sections 40 and 41, priority for appointment over all other persons is to be given, during the period determined by the Commission, to a person who was released from the Canadian Forces for medical reasons that the Minister of Veterans Affairs determines are attributable to service, who belongs to a class determined by the Commission and who meets the requirements established by the Commission.\n(2) [Essential qualifications] A person referred to in subsection (1) has a priority for appointment with respect to any position if the Commission is satisfied that the person meets the essential qualifications referred to in paragraph 30(2)(a).",
"history": "2015, c. 5, s. 7",
"last_amended": "2015-07-01",
"current_to": "2023-07-25",
"citation": "PSEA, s. 39.1",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-39.1.html"
},
{
"id": "P-33.01-s40",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "40",
"marginal_note": "Priority — surplus employees",
"part": "PART 2 - Appointments",
"division": "",
"heading": "Preferences, Priorities and Entitlements",
"text": "40 Notwithstanding section 41, after a deputy head informs an employee that the employee will be laid off pursuant to subsection 64(1) and before the lay-off becomes effective, the Commission may appoint the employee in priority to all other persons to another position under the deputy head’s jurisdiction if the Commission is satisfied that the employee meets the essential qualifications referred to in paragraph 30(2)(a) and that it is in the best interests of the public service to make the appointment.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 40",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-40.html"
},
{
"id": "P-33.01-s41",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "41",
"marginal_note": "Priority — persons on leave",
"part": "PART 2 - Appointments",
"division": "",
"heading": "Preferences, Priorities and Entitlements",
"text": "41\n(1) When an employee on leave of absence is replaced, pursuant to the appointment or deployment of another person for an indeterminate period to the employee’s position, priority for appointment shall be given over all other persons to\n(a) the employee on leave of absence, for the duration of the leave of absence and a further period of one year; or\n(b) if the employee on leave of absence returns to his or her position, the person who replaced that employee, for a period of one year after that employee returns to the position.\n(2) and (3) [Repealed, 2006, c. 9, s. 103]\n(4) [Priority — persons laid off] Priority for appointment over all other persons shall be given, during the period determined by the Commission, to a person who is laid off pursuant to subsection 64(1).\n(5) [Essential qualifications] The priority of a person referred to in subsection (1) or (4) applies with respect to any position if the Commission is satisfied that the person meets the essential qualifications referred to in paragraph 30(2)(a).\n(6) [Order of priorities] Persons described in subsection (1) shall be appointed in priority to persons described in subsection (4), and persons described in each of those subsections shall be appointed in the order determined by the Commission.",
"history": "2003, c. 22, s. 12 “41”; 2006, c. 9, s. 103",
"last_amended": "2006-12-12",
"current_to": "2023-07-25",
"citation": "PSEA, s. 41",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-41.html"
},
{
"id": "P-33.01-s41.1",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "41.1",
"marginal_note": "Resumption of employment",
"part": "PART 2 - Appointments",
"division": "",
"heading": "Preferences, Priorities and Entitlements",
"text": "41.1\n(1) At the end of a leave of absence from employment that is taken by an employee who is a member of the reserve force in order to take part in an operation or activity referred to in paragraphs 247.5(1)(a) to (f) of the Canada Labour Code, the deputy head shall reinstate the employee in the position that the employee occupied on the day before the day on which the leave begins.\n(2) [Workforce adjustment] Despite subsection (1), if a deputy head is not able to reinstate the employee in that position by reason of a workforce adjustment, the workforce adjustment measures that are established by the employer or the measures that are set out in agreements relating to workforce adjustment apply.",
"history": "2008, c. 15, s. 6",
"last_amended": "2008-04-18",
"current_to": "2023-07-25",
"citation": "PSEA, s. 41.1",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-41.1.html"
},
{
"id": "P-33.01-s42",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "42",
"marginal_note": "Failure to appoint person on leave",
"part": "PART 2 - Appointments",
"division": "",
"heading": "Preferences, Priorities and Entitlements",
"text": "42 A person who is entitled under subsection 41(1) to be appointed to a position and who is not so appointed in the applicable period provided for in that subsection ceases to be an employee at the end of that period.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 42",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-42.html"
},
{
"id": "P-33.01-s43",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "43",
"marginal_note": "Non-application of priority provisions",
"part": "PART 2 - Appointments",
"division": "",
"heading": "Preferences, Priorities and Entitlements",
"text": "43 Despite sections 39.1, 40 and 41 and any regulations made under paragraph 22(2)(a), if the Commission considers that the appointment of a person who has a right to be appointed in priority to other persons under any of those provisions will result in another person having a priority right, the Commission may decide not to apply that provision in that case.",
"history": "2003, c. 22, s. 12 \"43\"; 2015, c. 5, s. 8",
"last_amended": "2015-07-01",
"current_to": "2023-07-25",
"citation": "PSEA, s. 43",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-43.html"
},
{
"id": "P-33.01-s44",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "44",
"marginal_note": "Participation in advertised process — lay-offs",
"part": "PART 2 - Appointments",
"division": "",
"heading": "Preferences, Priorities and Entitlements",
"text": "44 A person who is laid off under subsection 64(1) is entitled, during any period that the Commission determines for any case or class of cases, to participate in any advertised appointment process for which the person would have been eligible had the person not been laid off.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 44",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-44.html"
},
{
"id": "P-33.01-s45",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "45",
"marginal_note": "Non-application to term employees",
"part": "PART 2 - Appointments",
"division": "",
"heading": "Preferences, Priorities and Entitlements",
"text": "45 Section 40, subsection 41(4) and section 44 do not apply to a person whose employment was for a specified term at the time they were informed that they would be laid off.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 45",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-45.html"
},
{
"id": "P-33.01-s46",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "46",
"marginal_note": "Deemed lay-off",
"part": "PART 2 - Appointments",
"division": "",
"heading": "Preferences, Priorities and Entitlements",
"text": "46 For the purposes of subsection 41(4) and section 44, a person who, while employed in the public service, does not accept an offer of employment made in the circumstances referred to in paragraph 12(1)(f) of the Financial Administration Act that is a reasonable job offer within the meaning of an agreement respecting work force adjustment or who accepts an offer of employment, made in such circumstances, that is not a reasonable job offer within the meaning of such an agreement, is deemed to be laid off.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 46",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-46.html"
},
{
"id": "P-33.01-s47",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "47",
"marginal_note": "Informal discussion with employee",
"part": "PART 2 - Appointments",
"division": "",
"heading": "Informal Discussion and Appointment",
"text": "47 Where a person is informed by the Commission, at any stage of an internal appointment process, that the person has been eliminated from consideration for appointment, the Commission may, at that person’s request, informally discuss its decision with that person.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 47",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-47.html"
},
{
"id": "P-33.01-s48",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "48",
"marginal_note": "Persons being considered for appointment",
"part": "PART 2 - Appointments",
"division": "",
"heading": "Informal Discussion and Appointment",
"text": "48\n(1) After the assessment of candidates is completed in an internal appointment process, the Commission shall, in any manner that it determines, inform the following persons of the name of the person being considered for each appointment:\n(a) in the case of an advertised internal appointment process, the persons in the area of selection determined under section 34 who participated in that process; and\n(b) in the case of a non-advertised internal appointment process, the persons in the area of selection determined under section 34.\n(2) [Waiting period] For the purposes of internal appointment processes, the Commission shall fix a period, beginning when the persons are informed under subsection (1), during which appointments or proposals for appointment may not be made.\n(3) [Appointment or proposed appointment] Following the period referred to in subsection (2), the Commission may appoint a person or propose a person for appointment, whether or not that person is the one previously considered, and the Commission shall so inform the persons who were advised under subsection (1).",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 48",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-48.html"
},
{
"id": "P-33.01-s49",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "49",
"marginal_note": "Finality of appointments",
"part": "PART 2 - Appointments",
"division": "",
"heading": "Informal Discussion and Appointment",
"text": "49 The Commission’s decision to appoint a person or to propose a person for appointment is final and is not subject to appeal or review except in accordance with this Act.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 49",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-49.html"
},
{
"id": "P-33.01-s50",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "50",
"marginal_note": "Appointment",
"part": "PART 2 - Appointments",
"division": "",
"heading": "Casual Employment",
"text": "50\n(1) The Commission may appoint any person as a casual worker to that part of the public service to which the Commission has exclusive authority to make appointments.\n(2) [Maximum period] The period of employment of a casual worker may not exceed 90 working days in one calendar year in any particular department or other organization.\n(3) [Application of Act] The provisions of this Act, other than this section, do not apply to casual workers.\n(4) [Ineligibility] A casual worker is not eligible to be considered for appointment in any internal appointment process.\n(5) [Term appointments] This section does not affect the Commission’s authority to appoint a person to or from within the public service, other than on a casual basis, for a specified term of ninety working days or less.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 50",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-50.html"
},
{
"id": "P-33.01-s50.1",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "50.1",
"marginal_note": "Exception — Office of the Chief Electoral Officer",
"part": "PART 2 - Appointments",
"division": "",
"heading": "Casual Employment",
"text": "50.1 Despite subsection 50(2), the maximum period of employment of casual workers appointed in the Office of the Chief Electoral Officer — including the portions of the federal public administration in that Office in which the employees referred to in section 509.3 of the Canada Elections Act occupy their positions — for the purposes of an election held under that Act or a referendum held under the Referendum Act is 165 working days in one calendar year.",
"history": "2007, c. 21, s. 40; 2018, c. 31, s. 379",
"last_amended": "2019-04-01",
"current_to": "2023-07-25",
"citation": "PSEA, s. 50.1",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-50.1.html"
},
{
"id": "P-33.01-s50.2",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "50.2",
"marginal_note": "Exception",
"part": "PART 2 - Appointments",
"division": "",
"heading": "Casual Employment",
"text": "50.2\n(1) Despite subsection 50(2), a person may be appointed as a casual worker to the Royal Canadian Mounted Police for a period of more than 90 working days in one calendar year in the circumstances prescribed by regulations made under paragraph 22(2)(j).\n(2) [Review] The Commission may, on an annual basis, conduct a review of the exercise of the authority to appoint casual workers to the Royal Canadian Mounted Police for more than 90 working days during the preceding calendar year.",
"history": "2013, c. 18, s. 60",
"last_amended": "2014-11-28",
"current_to": "2023-07-25",
"citation": "PSEA, s. 50.2",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-50.2.html"
},
{
"id": "P-33.01-s51",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "51",
"marginal_note": "Authority of deputy heads to deploy",
"part": "PART 3 - Deployments",
"division": "",
"heading": "PART 3 - Deployments",
"text": "51\n(1) Except as provided in this or any other Act, a deputy head may deploy employees to or within the deputy head’s organization.\n(2) [Deployment from separate agencies] Except as provided in this or any other Act, a deputy head may deploy to the deputy head’s organization persons who are employed in a separate agency to which the Commission does not have the exclusive authority to make appointments if the Commission has, after reviewing the staffing program of the separate agency at the agency’s request, approved deployments from it.\n(3) [Deployment within or between groups] A deployment may be made within an occupational group or, unless excluded by regulations under paragraph 26(1)(a), between occupational groups.\n(4) [Treasury Board directives and regulations] A deployment to or within an organization named in Schedule I or IV to the Financial Administration Act shall be made in the manner directed by the Treasury Board and in accordance with any regulations of the Treasury Board.\n(5) [Employment status preserved] The deployment of a person may not\n(a) constitute a promotion, within the meaning of regulations of the Treasury Board, in the case of an organization named in Schedule I or IV to the Financial Administration Act, or as determined by the separate agency, in the case of a separate agency to which the Commission has the exclusive authority to make appointments; or\n(b) change a person’s period of employment from a specified term to indeterminate.\n(6) [Consent to deployment] No person may be deployed without his or her consent unless\n(a) agreement to being deployed is a condition of employment of the person’s current position; or\n(b) the deputy head of the organization in which the person is employed finds, after investigation, that the person has harassed another person in the course of his or her employment and the deployment is made within the same organization.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 51",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-51.html"
},
{
"id": "P-33.01-s52",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "52",
"marginal_note": "Previous position",
"part": "PART 3 - Deployments",
"division": "",
"heading": "PART 3 - Deployments",
"text": "52 On deployment, a person ceases to be the incumbent of the position to which he or she had previously been appointed or deployed.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 52",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-52.html"
},
{
"id": "P-33.01-s53",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "53",
"marginal_note": "Deployment not an appointment",
"part": "PART 3 - Deployments",
"division": "",
"heading": "PART 3 - Deployments",
"text": "53\n(1) A deployment is not an appointment within the meaning of this Act.\n(2) [Exceptions to priority rights] A deputy head may deploy a person without regard to any other person’s right to be appointed under section 39.1 or subsection 41(1) or (4) or any regulations made under paragraph 22(2)(a).",
"history": "2003, c. 22, s. 12 “53”; 2006, c. 9, s. 104; 2015, c. 5, s. 9",
"last_amended": "2015-07-01",
"current_to": "2023-07-25",
"citation": "PSEA, s. 53",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-53.html"
},
{
"id": "P-33.01-s54",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "54",
"marginal_note": "Oath or affirmation",
"part": "PART 4 - Employment",
"division": "",
"heading": "PART 4 - Employment",
"text": "54 A person appointed or deployed from outside that part of the public service to which the Commission has exclusive authority to make appointments shall take and subscribe an oath or solemn affirmation in the following form:\nI, , swear (or solemnly affirm) that I will faithfully and honestly fulfil the duties that devolve on me by reason of my employment in the public service of Canada and that I will not, without due authority, disclose or make known any matter that comes to my knowledge by reason of such employment. (Add, in the case where an oath is taken, “So help me God” (or name of deity).)",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 54",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-54.html"
},
{
"id": "P-33.01-s55",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "55",
"marginal_note": "Effective date of appointment or deployment",
"part": "PART 4 - Employment",
"division": "",
"heading": "PART 4 - Employment",
"text": "55 The appointment or deployment of a person from outside that part of the public service to which the Commission has exclusive authority to make appointments takes effect on the later of the date that is agreed to in writing by the deputy head and that person and the date on which the person takes and subscribes the oath or solemn affirmation set out in section 54.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 55",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-55.html"
},
{
"id": "P-33.01-s56",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "56",
"marginal_note": "Effective date of appointment",
"part": "PART 4 - Employment",
"division": "",
"heading": "PART 4 - Employment",
"text": "56\n(1) The appointment of a person from within that part of the public service to which the Commission has exclusive authority to make appointments takes effect on the date agreed to in writing by that person and the deputy head, regardless of the date of their agreement.\n(2) [Effective date of deployment] The deployment of a person from within that part of the public service to which the Commission has exclusive authority to make appointments takes effect\n(a) on the date agreed to in writing by that person and the deputy head, regardless of the date of their agreement; or\n(b) if the person’s consent to the deployment is not required, on the date fixed by the deputy head.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 56",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-56.html"
},
{
"id": "P-33.01-s57",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "57",
"marginal_note": "Indeterminate employment",
"part": "PART 4 - Employment",
"division": "",
"heading": "PART 4 - Employment",
"text": "57 Subject to this Act, any other Act and regulations made under this or any other Act, the period of an employee’s employment is indeterminate unless the deputy head has specified a term of employment.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 57",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-57.html"
},
{
"id": "P-33.01-s58",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "58",
"marginal_note": "Term appointment or deployment",
"part": "PART 4 - Employment",
"division": "",
"heading": "PART 4 - Employment",
"text": "58\n(1) Subject to section 59, an employee whose appointment or deployment is for a specified term ceases to be an employee at the expiration of that term, or of any extension made under subsection (2).\n(2) [Extension by deputy head] A deputy head may extend a specified term referred to in subsection (1), and such an extension does not constitute an appointment or a deployment or entitle any person to make a complaint under section 77.\n(3) [Acting appointments] This section does not apply in respect of appointments made on an acting basis.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 58",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-58.html"
},
{
"id": "P-33.01-s59",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "59",
"marginal_note": "Conversion to indeterminate",
"part": "PART 4 - Employment",
"division": "",
"heading": "PART 4 - Employment",
"text": "59\n(1) Unless the employee requests otherwise of the deputy head, the period of employment of an employee who is employed for a specified term as a result of an appointment or deployment is converted to indeterminate in the employee’s substantive position, at the end of the cumulative period of employment specified by the employer in circumstances prescribed by the employer.\n(2) [Not an appointment or deployment] A conversion under subsection (1) does not constitute an appointment or a deployment or entitle any person to make a complaint under section 77.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 59",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-59.html"
},
{
"id": "P-33.01-s60",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "60",
"marginal_note": "Rate of pay on appointment",
"part": "PART 4 - Employment",
"division": "",
"heading": "PART 4 - Employment",
"text": "60 The rate of pay on appointment to a position shall be determined by the employer within the scale of rates of pay for that position or for positions of the same occupational nature and level as that position.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 60",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-60.html"
},
{
"id": "P-33.01-s61",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "61",
"marginal_note": "Probationary period",
"part": "PART 4 - Employment",
"division": "",
"heading": "PART 4 - Employment",
"text": "61\n(1) A person appointed from outside the public service is on probation for a period\n(a) established by regulations of the Treasury Board in respect of the class of employees of which that person is a member, in the case of an organization named in Schedule I or IV to the Financial Administration Act; or\n(b) determined by a separate agency in respect of the class of employees of which that person is a member, in the case of an organization that is a separate agency to which the Commission has exclusive authority to make appointments.\n(2) [Effect of appointment or deployment] A period established pursuant to subsection (1) is not terminated by any appointment or deployment made during that period.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 61",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-61.html"
},
{
"id": "P-33.01-s62",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "62",
"marginal_note": "Termination of employment",
"part": "PART 4 - Employment",
"division": "",
"heading": "PART 4 - Employment",
"text": "62\n(1) While an employee is on probation, the deputy head of the organization may notify the employee that his or her employment will be terminated at the end of\n(a) the notice period established by regulations of the Treasury Board in respect of the class of employees of which that employee is a member, in the case of an organization named in Schedule I or IV to the Financial Administration Act, or\n(b) the notice period determined by the separate agency in respect of the class of employees of which that employee is a member, in the case of a separate agency to which the Commission has exclusive authority to make appointments,\nand the employee ceases to be an employee at the end of that notice period.\n(2) [Compensation in lieu of notice] Instead of notifying an employee under subsection (1), the deputy head may notify the employee that his or her employment will be terminated on the date specified by the deputy head and that they will be paid an amount equal to the salary they would have been paid during the notice period under that subsection.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 62",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-62.html"
},
{
"id": "P-33.01-s63",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "63",
"marginal_note": "Resignation",
"part": "PART 4 - Employment",
"division": "",
"heading": "PART 4 - Employment",
"text": "63 An employee may resign from the public service by giving the deputy head notice in writing of his or her intention to resign, and the employee ceases to be an employee on the date specified by the deputy head in writing on accepting the resignation, regardless of the date of the acceptance.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 63",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-63.html"
},
{
"id": "P-33.01-s64",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "64",
"marginal_note": "Laying off of employees",
"part": "PART 4 - Employment",
"division": "",
"heading": "PART 4 - Employment",
"text": "64\n(1) Where the services of an employee are no longer required by reason of lack of work, the discontinuance of a function or the transfer of work or a function outside those portions of the federal public administration named in Schedule I, IV or V to the Financial Administration Act, the deputy head may, in accordance with the regulations of the Commission, lay off the employee, in which case the deputy head shall so advise the employee.\n(2) [Selection of employees] Where the deputy head determines under subsection (1) that some but not all of the employees in any part of the deputy head’s organization will be laid off, the employees to be laid off shall be selected in accordance with the regulations of the Commission.\n(3) [Exception] Subsection (1) does not apply where employment is terminated in the circumstances referred to in paragraph 12(1)(f) of the Financial Administration Act.\n(4) [Effect of lay-off] An employee ceases to be an employee when the employee is laid off.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 64",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-64.html"
},
{
"id": "P-33.01-s65",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "65",
"marginal_note": "Complaint to Board re lay-off",
"part": "PART 4 - Employment",
"division": "",
"heading": "PART 4 - Employment",
"text": "65\n(1) Where some but not all of the employees in a part of an organization are informed by the deputy head that they will be laid off, any employee selected for lay-off may make a complaint to the Board, in the manner and within the time fixed by the Board’s regulations, that his or her selection constituted an abuse of authority.\n(2) [Limitation] No complaint may be made under subsection (1) against the decision to lay off employees, the determination of the part of the organization from which employees will be laid off or the number of employees to be laid off from that part.\n(3) [Right to be heard] A complainant, every other employee in the part of the organization referred to in subsection (1), the deputy head and the Commission — or their representatives — are entitled to be heard by the Board.\n(4) [Lay-off set aside] Where the Board finds a complaint under subsection (1) to be substantiated, it may set aside the decision of the deputy head to lay off the complainant and order the deputy head to take any corrective action that it considers appropriate, other than the lay-off of any employee.\n(5) [Notice to Canadian Human Rights Commission] Where a complaint raises an issue involving the interpretation or application of the Canadian Human Rights Act, the complainant shall, in accordance with the regulations of the Board, notify the Canadian Human Rights Commission of the issue.\n(6) [Canadian Human Rights Commission] Where the Canadian Human Rights Commission is notified of an issue pursuant to subsection (5), it may make submissions to the Board with respect to that issue.\n(7) [Application of Canadian Human Rights Act] In considering whether a complaint is substantiated, the Board may interpret and apply the Canadian Human Rights Act, other than its provisions relating to the right to equal pay for work of equal value.\n(8) [Relief for discrimination] Corrective action may include an order for relief in accordance with paragraph 53(2)(e) or subsection 53(3) of the Canadian Human Rights Act.\n(9) [Notice to Accessibility Commissioner] If a complaint raises an issue involving the contravention of a provision of regulations made under subsection 117(1) of the Accessible Canada Act, the complainant shall, in accordance with the regulations of the Board, notify the Accessibility Commissioner, as defined in section 2 of that Act.\n(10) [Accessibility Commissioner] If the Accessibility Commissioner is notified of an issue under subsection (9), he or she may make submissions to the Board with respect to that issue.\n(11) [Application of Accessible Canada Act] In considering whether a complaint is substantiated, the Board may interpret and apply the Accessible Canada Act.\n(12) [Relief] Corrective action may include an order for relief in accordance with section 102 of the Accessible Canada Act.",
"history": "2003, c. 22, s. 12 \"65\"; 2013, c. 40, s. 414; 2019, c. 10, s. 194",
"last_amended": "2019-07-11",
"current_to": "2023-07-25",
"citation": "PSEA, s. 65",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-65.html"
},
{
"id": "P-33.01-s66",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "66",
"marginal_note": "External appointments",
"part": "PART 5 - Investigations and Complaints Relating to Appointments",
"division": "",
"heading": "Investigation of Appointments by Commission",
"text": "66 The Commission may investigate any external appointment process and, if it is satisfied that the appointment was not made or proposed to be made on the basis of merit, or that there was an error, an omission or improper conduct that affected the selection of the person appointed or proposed for appointment, the Commission may\n(a) revoke the appointment or not make the appointment, as the case may be; and\n(b) take any corrective action that it considers appropriate.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 66",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-66.html"
},
{
"id": "P-33.01-s67",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "67",
"marginal_note": "Internal appointments — no delegation",
"part": "PART 5 - Investigations and Complaints Relating to Appointments",
"division": "",
"heading": "Investigation of Appointments by Commission",
"text": "67\n(1) The Commission may investigate an internal appointment process, other than one conducted by a deputy head acting under subsection 15(1), and, if it is satisfied that there was an error, an omission or improper conduct that affected the selection of the person appointed or proposed for appointment, the Commission may\n(a) revoke the appointment or not make the appointment, as the case may be; and\n(b) take any corrective action that it considers appropriate.\n(2) [Internal appointments — delegation] The Commission may, at the request of the deputy head, investigate an internal appointment process that was conducted by a deputy head acting under subsection 15(1), and report its findings to the deputy head and the deputy head may, if satisfied that there was an error, an omission or improper conduct that affected the selection of the person appointed or proposed for appointment,\n(a) revoke the appointment or not make the appointment, as the case may be; and\n(b) take any corrective action that he or she considers appropriate.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 67",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-67.html"
},
{
"id": "P-33.01-s68",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "68",
"marginal_note": "Political influence",
"part": "PART 5 - Investigations and Complaints Relating to Appointments",
"division": "",
"heading": "Investigation of Appointments by Commission",
"text": "68 If it has reason to believe that an appointment or proposed appointment was not free from political influence, the Commission may investigate the appointment process and, if it is satisfied that the appointment or proposed appointment was not free from political influence, the Commission may\n(a) revoke the appointment or not make the appointment, as the case may be; and\n(b) take any corrective action that it considers appropriate.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 68",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-68.html"
},
{
"id": "P-33.01-s69",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "69",
"marginal_note": "Fraud",
"part": "PART 5 - Investigations and Complaints Relating to Appointments",
"division": "",
"heading": "Investigation of Appointments by Commission",
"text": "69 If it has reason to believe that fraud may have occurred in an appointment process, the Commission may investigate the appointment process and, if it is satisfied that fraud has occurred, the Commission may\n(a) revoke the appointment or not make the appointment, as the case may be; and\n(b) take any corrective action that it considers appropriate.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 69",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-69.html"
},
{
"id": "P-33.01-s70",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "70",
"marginal_note": "Powers of Commission",
"part": "PART 5 - Investigations and Complaints Relating to Appointments",
"division": "",
"heading": "Investigation of Appointments by Commission",
"text": "70\n(1) In conducting any investigation under this Part, the Commission has all the powers of a commissioner under Part II of the Inquiries Act.\n(2) [Informality] An investigation shall be conducted by the Commission as informally and expeditiously as possible.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 70",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-70.html"
},
{
"id": "P-33.01-s71",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "71",
"marginal_note": "Persons acting for Commission",
"part": "PART 5 - Investigations and Complaints Relating to Appointments",
"division": "",
"heading": "Investigation of Appointments by Commission",
"text": "71\n(1) The Commission may direct that any investigation under this Part be conducted, in whole or in part, by one or more Commissioners or other persons.\n(2) [Powers of Commissioner] A Commissioner directed under subsection (1) has the powers referred to in section 70 in relation to the matter before the Commissioner.\n(3) [Powers of other person] Subject to any limitations specified by the Commission, a person directed under subsection (1), other than a Commissioner, has the powers referred to in section 70 in relation to the matter before the person.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 71",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-71.html"
},
{
"id": "P-33.01-s72",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "72",
"marginal_note": "Right to make submissions",
"part": "PART 5 - Investigations and Complaints Relating to Appointments",
"division": "",
"heading": "Investigation of Appointments by Commission",
"text": "72 Where an investigation is conducted under this Part in relation to a person’s appointment or proposed appointment, that person and the deputy head in relation to the appointment — or their representatives — are entitled to make submissions to the Commission, Commissioner or other person, whichever is conducting the investigation.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 72",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-72.html"
},
{
"id": "P-33.01-s73",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "73",
"marginal_note": "Re-appointment following revocation",
"part": "PART 5 - Investigations and Complaints Relating to Appointments",
"division": "",
"heading": "Investigation of Appointments by Commission",
"text": "73 Where the appointment of a person is revoked under any of sections 66 to 69, the Commission may appoint that person to another position if the Commission is satisfied that the person meets the essential qualifications referred to in paragraph 30(2)(a).",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 73",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-73.html"
},
{
"id": "P-33.01-s74",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "74",
"marginal_note": "Complaint",
"part": "PART 5 - Investigations and Complaints Relating to Appointments",
"division": "",
"heading": "Complaints to Board — Revocation of Appointment",
"text": "74 A person whose appointment is revoked by the Commission under subsection 67(1) or by the deputy head under subsection 15(3) or 67(2) may, in the manner and within the period provided by the Board’s regulations, make a complaint to the Board that the revocation was unreasonable.",
"history": "2003, c. 22, s. 12 \"74\"; 2013, c. 40, s. 414",
"last_amended": "2014-11-01",
"current_to": "2023-07-25",
"citation": "PSEA, s. 74",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-74.html"
},
{
"id": "P-33.01-s75",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "75",
"marginal_note": "Right to be heard",
"part": "PART 5 - Investigations and Complaints Relating to Appointments",
"division": "",
"heading": "Complaints to Board — Revocation of Appointment",
"text": "75 Where a complaint is made under section 74, the complainant, the deputy head and the Commission — or their representatives — are entitled to be heard by the Board.",
"history": "2003, c. 22, s. 12 \"75\"; 2013, c. 40, s. 414",
"last_amended": "2014-11-01",
"current_to": "2023-07-25",
"citation": "PSEA, s. 75",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-75.html"
},
{
"id": "P-33.01-s76",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "76",
"marginal_note": "Revocation set aside",
"part": "PART 5 - Investigations and Complaints Relating to Appointments",
"division": "",
"heading": "Complaints to Board — Revocation of Appointment",
"text": "76 Where the Board finds a complaint under section 74 to be substantiated, it may order the Commission or the deputy head, as the case may be, to set aside the revocation.",
"history": "2003, c. 22, s. 12 \"76\"; 2013, c. 40, s. 414",
"last_amended": "2014-11-01",
"current_to": "2023-07-25",
"citation": "PSEA, s. 76",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-76.html"
},
{
"id": "P-33.01-s77",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "77",
"marginal_note": "Grounds of complaint",
"part": "PART 5 - Investigations and Complaints Relating to Appointments",
"division": "",
"heading": "Complaints to Board — Internal Appointments",
"text": "77\n(1) When the Commission has made or proposed an appointment in an internal appointment process, a person in the area of recourse referred to in subsection (2) may — in the manner and within the period provided by the Board’s regulations — make a complaint to the Board that he or she was not appointed or proposed for appointment by reason of\n(a) an abuse of authority by the Commission or the deputy head in the exercise of its or his or her authority under subsection 30(2);\n(b) an abuse of authority by the Commission in choosing between an advertised and a non-advertised internal appointment process; or\n(c) the failure of the Commission to assess the complainant in the official language of his or her choice as required by subsection 37(1).\n(2) [Area of recourse] For the purposes of subsection (1), a person is in the area of recourse if the person is\n(a) an unsuccessful candidate in the area of selection determined under section 34, in the case of an advertised internal appointment process; and\n(b) any person in the area of selection determined under section 34, in the case of a non-advertised internal appointment process.\n(3) [Excluded grounds] The Board may not consider an allegation that fraud occurred in an appointment process or that an appointment or proposed appointment was not free from political influence.",
"history": "2003, c. 22, s. 12 \"77\"; 2013, c. 40, s. 414",
"last_amended": "2014-11-01",
"current_to": "2023-07-25",
"citation": "PSEA, s. 77",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-77.html"
},
{
"id": "P-33.01-s78",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "78",
"marginal_note": "Notice to Canadian Human Rights Commission",
"part": "PART 5 - Investigations and Complaints Relating to Appointments",
"division": "",
"heading": "Complaints to Board — Internal Appointments",
"text": "78 Where a complaint raises an issue involving the interpretation or application of the Canadian Human Rights Act, the complainant shall, in accordance with the regulations of the Board, notify the Canadian Human Rights Commission of the issue.",
"history": "2003, c. 22, s. 12 \"78\"; 2013, c. 40, s. 414",
"last_amended": "2014-11-01",
"current_to": "2023-07-25",
"citation": "PSEA, s. 78",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-78.html"
},
{
"id": "P-33.01-s78.1",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "78.1",
"marginal_note": "Notice to Accessibility Commissioner",
"part": "PART 5 - Investigations and Complaints Relating to Appointments",
"division": "",
"heading": "Complaints to Board — Internal Appointments",
"text": "78.1 If a complaint raises an issue involving the contravention of a provision of regulations made under subsection 117(1) of the Accessible Canada Act, the complainant shall, in accordance with the regulations of the Board, notify the Accessibility Commissioner, as defined in section 2 of that Act.",
"history": "2019, c. 10, s. 195",
"last_amended": "2019-07-11",
"current_to": "2023-07-25",
"citation": "PSEA, s. 78.1",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-78.1.html"
},
{
"id": "P-33.01-s79",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "79",
"marginal_note": "Right to be heard",
"part": "PART 5 - Investigations and Complaints Relating to Appointments",
"division": "",
"heading": "Complaints to Board — Internal Appointments",
"text": "79\n(1) A person making a complaint under section 77, the person appointed or proposed for appointment, the deputy head and the Commission — or their representatives — are entitled to be heard by the Board.\n(2) [Canadian Human Rights Commission] Where the Canadian Human Rights Commission is notified of an issue pursuant to section 78, it may make submissions to the Board with respect to that issue.\n(3) [Accessibility Commissioner] If the Accessibility Commissioner is notified of an issue under section 78.1, he or she may make submissions to the Board with respect to that issue.",
"history": "2003, c. 22, s. 12 \"79\"; 2013, c. 40, s. 414; 2019, c. 10, s. 196",
"last_amended": "2019-07-11",
"current_to": "2023-07-25",
"citation": "PSEA, s. 79",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-79.html"
},
{
"id": "P-33.01-s80",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "80",
"marginal_note": "Application of Canadian Human Rights Act",
"part": "PART 5 - Investigations and Complaints Relating to Appointments",
"division": "",
"heading": "Complaints to Board — Internal Appointments",
"text": "80 In considering whether a complaint under section 77 is substantiated, the Board may interpret and apply the Canadian Human Rights Act, other than its provisions relating to the right to equal pay for work of equal value.",
"history": "2003, c. 22, s. 12 \"80\"; 2013, c. 40, s. 414",
"last_amended": "2014-11-01",
"current_to": "2023-07-25",
"citation": "PSEA, s. 80",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-80.html"
},
{
"id": "P-33.01-s80.1",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "80.1",
"marginal_note": "Application of Accessible Canada Act",
"part": "PART 5 - Investigations and Complaints Relating to Appointments",
"division": "",
"heading": "Complaints to Board — Internal Appointments",
"text": "80.1 In considering whether a complaint under section 77 is substantiated, the Board may interpret and apply the Accessible Canada Act.",
"history": "2019, c. 10, s. 197",
"last_amended": "2019-07-11",
"current_to": "2023-07-25",
"citation": "PSEA, s. 80.1",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-80.1.html"
},
{
"id": "P-33.01-s81",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "81",
"marginal_note": "Corrective action when complaint upheld",
"part": "PART 5 - Investigations and Complaints Relating to Appointments",
"division": "",
"heading": "Complaints to Board — Internal Appointments",
"text": "81\n(1) If the Board finds a complaint under section 77 to be substantiated, the Board may order the Commission or the deputy head to revoke the appointment or not to make the appointment, as the case may be, and to take any corrective action that the Board considers appropriate.\n(2) [Relief for discrimination] Corrective action taken under subsection (1) may include an order for relief in accordance with paragraph 53(2)(e) or subsection 53(3) of the Canadian Human Rights Act.\n(3) [Relief] Corrective action taken under subsection (1) may include an order for relief in accordance with section 102 of the Accessible Canada Act.",
"history": "2003, c. 22, s. 12 \"81\"; 2013, c. 40, s. 414; 2019, c. 10, s. 198",
"last_amended": "2019-07-11",
"current_to": "2023-07-25",
"citation": "PSEA, s. 81",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-81.html"
},
{
"id": "P-33.01-s82",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "82",
"marginal_note": "Restrictions",
"part": "PART 5 - Investigations and Complaints Relating to Appointments",
"division": "",
"heading": "Complaints to Board — Internal Appointments",
"text": "82 The Board may not order the Commission to make an appointment or to conduct a new appointment process.",
"history": "2003, c. 22, s. 12 \"82\"; 2013, c. 40, s. 414",
"last_amended": "2014-11-01",
"current_to": "2023-07-25",
"citation": "PSEA, s. 82",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-82.html"
},
{
"id": "P-33.01-s83",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "83",
"marginal_note": "Failure of corrective action",
"part": "PART 5 - Investigations and Complaints Relating to Appointments",
"division": "",
"heading": "Complaints to Board — Internal Appointments",
"text": "83 Where the Commission has made or proposed an appointment as a result of the implementation of corrective action ordered under section 81, a complaint may be made to the Board, in the manner and within the period provided by its regulations, by\n(a) the person who made the complaint under section 77,\n(b) the person who was the subject of the appointment or proposed appointment referred to in subsection 77(1), or\n(c) any other person directly affected by the implementation of the corrective action,\non the grounds that the person was not appointed or proposed for appointment by reason of an abuse of authority by the Commission or deputy head in the implementation of the corrective action.",
"history": "2003, c. 22, s. 12 \"83\"; 2013, c. 40, s. 414",
"last_amended": "2014-11-01",
"current_to": "2023-07-25",
"citation": "PSEA, s. 83",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-83.html"
},
{
"id": "P-33.01-s84",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "84",
"marginal_note": "Powers of Board",
"part": "PART 5 - Investigations and Complaints Relating to Appointments",
"division": "",
"heading": "Complaints to Board — Internal Appointments",
"text": "84 Where the Board finds a complaint under section 83 to be substantiated, it may\n(a) order the Commission or the deputy head to revoke the appointment made as a result of the implementation of the corrective action, or not to make the appointment, as the case may be; and\n(b) give the Commission or the deputy head any directions that it considers appropriate with respect to the implementation of the corrective action.",
"history": "2003, c. 22, s. 12 \"84\"; 2013, c. 40, s. 414",
"last_amended": "2014-11-01",
"current_to": "2023-07-25",
"citation": "PSEA, s. 84",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-84.html"
},
{
"id": "P-33.01-s85",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "85",
"marginal_note": "Right to be heard",
"part": "PART 5 - Investigations and Complaints Relating to Appointments",
"division": "",
"heading": "Complaints to Board — Internal Appointments",
"text": "85 In the consideration of a complaint made under section 83, the persons entitled to be heard by the Board are the persons entitled to make a complaint under that section in respect of the corrective action, the person appointed or proposed for appointment as a result of the corrective action, the deputy head and the Commission, or their representatives.",
"history": "2003, c. 22, s. 12 \"85\"; 2013, c. 40, s. 414",
"last_amended": "2014-11-01",
"current_to": "2023-07-25",
"citation": "PSEA, s. 85",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-85.html"
},
{
"id": "P-33.01-s86",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "86",
"marginal_note": "Appointment to other position",
"part": "PART 5 - Investigations and Complaints Relating to Appointments",
"division": "",
"heading": "Complaints to Board — Internal Appointments",
"text": "86 Where the appointment of a person is revoked pursuant to subsection 81(1), the Commission may appoint that person to another position if the Commission is satisfied that the person meets the essential qualifications referred to in paragraph 30(2)(a).",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 86",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-86.html"
},
{
"id": "P-33.01-s87",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "87",
"marginal_note": "No right to complain",
"part": "PART 5 - Investigations and Complaints Relating to Appointments",
"division": "",
"heading": "Complaints to Board — Internal Appointments",
"text": "87 No complaint may be made under section 77 in respect of an appointment made under subsection 15(6) (re-appointment on revocation by deputy head), section 39.1 (priority — members of the Canadian Forces) or 40 (priorities — surplus employees), subsection 41(1) or (4) (other priorities) or section 73 (re-appointment on revocation by Commission) or 86 (re-appointment following Board order) or under any regulations made under paragraph 22(2)(a).",
"history": "2003, c. 22, s. 12 “87”; 2006, c. 9, s. 105; 2013, c. 40, s. 414; 2015, c. 5, ss. 10, 14",
"last_amended": "2015-07-01",
"current_to": "2023-07-25",
"citation": "PSEA, s. 87",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-87.html"
},
{
"id": "P-33.01-s88",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "88",
"marginal_note": "Complaints",
"part": "PART 6 - Federal Public Sector Labour Relations and Employment Board",
"division": "",
"heading": "Powers, Duties and Functions",
"text": "88 The Board is to consider and dispose of complaints made under subsection 65(1) and sections 74, 77 and 83.",
"history": "2003, c. 22, s. 12 \"88\"; 2013, c. 40, s. 405",
"last_amended": "2014-11-01",
"current_to": "2023-07-25",
"citation": "PSEA, s. 88",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-88.html"
},
{
"id": "P-33.01-s89",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "89",
"marginal_note": "Powers",
"part": "PART 6 - Federal Public Sector Labour Relations and Employment Board",
"division": "",
"heading": "Powers, Duties and Functions",
"text": "89 Subject to any limitations that the Governor in Council may establish in the interests of defence or security, the Board has, in relation to a complaint, the power to enter any premises of an employer where work is being or has been done by employees, inspect and view any work, material, machinery, appliances or articles in the premises and require any person in the premises to answer all questions relating to the complaint.",
"history": "2003, c. 22, s. 12 \"89\"; 2013, c. 40, s. 405",
"last_amended": "2014-11-01",
"current_to": "2023-07-25",
"citation": "PSEA, s. 89",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-89.html"
},
{
"id": "P-33.01-s90",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "90",
"marginal_note": "",
"part": "PART 6 - Federal Public Sector Labour Relations and Employment Board",
"division": "",
"heading": "Powers, Duties and Functions",
"text": "90 [Repealed, 2013, c. 40, s. 405]",
"history": "",
"last_amended": "2014-11-01",
"current_to": "2023-07-25",
"citation": "PSEA, s. 90",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-90.html"
},
{
"id": "P-33.01-s91",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "91",
"marginal_note": "",
"part": "PART 6 - Federal Public Sector Labour Relations and Employment Board",
"division": "",
"heading": "Powers, Duties and Functions",
"text": "91 [Repealed, 2013, c. 40, s. 405]",
"history": "",
"last_amended": "2014-11-01",
"current_to": "2023-07-25",
"citation": "PSEA, s. 91",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-91.html"
},
{
"id": "P-33.01-s92",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "92",
"marginal_note": "",
"part": "PART 6 - Federal Public Sector Labour Relations and Employment Board",
"division": "",
"heading": "Powers, Duties and Functions",
"text": "92 [Repealed, 2013, c. 40, s. 405]",
"history": "",
"last_amended": "2014-11-01",
"current_to": "2023-07-25",
"citation": "PSEA, s. 92",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-92.html"
},
{
"id": "P-33.01-s93",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "93",
"marginal_note": "",
"part": "PART 6 - Federal Public Sector Labour Relations and Employment Board",
"division": "",
"heading": "Powers, Duties and Functions",
"text": "93 [Repealed, 2013, c. 40, s. 405]",
"history": "",
"last_amended": "2014-11-01",
"current_to": "2023-07-25",
"citation": "PSEA, s. 93",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-93.html"
},
{
"id": "P-33.01-s94",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "94",
"marginal_note": "",
"part": "PART 6 - Federal Public Sector Labour Relations and Employment Board",
"division": "",
"heading": "Powers, Duties and Functions",
"text": "94 [Repealed, 2013, c. 40, s. 405]",
"history": "",
"last_amended": "2014-11-01",
"current_to": "2023-07-25",
"citation": "PSEA, s. 94",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-94.html"
},
{
"id": "P-33.01-s95",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "95",
"marginal_note": "",
"part": "PART 6 - Federal Public Sector Labour Relations and Employment Board",
"division": "",
"heading": "Powers, Duties and Functions",
"text": "95 [Repealed, 2013, c. 40, s. 405]",
"history": "",
"last_amended": "2014-11-01",
"current_to": "2023-07-25",
"citation": "PSEA, s. 95",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-95.html"
},
{
"id": "P-33.01-s96",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "96",
"marginal_note": "",
"part": "PART 6 - Federal Public Sector Labour Relations and Employment Board",
"division": "",
"heading": "Powers, Duties and Functions",
"text": "96 [Repealed, 2013, c. 40, s. 405]",
"history": "",
"last_amended": "2014-11-01",
"current_to": "2023-07-25",
"citation": "PSEA, s. 96",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-96.html"
},
{
"id": "P-33.01-s97",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "97",
"marginal_note": "Mediation services",
"part": "PART 6 - Federal Public Sector Labour Relations and Employment Board",
"division": "",
"heading": "Mediation Services",
"text": "97\n(1) The Board may provide mediation services at any stage of a proceeding in order to resolve a complaint.\n(2) [Member as mediator] The provision of mediation services by a member at any stage of hearing a complaint does not prevent that member from continuing to hear the complaint with respect to any issues that have not been resolved, unless the Commission or any person entitled to be heard objects to that member continuing.",
"history": "2003, c. 22, s. 12 \"97\"; 2013, c. 40, s. 414",
"last_amended": "2014-11-01",
"current_to": "2023-07-25",
"citation": "PSEA, s. 97",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-97.html"
},
{
"id": "P-33.01-s98",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "98",
"marginal_note": "",
"part": "PART 6 - Federal Public Sector Labour Relations and Employment Board",
"division": "",
"heading": "Mediation Services",
"text": "98 [Repealed, 2013, c. 40, s. 407]",
"history": "",
"last_amended": "2014-11-01",
"current_to": "2023-07-25",
"citation": "PSEA, s. 98",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-98.html"
},
{
"id": "P-33.01-s99",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "99",
"marginal_note": "",
"part": "PART 6 - Federal Public Sector Labour Relations and Employment Board",
"division": "",
"heading": "Mediation Services",
"text": "99 [Repealed, 2013, c. 40, s. 407]",
"history": "",
"last_amended": "2014-11-01",
"current_to": "2023-07-25",
"citation": "PSEA, s. 99",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-99.html"
},
{
"id": "P-33.01-s100",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "100",
"marginal_note": "",
"part": "PART 6 - Federal Public Sector Labour Relations and Employment Board",
"division": "",
"heading": "Mediation Services",
"text": "100 [Repealed, 2013, c. 40, s. 407]",
"history": "",
"last_amended": "2014-11-01",
"current_to": "2023-07-25",
"citation": "PSEA, s. 100",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-100.html"
},
{
"id": "P-33.01-s101",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "101",
"marginal_note": "",
"part": "PART 6 - Federal Public Sector Labour Relations and Employment Board",
"division": "",
"heading": "Mediation Services",
"text": "101 [Repealed, 2013, c. 40, s. 407]",
"history": "",
"last_amended": "2014-11-01",
"current_to": "2023-07-25",
"citation": "PSEA, s. 101",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-101.html"
},
{
"id": "P-33.01-s102",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "102",
"marginal_note": "",
"part": "PART 6 - Federal Public Sector Labour Relations and Employment Board",
"division": "",
"heading": "Mediation Services",
"text": "102 [Repealed, 2013, c. 40, s. 407]",
"history": "",
"last_amended": "2014-11-01",
"current_to": "2023-07-25",
"citation": "PSEA, s. 102",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-102.html"
},
{
"id": "P-33.01-s103",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "103",
"marginal_note": "Filing of order in Federal Court",
"part": "PART 6 - Federal Public Sector Labour Relations and Employment Board",
"division": "",
"heading": "Complaint Procedure",
"text": "103\n(1) The Board must, on the request in writing of the Commission or any person to whom an order of the Board applies, file a certified copy of the order in the Federal Court unless, in the Board’s opinion\n(a) there is no indication, or likelihood, of failure to comply with the order; or\n(b) there is another good reason why the filing of the order in the Federal Court would serve no useful purpose.\n(2) [Non-application] Section 35 of the Federal Public Sector Labour Relations and Employment Board Act does not apply to an order of the Board referred to in subsection (1).\n(3) [Effect of filing] An order of the Board becomes an order of the Federal Court when a certified copy of it is filed in that court, and it may subsequently be enforced as such.",
"history": "2003, c. 22, s. 12 “103”; 2013, c. 40, s. 407; 2017, c. 9, s. 56",
"last_amended": "2017-06-19",
"current_to": "2023-07-25",
"citation": "PSEA, s. 103",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-103.html"
},
{
"id": "P-33.01-s103.1",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "103.1",
"marginal_note": "Copy of decision provided",
"part": "PART 6 - Federal Public Sector Labour Relations and Employment Board",
"division": "",
"heading": "Complaint Procedure",
"text": "103.1 The Board shall render a decision on a complaint made under subsection 65(1) or section 74, 77 or 83 and provide a copy of it — including any written reasons — and any accompanying order to the Commission and to each person who exercised the right to be heard on the complaint.",
"history": "2013, c. 40, s. 407",
"last_amended": "2014-11-01",
"current_to": "2023-07-25",
"citation": "PSEA, s. 103.1",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-103.1.html"
},
{
"id": "P-33.01-s104",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "104",
"marginal_note": "Certain persons not compellable as witnesses",
"part": "PART 6 - Federal Public Sector Labour Relations and Employment Board",
"division": "",
"heading": "General",
"text": "104 Persons providing mediation services under this Part are not competent or compellable to appear as witnesses in any civil action, suit or other proceeding respecting information obtained in the discharge of their functions under this Part.",
"history": "2003, c. 22, s. 12 \"104\"; 2013, c. 40, s. 407",
"last_amended": "2014-11-01",
"current_to": "2023-07-25",
"citation": "PSEA, s. 104",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-104.html"
},
{
"id": "P-33.01-s105",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "105",
"marginal_note": "Notes and drafts not to be disclosed",
"part": "PART 6 - Federal Public Sector Labour Relations and Employment Board",
"division": "",
"heading": "General",
"text": "105 None of the following may be disclosed without the consent of the person who made them:\n(a) [Repealed, 2013, c. 40, s. 408]\n(b) notes of any person providing mediation services under this Part.",
"history": "2003, c. 22, s. 12 \"105\"; 2013, c. 40, s. 408",
"last_amended": "2014-11-01",
"current_to": "2023-07-25",
"citation": "PSEA, s. 105",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-105.html"
},
{
"id": "P-33.01-s106",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "106",
"marginal_note": "",
"part": "PART 6 - Federal Public Sector Labour Relations and Employment Board",
"division": "",
"heading": "General",
"text": "106 [Repealed, 2013, c. 40, s. 409]",
"history": "",
"last_amended": "2014-11-01",
"current_to": "2023-07-25",
"citation": "PSEA, s. 106",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-106.html"
},
{
"id": "P-33.01-s107",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "107",
"marginal_note": "",
"part": "PART 6 - Federal Public Sector Labour Relations and Employment Board",
"division": "",
"heading": "General",
"text": "107 [Repealed, 2013, c. 40, s. 409]",
"history": "",
"last_amended": "2014-11-01",
"current_to": "2023-07-25",
"citation": "PSEA, s. 107",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-107.html"
},
{
"id": "P-33.01-s108",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "108",
"marginal_note": "",
"part": "PART 6 - Federal Public Sector Labour Relations and Employment Board",
"division": "",
"heading": "General",
"text": "108 [Repealed, 2013, c. 40, s. 409]",
"history": "",
"last_amended": "2014-11-01",
"current_to": "2023-07-25",
"citation": "PSEA, s. 108",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-108.html"
},
{
"id": "P-33.01-s109",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "109",
"marginal_note": "Regulations of Board",
"part": "PART 6 - Federal Public Sector Labour Relations and Employment Board",
"division": "",
"heading": "Regulations",
"text": "109 The Board may make regulations respecting\n(a) the manner in which and the time within which a complaint may be made under subsection 65(1) or section 74, 77 or 83;\n(b) and (c) [Repealed, 2013, c. 40, s. 411]\n(d) the manner of giving notice of an issue to the Canadian Human Rights Commission under subsection 65(5) or section 78;\n(d.1) the manner of giving notice of an issue to the Accessibility Commissioner under subsection 65(9) or section 78.1; and\n(e) the disclosure of information obtained in the course of an appointment process or a complaint proceeding under this Act.",
"history": "2003, c. 22, s. 12 \"109\"; 2013, c. 40, ss. 411, 414; 2019, c. 10, s. 199",
"last_amended": "2019-07-11",
"current_to": "2023-07-25",
"citation": "PSEA, s. 109",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-109.html"
},
{
"id": "P-33.01-s110",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "110",
"marginal_note": "",
"part": "PART 6 - Federal Public Sector Labour Relations and Employment Board",
"division": "",
"heading": "Regulations",
"text": "110 [Repealed, 2013, c. 40, s. 412]",
"history": "",
"last_amended": "2014-11-01",
"current_to": "2023-07-25",
"citation": "PSEA, s. 110",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-110.html"
},
{
"id": "P-33.01-s111",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "111",
"marginal_note": "Definitions",
"part": "PART 7 - Political Activities",
"division": "",
"heading": "Interpretation",
"text": "111\n(1) The following definitions apply in this Part.\nelection means a federal, provincial, territorial or municipal election. (élection)\nfederal election means an election to the House of Commons. (élection fédérale)\nmunicipal election means an election as the mayor or a member of the council of a municipality. (élection municipale)\nmunicipality means\n(a) an incorporated or unincorporated regional municipality, city, town, village, rural municipality, township, county, district or other municipality, however designated; or\n(b) any other local or regional authority that is determined by the Governor in Council to be a municipality for the purposes of this Part. (municipalité)\npolitical activity means\n(a) carrying on any activity in support of, within or in opposition to a political party;\n(b) carrying on any activity in support of or in opposition to a candidate before or during an election period; or\n(c) seeking nomination as or being a candidate in an election before or during the election period. (activité politique)\nprovincial election means an election to the legislature of a province. (élection provinciale)\nterritorial election means an election to the Legislative Assembly of Yukon, the Northwest Territories or Nunavut. (élection territoriale)\n(2) [Meaning of deputy head] For the purposes of this Part, deputy head includes a Commissioner appointed under subsection 4(5).",
"history": "2003, c. 22, ss. 12 “111”, 272; 2013, c. 40, s. 413; 2014, c. 2, s. 55, c. 20, s. 474",
"last_amended": "2014-11-01",
"current_to": "2023-07-25",
"citation": "PSEA, s. 111",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-111.html"
},
{
"id": "P-33.01-s112",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "112",
"marginal_note": "Purpose",
"part": "PART 7 - Political Activities",
"division": "",
"heading": "Purpose of Part",
"text": "112 The purpose of this Part is to recognize the right of employees to engage in political activities while maintaining the principle of political impartiality in the public service.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 112",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-112.html"
},
{
"id": "P-33.01-s113",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "113",
"marginal_note": "Permitted activities",
"part": "PART 7 - Political Activities",
"division": "",
"heading": "Employees",
"text": "113\n(1) An employee may engage in any political activity so long as it does not impair, or is not perceived as impairing, the employee’s ability to perform his or her duties in a politically impartial manner.\n(2) [Regulations] The Governor in Council may, on the recommendation of the Commission, make regulations specifying political activities that are deemed to impair the ability of an employee, or any class of employees, to perform their duties in a politically impartial manner.\n(3) [Factors] In making regulations, the Governor in Council may take into consideration factors such as the nature of the political activity and the nature of the duties of an employee or class of employees and the level and visibility of their positions.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 113",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-113.html"
},
{
"id": "P-33.01-s114",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "114",
"marginal_note": "Seeking candidacy",
"part": "PART 7 - Political Activities",
"division": "",
"heading": "Employees",
"text": "114\n(1) An employee may seek nomination as a candidate in a federal, provincial or territorial election before or during the election period only if the employee has requested and obtained permission from the Commission to do so.\n(2) [Being a candidate before election period] An employee may, before the election period, be a candidate in a federal, provincial or territorial election only if the employee has requested and obtained permission from the Commission to do so.\n(3) [Being a candidate during election period] An employee may, during the election period, be a candidate in a federal, provincial or territorial election only if the employee has requested and obtained a leave of absence without pay from the Commission.\n(4) [Granting of permission] The Commission may grant permission for the purpose of subsection (1) or (2) only if it is satisfied that the employee’s ability to perform his or her duties in a politically impartial manner will not be impaired or perceived to be impaired.\n(5) [Granting of leave] The Commission may grant leave for the purpose of subsection (3) only if it is satisfied that being a candidate during the election period will not impair or be perceived as impairing the employee’s ability to perform his or her duties in a politically impartial manner.\n(6) [Factors] In deciding whether seeking nomination as, or being, a candidate will impair or be perceived as impairing the employee’s ability to perform his or her duties in a politically impartial manner, the Commission may take into consideration factors such as the nature of the election, the nature of the employee’s duties and the level and visibility of the employee’s position.\n(7) [Conditions] The Commission may make permission under subsection (4) conditional on the employee taking a leave of absence without pay for the period or any part of the period in which he or she seeks nomination as a candidate, or for the period or any part of the period in which he or she is a candidate before the election period, as the case may be.\n(8) [Effect of election] An employee ceases to be an employee on the day he or she is declared elected in a federal, provincial or territorial election.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 114",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-114.html"
},
{
"id": "P-33.01-s115",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "115",
"marginal_note": "Candidacy in municipal elections",
"part": "PART 7 - Political Activities",
"division": "",
"heading": "Employees",
"text": "115\n(1) An employee may seek nomination as, or be, a candidate in a municipal election before or during the election period, only if the employee has requested and obtained permission from the Commission to do so.\n(2) [Granting of permission] The Commission may grant permission only if it is satisfied that seeking nomination as, or being, a candidate in the election will not impair or be perceived as impairing the employee’s ability to perform his or her duties in a politically impartial manner.\n(3) [Factors] In deciding whether seeking nomination as, or being, a candidate will impair or be perceived as impairing the employee’s ability to perform his or her duties in a politically impartial manner, the Commission may take into consideration factors such as the nature of the election, the nature of the employee’s duties and the level and visibility of the employee’s position.\n(4) [Conditions] The Commission may make permission under this section conditional on\n(a) the employee taking a leave of absence without pay\n(i) for the period or any part of the period in which he or she seeks nomination as a candidate, or for the period or any part of the period in which he or she is a candidate before the election period, as the case may be, or\n(ii) for the period in which he or she is a candidate during the election period; and\n(b) the employee taking a leave of absence without pay or ceasing to be an employee if he or she is declared elected.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 115",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-115.html"
},
{
"id": "P-33.01-s116",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "116",
"marginal_note": "Notice",
"part": "PART 7 - Political Activities",
"division": "",
"heading": "Employees",
"text": "116 On granting an employee permission under subsection 114(4), leave under subsection 114(5) or permission under subsection 115(2), the Commission shall cause notice that it has done so, together with the name of that employee, to be published in the Canada Gazette.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 116",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-116.html"
},
{
"id": "P-33.01-s117",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "117",
"marginal_note": "Political activities",
"part": "PART 7 - Political Activities",
"division": "",
"heading": "Deputy Heads",
"text": "117 A deputy head shall not engage in any political activity other than voting in an election.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 117",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-117.html"
},
{
"id": "P-33.01-s118",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "118",
"marginal_note": "Investigation and corrective action — employees",
"part": "PART 7 - Political Activities",
"division": "",
"heading": "Allegations",
"text": "118 The Commission may investigate any allegation, in accordance with the regulations, that an employee has failed to comply with any of subsections 113(1), 114(1) to (3) and 115(1) and, if it concludes that the allegation is substantiated, may dismiss the employee or may take any corrective action that it considers appropriate.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 118",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-118.html"
},
{
"id": "P-33.01-s119",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "119",
"marginal_note": "Investigation and dismissal — deputy head",
"part": "PART 7 - Political Activities",
"division": "",
"heading": "Allegations",
"text": "119\n(1) The Commission may investigate any allegation, made to it by a person who is or has been a candidate in an election, that a deputy head has contravened section 117 and, if it concludes that the allegation is substantiated, the Commission shall report its conclusion to the Governor in Council and the Governor in Council may dismiss the deputy head.\n(2) [Exception] Subsection (1) does not apply in respect of any deputy head whose removal from office is expressly provided for by this or any other Act, otherwise than by termination of his or her appointment at pleasure.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 119",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-119.html"
},
{
"id": "P-33.01-s120",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "120",
"marginal_note": "Powers under Inquiries Act",
"part": "PART 7 - Political Activities",
"division": "",
"heading": "Allegations",
"text": "120 In conducting any investigation under this Part, the Commission has all the powers of a commissioner under Part II of the Inquiries Act.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 120",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-120.html"
},
{
"id": "P-33.01-s121",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "121",
"marginal_note": "Persons acting for Commission",
"part": "PART 7 - Political Activities",
"division": "",
"heading": "Allegations",
"text": "121\n(1) The Commission may direct that any investigation under this Part be conducted, in whole or in part, by one or more Commissioners or other persons.\n(2) [Powers of Commissioner] A Commissioner directed under subsection (1) has the powers referred to in section 120 in relation to the matter before the Commissioner.\n(3) [Powers of other person] Subject to any limitations specified by the Commission, a person directed under subsection (1), other than a Commissioner, has the powers referred to in section 120 in relation to the matter before the person.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 121",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-121.html"
},
{
"id": "P-33.01-s122",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "122",
"marginal_note": "Right to be heard",
"part": "PART 7 - Political Activities",
"division": "",
"heading": "Allegations",
"text": "122 A person making an allegation under section 118 or 119 and the employee or deputy head against whom it is made — or their representatives — are entitled to be heard by the Commission, Commissioner or other person, whichever is conducting the investigation.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 122",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-122.html"
},
{
"id": "P-33.01-s123",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "123",
"marginal_note": "Regulations of Governor in Council",
"part": "PART 8 - General",
"division": "",
"heading": "Application of Act",
"text": "123\n(1) The Governor in Council may, notwithstanding any other Act, make regulations applying to any organization or any part of any organization all or any of the provisions of this Act that do not otherwise apply to it.\n(2) [Application of other Acts] A regulation made under subsection (1) prevails over the provisions of any other Act or regulations made under any other Act respecting the same matter.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 123",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-123.html"
},
{
"id": "P-33.01-s124",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "124",
"marginal_note": "Application of regulations",
"part": "PART 8 - General",
"division": "",
"heading": "Application of Act",
"text": "124 A regulation made by the Commission, the Treasury Board or the Governor in Council under this Act may be of general application or may apply to a specified person, position, occupational group, organization or part of an organization, or any class of them, or in respect of a specified process or any class of process.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 124",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-124.html"
},
{
"id": "P-33.01-s125",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "125",
"marginal_note": "Appointment by Governor in Council",
"part": "PART 8 - General",
"division": "",
"heading": "Head of Public Service",
"text": "125 The Governor in Council may appoint and fix the remuneration of the Clerk of the Privy Council and Secretary to the Cabinet.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 125",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-125.html"
},
{
"id": "P-33.01-s126",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "126",
"marginal_note": "Clerk of Privy Council",
"part": "PART 8 - General",
"division": "",
"heading": "Head of Public Service",
"text": "126 The Clerk of the Privy Council and Secretary to the Cabinet is the head of the public service.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 126",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-126.html"
},
{
"id": "P-33.01-s127",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "127",
"marginal_note": "Report of head of the public service",
"part": "PART 8 - General",
"division": "",
"heading": "Head of Public Service",
"text": "127 The head of the public service shall submit a report on the state of the public service in each fiscal year to the Prime Minister, and the Prime Minister shall cause a copy of the report to be laid before each House of Parliament on any of the first fifteen days on which that House is sitting after the Prime Minister receives it.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 127",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-127.html"
},
{
"id": "P-33.01-s127.1",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "127.1",
"marginal_note": "Appointment by Governor in Council",
"part": "PART 8 - General",
"division": "",
"heading": "Deputy Ministers and Other Senior Officials",
"text": "127.1\n(1) The Governor in Council may appoint persons to the following positions and fix their remuneration:\n(a) deputy minister, associate deputy minister and positions of equivalent ranks;\n(b) deputy head, associate deputy head and positions of equivalent ranks; and\n(c) special adviser to a minister.\n(2) [Application of Part 7] For greater certainty, the provisions of Part 7 applicable to deputy heads apply to persons appointed as such or as deputy ministers under subsection (1), and the provisions of that Part applicable to employees apply to other persons appointed under subsection (1).",
"history": "2006, c. 9, s. 106",
"last_amended": "2006-12-12",
"current_to": "2023-07-25",
"citation": "PSEA, s. 127.1",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-127.1.html"
},
{
"id": "P-33.01-s128",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "128",
"marginal_note": "Ministerial staff",
"part": "PART 8 - General",
"division": "",
"heading": "Ministerial Staff",
"text": "128\n(1) A minister, or a person holding the recognized position of Leader of the Opposition in the House of Commons or Leader of the Opposition in the Senate, may appoint an executive assistant and other persons required in his or her office.\n(2) [Termination of employment] A person who is employed in an office referred to in subsection (1) ceases to be so employed thirty days after the person holding a position referred to in subsection (1) ceases to hold that position.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 128",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-128.html"
},
{
"id": "P-33.01-s129",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "129",
"marginal_note": "Regulations",
"part": "PART 8 - General",
"division": "",
"heading": "Ministerial Staff",
"text": "129 The Governor in Council may make regulations applying all or any of the provisions of this Act to any of the positions of persons appointed by ministers under subsection 128(1).",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 129",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-129.html"
},
{
"id": "P-33.01-s130",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "130",
"marginal_note": "Appointments by Governor in Council",
"part": "PART 8 - General",
"division": "",
"heading": "Public Officials",
"text": "130 The Governor in Council may appoint and fix the remuneration of\n(a) the Secretary to the Cabinet for Federal-Provincial Relations;\n(b) the Clerk of the Senate;\n(c) the Clerk of the House of Commons; and\n(d) the Secretary to the Governor General.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 130",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-130.html"
},
{
"id": "P-33.01-s131",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "131",
"marginal_note": "Diplomatic appointments",
"part": "PART 8 - General",
"division": "",
"heading": "Diplomatic Personnel",
"text": "131 Nothing in this Act shall be construed as affecting the right or authority of Her Majesty to appoint ambassadors, ministers, high commissioners or consuls-general of Canada to another country or to appoint other persons to represent Canada in another country.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 131",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-131.html"
},
{
"id": "P-33.01-s132",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "132",
"marginal_note": "Transfer of employees",
"part": "PART 8 - General",
"division": "",
"heading": "Block Transfers",
"text": "132\n(1) Nothing in an order made under the Public Service Rearrangement and Transfer of Duties Act shall be construed as affecting the status of an employee who, immediately before the coming into force of the order, occupied a position in a portion of the core public administration the control or supervision of which has been transferred from one department or other portion of the core public administration to another, or in a department that has been amalgamated and combined, except that the employee shall, on the coming into force of the order, occupy that position in the department or other portion of the core public administration to which the control or supervision has been transferred or in the department as amalgamated and combined.\n(2) [Transfer of other staff] Where an order is made under the Public Service Rearrangement and Transfer of Duties Act, the Governor in Council may, by order made on the recommendation of the Treasury Board and where the Governor in Council is of the opinion that an employee or class of employees is carrying out powers, duties or functions that are in whole or in part in support of or related to the powers, duties and functions of employees referred to in subsection (1) and that it is in the best interests of the core public administration to do so, declare that the employee or class of employees shall, on the coming into force of the order, occupy their positions in the department or other portion of the core public administration where the employees referred to in subsection (1) are currently occupying their positions.\n(3) [Core public administration] For the purposes of this section, the core public administration consists of the departments, as defined in subsection 2(1), and the portions of the federal public administration named in Schedule IV to the Financial Administration Act.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 132",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-132.html"
},
{
"id": "P-33.01-s133",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "133",
"marginal_note": "Fraud",
"part": "PART 8 - General",
"division": "",
"heading": "Offence",
"text": "133 Every person who commits fraud in any appointment process is guilty of an offence punishable on summary conviction.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 133",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-133.html"
},
{
"id": "P-33.01-s134",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "134",
"marginal_note": "Authority to administer",
"part": "PART 8 - General",
"division": "",
"heading": "Oaths and Affirmations",
"text": "134 The Commission or a deputy head may administer oaths and receive affidavits, declarations and solemn affirmations in relation to matters within their respective jurisdictions under this Act.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 134",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-134.html"
},
{
"id": "P-33.01-s135",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "135",
"marginal_note": "Access by Commission",
"part": "PART 8 - General",
"division": "",
"heading": "Access to Facilities and Information",
"text": "135 Deputy heads and employees shall provide the Commission with any facilities, assistance, information and access to their respective offices that the Commission may require for the performance of its duties.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 135",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-135.html"
},
{
"id": "P-33.01-s136",
"act_code": "P-33.01",
"act_short": "PSEA",
"act_name": "Public Service Employment Act",
"section": "136",
"marginal_note": "Review",
"part": "PART 8 - General",
"division": "",
"heading": "Five-year Review",
"text": "136 The minister designated by the Governor in Council for the purposes of this section shall cause a review of this Act and its administration and operation to be conducted five years after this section comes into force, and that minister shall cause a report of the review to be laid before each House of Parliament on any of the first fifteen days on which that House is sitting after the review is completed.",
"history": "",
"last_amended": "2005-12-31",
"current_to": "2023-07-25",
"citation": "PSEA, s. 136",
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/section-136.html"
}
] |