-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathoccupations.json
More file actions
6256 lines (6256 loc) · 322 KB
/
occupations.json
File metadata and controls
6256 lines (6256 loc) · 322 KB
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
[
{
"title": "Legislators",
"noc_code": "00010",
"category": "Management occupations",
"slug": "legislators",
"url": "https://www.jobbank.gc.ca/trend-analysis/search-occupations?searchKeyword=Legislators"
},
{
"title": "Senior government managers and officials",
"noc_code": "00011",
"category": "Management occupations",
"slug": "senior-government-managers-and-officials",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/903/ca",
"title_jobbank": "Town Clerk",
"education_req": [
"A university degree or college diploma is usually required.",
"A graduate degree in a related field may be required.",
"Several years of managerial experience in the public or private sector are required."
]
},
{
"title": "Senior managers - financial, communications and other business services",
"noc_code": "00012",
"category": "Management occupations",
"slug": "senior-managers-financial-communications-and-other-business-services",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/295848/ca",
"title_jobbank": "Chief Technology Officer (CTO)",
"education_req": [
"A university degree in business administration, commerce, computer science or other discipline related to the service provided is usually required.",
"Several years of experience as a middle manager in financial, communications or other business services are usually required.",
"Specialization in a particular functional area or service is possible through specific university training in that area or through previous experience."
]
},
{
"title": "Senior managers - health, education, social and community services and membership organizations",
"noc_code": "00013",
"category": "Management occupations",
"slug": "senior-managers-health-education-social-and-community-services-and-membership-organizations",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/1155/ca",
"title_jobbank": "Association Executive Director",
"education_req": [
"A university degree or college diploma in business administration, hospital administration, finance or other discipline related to the service provided is usually required.",
"Several years of experience as a middle manager in a related institution or organization are usually required.",
"Specialization in a particular functional area or service is possible through specific university or college training in that area or through previous experience."
]
},
{
"title": "Senior managers - trade, broadcasting and other services",
"noc_code": "00014",
"category": "Management occupations",
"slug": "senior-managers-trade-broadcasting-and-other-services",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/1182/ca",
"title_jobbank": "Hotel General Manager",
"education_req": [
"A university degree or college diploma in business administration, finance or other discipline related to the service provided is usually required.",
"Several years of experience as a middle manager in trade, broadcasting or other service are usually required.",
"Specialization in a particular functional area or service is possible through specific university or college training in that area or through previous experience."
]
},
{
"title": "Senior managers - construction, transportation, production and utilities",
"noc_code": "00015",
"category": "Management occupations",
"slug": "senior-managers-construction-transportation-production-and-utilities",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/24263/ca",
"title_jobbank": "Construction General Manager",
"education_req": [
"A university degree or college diploma in engineering, business administration, commerce or other discipline related to the company's product is usually required.",
"Several years of experience as a middle manager in goods production, utilities, transportation or construction are usually required.",
"Specialization in a particular functional area or product is possible through specific university or college training in that area or through previous experience."
]
},
{
"title": "Financial managers",
"noc_code": "10010",
"category": "Management occupations",
"slug": "financial-managers",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/1237/ca",
"title_jobbank": "Treasurer",
"education_req": [
"A bachelor's degree in business administration, economics, commerce or a related field is required.",
"A master's degree in business administration (concentration in finance), or another master's level management program may be required.",
"Several years of experience in accounting, auditing, budgeting, financial planning and analysis or other financial activities are required."
]
},
{
"title": "Human resources managers",
"noc_code": "10011",
"category": "Management occupations",
"slug": "human-resources-managers",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/17397/ca",
"title_jobbank": "Chief, Training",
"education_req": [
"A bachelor's degree in a field related to personnel management, such as business administration, industrial relations, commerce or psychology or completion of a professional development program in personnel administration is required.",
"Several years of experience as a personnel officer or human resource specialist are required.",
"Some employers may require human resources managers to hold a Certified Human Resources Professional (CHRP) designation."
]
},
{
"title": "Purchasing managers",
"noc_code": "10012",
"category": "Management occupations",
"slug": "purchasing-managers",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/14547/ca",
"title_jobbank": "Contract Manager",
"education_req": [
"A bachelor's degree or college diploma in business administration, commerce or economics is usually required.",
"Purchasing managers responsible for units purchasing specialized materials or business services may require a related degree or diploma. For example, a bachelor's degree or college diploma in engineering may be required for purchasing managers responsible for purchasing industrial products.",
"The designation Supply Chain Management Professional (SCMP) or registration in the educational program of the Supply Chain Management Association may be required."
]
},
{
"title": "Other administrative services managers",
"noc_code": "10019",
"category": "Management occupations",
"slug": "other-administrative-services-managers",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/1254/ca",
"title_jobbank": "Records Manager",
"education_req": [
"A bachelor's degree or college diploma in business administration or a related administrative services field is usually required.",
"Several years of experience at a professional level in business administration, finance or administrative services are usually required.",
"An Associate of the Institute of the Chartered Secretaries and Administrators (ACIS), Fellow of the Institute of Chartered Secretaries and Administrators (FCIS) or a Professional Administrator (P Adm) designation may be required for some occupations in this group."
]
},
{
"title": "Insurance, real estate and financial brokerage managers",
"noc_code": "10020",
"category": "Management occupations",
"slug": "insurance-real-estate-and-financial-brokerage-managers",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/14578/ca",
"title_jobbank": "Insurance Manager",
"education_req": [
"A university degree or college diploma in business administration, economics or other related field is usually required.",
"Several years of experience within the appropriate industry are usually required.",
"Licensure appropriate to the service sold, such as real estate, mortgage, securities or insurance, may be required."
]
},
{
"title": "Banking, credit and other investment managers",
"noc_code": "10021",
"category": "Management occupations",
"slug": "banking-credit-and-other-investment-managers",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/17455/ca",
"title_jobbank": "Loans Manager",
"education_req": [
"A university degree or college diploma in business administration, commerce, economics or a related field is usually required.",
"A master's degree in business administration, finance or management science may be required for the management of large commercial loans.",
"A recognized financial designation may be required (CFA, CFP, CIM or others)."
]
},
{
"title": "Advertising, marketing and public relations managers",
"noc_code": "10022",
"category": "Management occupations",
"slug": "advertising-marketing-and-public-relations-managers",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/12312/ca",
"title_jobbank": "Campaign Manager",
"education_req": [
"Advertising and public relations managers",
"A university degree or college diploma in communications, public relations, marketing, journalism or in a related field and several years of experience in an advertising, public relations or communications officer position or in a related occupation are required.",
"Marketing managers"
]
},
{
"title": "Other business services managers",
"noc_code": "10029",
"category": "Management occupations",
"slug": "other-business-services-managers",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/1308/ca",
"title_jobbank": "Legal Firm Manager",
"education_req": [
"A bachelor's degree or college diploma in a field related to the business service provided is usually required.",
"Several years of experience in a field related to the business service provided are usually required.",
"Licences, certificates or registration may be required for some business services managers. For example, accounting firm managers usually require accounting certification."
]
},
{
"title": "Telecommunication carriers managers",
"noc_code": "10030",
"category": "Management occupations",
"slug": "telecommunication-carriers-managers",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/1338/ca",
"title_jobbank": "Network Operations Manager - Telecommunications",
"education_req": [
"A university degree in science, electrical engineering or a related field is usually required.",
"Several years of experience in a related technical profession, including supervisory experience, are usually required."
]
},
{
"title": "Financial auditors and accountants",
"noc_code": "11100",
"category": "Business, finance and administration",
"slug": "financial-auditors-and-accountants",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/113/ca",
"title_jobbank": "Accountant",
"education_req": [
"Chartered professional accountants, chartered accountants (CPA, CA) require a university degree and completion of a professional training program approved by a provincial Institute of Chartered Accountants and, depending on the province, either two years or 30 months of on-the-job training and membership in a provincial Institute of Chartered Accountants upon successful completion of the Uniform Evaluation (UFE).",
"Chartered professional accountants, certified general accountants (CPA, CGA) and chartered professional accountants, certified management accountants (CPA, CMA) require a university degree and completion of an approved training program and several years of on-the-job training and certification with a regulatory body is required in all provinces and territories.",
"Auditors require education, training and recognition as indicated for chartered professional accountants, chartered accountants (CPA, CA), chartered professional accountants, certified general accountants (CPA, CGA) or chartered professional accountants, certified management accountants (CPA, CMA) and some experience as an accountant."
]
},
{
"title": "Financial and investment analysts",
"noc_code": "11101",
"category": "Business, finance and administration",
"slug": "financial-and-investment-analysts",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/12417/ca",
"title_jobbank": "Financial Analyst",
"education_req": [
"A bachelor's degree in commerce, business administration, accounting, finance or economics and on-the-job training and industry courses and programs are usually required.",
"A master's degree in business administration (MBA) (concentration in finance) or in finance may be required.",
"The Chartered Financial Analyst (CFA) designation, available through a program conducted by the CFA Institute or an other recognized financial designations (CFP, CIM or others), is usually required."
]
},
{
"title": "Financial advisors",
"noc_code": "11102",
"category": "Business, finance and administration",
"slug": "financial-advisors",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/26548/ca",
"title_jobbank": "Account Manager",
"education_req": [
"A bachelor's degree in business administration, commerce, economics or a related field is usually required.",
"The designation Certified Financial Planner, awarded by the Financial Planners Standards Council of Canada, may be required.",
"To sell regulated financial products and investments, such as annuities, RRSPs and life insurance, a licence is required from the appropriate governing body."
]
},
{
"title": "Securities agents, investment dealers and brokers",
"noc_code": "11103",
"category": "Business, finance and administration",
"slug": "securities-agents-investment-dealers-and-brokers",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/17677/ca",
"title_jobbank": "Financial Broker",
"education_req": [
"A bachelor's or master's degree in economics, business or other discipline is usually required.",
"A recognized financial designation may be required (CFA, CFP, CIM or others).",
"Securities sales representatives and brokers require completion of industry investment and sales training programs and completion of licensing courses such as the Canadian Securities Course and the Conduct and Practices Handbook Course offered by the Canadian Securities Institute, or acceptable alternatives such as completion of one or more levels of the CFA Program, offered by CFA Institute."
]
},
{
"title": "Other financial officers",
"noc_code": "11109",
"category": "Business, finance and administration",
"slug": "other-financial-officers",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/196/ca",
"title_jobbank": "Trust Officer",
"education_req": [
"A bachelor's degree in business administration, commerce, economics or a related field is usually required.",
"Various training programs and courses are offered by financial institutes and organizations, such as the Canadian Securities Institute, Institute of Canadian Bankers, CFA Institute, Investment Funds Institute and Trust Companies Institute of Canada, and may be required by employers.",
"A recognized financial designation may be required (CFA, CIM or others)."
]
},
{
"title": "Human resources professionals",
"noc_code": "11200",
"category": "Business, finance and administration",
"slug": "human-resources-professionals",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/241/ca",
"title_jobbank": "Mediator",
"education_req": [
"A university degree or college diploma in human resources management or a related field, such as business administration, industrial relations, commerce or psychology or completion of a professional development program in human resources administration is required.",
"Some employers may require human resources professionals to hold a Certified Human Resources Professional (CHRP) designation."
]
},
{
"title": "Professional occupations in business management consulting",
"noc_code": "11201",
"category": "Business, finance and administration",
"slug": "professional-occupations-in-business-management-consulting",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/296072/ca",
"title_jobbank": "Account Executive",
"education_req": [
"A bachelor's degree or college diploma in business administration, commerce or a related discipline is usually required.",
"A graduate degree in business administration may be required.",
"Some establishments may require management consultants to be certified by a provincial management consulting association."
]
},
{
"title": "Professional occupations in advertising, marketing and public relations",
"noc_code": "11202",
"category": "Business, finance and administration",
"slug": "professional-occupations-in-advertising-marketing-and-public-relations",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/20996/ca",
"title_jobbank": "Agent, Career",
"education_req": [
"A university degree or college diploma in business marketing, public relations, communications, journalism, museology or a discipline related to a particular subject matter is usually required.",
"Practitioners in public relations may require an APR (Accredited in Public Relations) designation."
]
},
{
"title": "Supervisors, general office and administrative support workers",
"noc_code": "12010",
"category": "Business, finance and administration",
"slug": "supervisors-general-office-and-administrative-support-workers",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/383/ca",
"title_jobbank": "Office Supervisor",
"education_req": [
"Completion of secondary school is required.",
"Completion of college courses related to area supervised is usually required.",
"Experience in the occupation supervised is usually required."
]
},
{
"title": "Supervisors, finance and insurance office workers",
"noc_code": "12011",
"category": "Business, finance and administration",
"slug": "supervisors-finance-and-insurance-office-workers",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/394/ca",
"title_jobbank": "Billing Supervisor",
"education_req": [
"Completion of a college program or courses in bookkeeping, accounting or a related subject is required.",
"Experience in the clerical occupation supervised is required."
]
},
{
"title": "Supervisors, library, correspondence and related information workers",
"noc_code": "12012",
"category": "Business, finance and administration",
"slug": "supervisors-library-correspondence-and-related-information-workers",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/12451/ca",
"title_jobbank": "Public Opinion Interviewers Supervisor",
"education_req": [
"Completion of secondary school is required.",
"Completion of college courses related to area supervised may be required.",
"Experience in the clerical occupation supervised is usually required."
]
},
{
"title": "Supervisors, supply chain, tracking and scheduling coordination occupations",
"noc_code": "12013",
"category": "Business, finance and administration",
"slug": "supervisors-supply-chain-tracking-and-scheduling-coordination-occupations",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/460/ca",
"title_jobbank": "Head Shipper",
"education_req": [
"Completion of a post-secondary education program of two to three years in business, supply chain, production or manufacturing management and related is usually required.",
"Several years of experience in the occupation supervised are usually required."
]
},
{
"title": "Executive assistants",
"noc_code": "12100",
"category": "Business, finance and administration",
"slug": "executive-assistants",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/531/ca",
"title_jobbank": "Special Assistant",
"education_req": [
"Completion of secondary school is required.",
"A bachelor's degree in public administration, political science or a related discipline is usually required.",
"Experience in a related administrative occupation is usually required."
]
},
{
"title": "Human resources and recruitment officers",
"noc_code": "12101",
"category": "Business, finance and administration",
"slug": "human-resources-and-recruitment-officers",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/12513/ca",
"title_jobbank": "Staffing Officer",
"education_req": [
"A college diploma in a field related to personnel management such as business administration, industrial relations, commerce or completion of a professional development program in personnel administration is usually required.",
"Certification as a Certified Human Resources Professional (CHRP) may be required.",
"Some experience in a clerical or administrative position related to personnel administration may be required."
]
},
{
"title": "Procurement and purchasing agents and officers",
"noc_code": "12102",
"category": "Business, finance and administration",
"slug": "procurement-and-purchasing-agents-and-officers",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/553/ca",
"title_jobbank": "Purchasing Agent",
"education_req": [
"Procurement and purchasing agents and officers usually require a bachelor's degree or college diploma in business administration, commerce or economics.",
"Procurement and purchasing agents and officers purchasing specialized materials or business services may require a related university degree or college diploma. For example, a bachelor's degree or college diploma in engineering may be required for purchasers of industrial products.",
"A certificate in purchasing from the Purchasing Management Association of Canada (PMAC) may be required."
]
},
{
"title": "Conference and event planners",
"noc_code": "12103",
"category": "Business, finance and administration",
"slug": "conference-and-event-planners",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/12546/ca",
"title_jobbank": "Event Planner",
"education_req": [
"A university degree or college diploma in business, tourism or hospitality administration is usually required.",
"Several years of experience in hospitality or tourism administration or in public relations are usually required and may substitute for formal education requirements.",
"Certification relating to special events, meetings or conference management may be required."
]
},
{
"title": "Employment insurance and revenue officers",
"noc_code": "12104",
"category": "Business, finance and administration",
"slug": "employment-insurance-and-revenue-officers",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/618/ca",
"title_jobbank": "Revenue Officer",
"education_req": [
"A bachelor's degree or college diploma is usually required.",
"Several years of related administrative or regulatory experience may be required.",
"Completion of specialized government training is required."
]
},
{
"title": "Court reporters, medical transcriptionists and related occupations",
"noc_code": "12110",
"category": "Business, finance and administration",
"slug": "court-reporters-medical-transcriptionists-and-related-occupations",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/1580/ca",
"title_jobbank": "Court Reporter",
"education_req": [
"Court reporters require completion of secondary school.",
"Completion of a college or other program in court reporting is usually required and the Chartered Shorthand Reporter (CSR) certificate may be required for court reporters.",
"Medical transcriptionists require completion of secondary school."
]
},
{
"title": "Health information management occupations",
"noc_code": "12111",
"category": "Business, finance and administration",
"slug": "health-information-management-occupations",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/25614/ca",
"title_jobbank": "Health Records Technician",
"education_req": [
"Health information management technicians and related workers require completion of a recognized two-year college diploma program in health record technology or health information management.",
"Health information management technicians and related workers are eligible to write the Canadian Health Information Management Association national certification examination which may be required by employers."
]
},
{
"title": "Records management technicians",
"noc_code": "12112",
"category": "Business, finance and administration",
"slug": "records-management-technicians",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/26664/ca",
"title_jobbank": "Records Technician",
"education_req": [
"Records management technicians usually require completion of a two- to three-year college program in information or records management technology.",
"Two to three years' experience in a records management environment may be required."
]
},
{
"title": "Statistical officers and related research support occupations",
"noc_code": "12113",
"category": "Business, finance and administration",
"slug": "statistical-officers-and-related-research-support-occupations",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/26405/ca",
"title_jobbank": "Statistical Officer",
"education_req": [
"Completion of secondary school is required.",
"A college diploma or undergraduate degree in a social science, commerce, statistics or a related field is usually required."
]
},
{
"title": "Accounting technicians and bookkeepers",
"noc_code": "12200",
"category": "Business, finance and administration",
"slug": "accounting-technicians-and-bookkeepers",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/12562/ca",
"title_jobbank": "Bookkeeper",
"education_req": [
"Completion of secondary school is required.",
"Completion of a college program in accounting, bookkeeping or a related field or completion of two years (first level) of a recognized professional accounting program (e.g., Chartered Accounting, Certified General Accounting) or courses in accounting or bookkeeping combined with several years of experience as a financial or accounting clerk are required."
]
},
{
"title": "Insurance adjusters and claims examiners",
"noc_code": "12201",
"category": "Business, finance and administration",
"slug": "insurance-adjusters-and-claims-examiners",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/12566/ca",
"title_jobbank": "Adjuster",
"education_req": [
"Completion of secondary school is required.",
"A bachelor's degree, college diploma or some post-secondary education or several years of experience as a clerk in the claims department or other general insurance experience is required.",
"Several years of on-the-job training and completion of insurance industry courses and training programs are required."
]
},
{
"title": "Insurance underwriters",
"noc_code": "12202",
"category": "Business, finance and administration",
"slug": "insurance-underwriters",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/663/ca",
"title_jobbank": "Group Underwriter",
"education_req": [
"Completion of secondary school and some general insurance experience or a bachelor's degree, college diploma or some post-secondary education is required.",
"Several years of on-the-job training and completion of insurance industry underwriting courses and training programs are required."
]
},
{
"title": "Assessors, business valuators and appraisers",
"noc_code": "12203",
"category": "Business, finance and administration",
"slug": "assessors-business-valuators-and-appraisers",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/862/ca",
"title_jobbank": "Business Valuator",
"education_req": [
"Assessors require a college diploma in municipal assessment and accreditation with the municipal assessment association of the province.",
"Business valuators usually require a bachelor's degree or college diploma in accounting, business or commerce and accreditation with the Canadian Institute of Chartered Business Valuators based on successful completion of its business and security valuation program.",
"Appraisers require a college diploma or vocational training in the field of appraisal or several years of experience in a position related to the field of appraisal."
]
},
{
"title": "Administrative officers",
"noc_code": "13100",
"category": "Business, finance and administration",
"slug": "administrative-officers",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/12477/ca",
"title_jobbank": "Office Manager",
"education_req": [
"Completion of secondary school is required.",
"A university degree or college diploma in business or public administration may be required.",
"Experience in a senior clerical or executive secretarial position related to office administration is usually required."
]
},
{
"title": "Property administrators",
"noc_code": "13101",
"category": "Business, finance and administration",
"slug": "property-administrators",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/17717/ca",
"title_jobbank": "Property Administrator",
"education_req": [
"Completion of secondary school is required in all provinces and territories except for British Columbia.",
"A language proficiency index is required in British Columbia.",
"Property administrators must be a minimum of nineteen years of age in British Columbia."
]
},
{
"title": "Payroll administrators",
"noc_code": "13102",
"category": "Business, finance and administration",
"slug": "payroll-administrators",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/1641/ca",
"title_jobbank": "Payroll Clerk",
"education_req": [
"Completion of secondary school is usually required.",
"Completion of college or other courses in accounting, bookkeeping or payroll administration or experience in payroll administration is usually required.",
"Payroll association certification may be required."
]
},
{
"title": "Administrative assistants",
"noc_code": "13110",
"category": "Business, finance and administration",
"slug": "administrative-assistants",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/1557/ca",
"title_jobbank": "Secretary-clerk",
"education_req": [
"Completion of secondary school is usually required.",
"Completion of a one- or two-year college or other program for administrative assistants or secretaries or previous clerical experience is required."
]
},
{
"title": "Legal administrative assistants",
"noc_code": "13111",
"category": "Business, finance and administration",
"slug": "legal-administrative-assistants",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/1565/ca",
"title_jobbank": "Legal Secretary",
"education_req": [
"Completion of secondary school is usually required.",
"Completion of a one- or two-year college or other program for secretaries or legal secretaries is usually required."
]
},
{
"title": "Medical administrative assistants",
"noc_code": "13112",
"category": "Business, finance and administration",
"slug": "medical-administrative-assistants",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/12598/ca",
"title_jobbank": "Medical Secretary",
"education_req": [
"Completion of secondary school is usually required.",
"Completion of a one- or two-year college program or other specialized courses for secretaries or medical secretaries is usually required."
]
},
{
"title": "Customs, ship and other brokers",
"noc_code": "13200",
"category": "Business, finance and administration",
"slug": "customs-ship-and-other-brokers",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/882/ca",
"title_jobbank": "Shipbroker",
"education_req": [
"Completion of secondary school and some post-secondary education in commerce or a related field is required",
"Customs brokers require several years of on-the-job training and completion of a customs brokers training program through the International Federation of Customs Brokers Association.",
"A customs broker licence, issued by the Canada Border Services Agency, is required for an individual or company to operate a customs brokerage business."
]
},
{
"title": "Production and transportation logistics coordinators",
"noc_code": "13201",
"category": "Business, finance and administration",
"slug": "production-and-transportation-logistics-coordinators",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/2476/ca",
"title_jobbank": "Production Scheduler",
"education_req": [
"Completion of a post-secondary education program of less than two years in Business or Supply Chain Management or extensive experience as a dispatcher, production clerk or scheduling clerk is usually required."
]
},
{
"title": "General office support workers",
"noc_code": "14100",
"category": "Business, finance and administration",
"slug": "general-office-support-workers",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/14056/ca",
"title_jobbank": "Typist",
"education_req": [
"Completion of secondary school is usually required.",
"Completion of secondary school or college business or commercial courses is usually required."
]
},
{
"title": "Receptionists",
"noc_code": "14101",
"category": "Business, finance and administration",
"slug": "receptionists",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/24391/ca",
"title_jobbank": "Receptionist",
"education_req": [
"Completion of secondary school is usually required.",
"On-the-job training may be provided."
]
},
{
"title": "Personnel clerks",
"noc_code": "14102",
"category": "Business, finance and administration",
"slug": "personnel-clerks",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/2306/ca",
"title_jobbank": "Staffing Clerk",
"education_req": [
"Completion of secondary school is usually required.",
"Completion of college or other courses in personnel administration may be required.",
"Some clerical experience may be required."
]
},
{
"title": "Court clerks and related court services occupations",
"noc_code": "14103",
"category": "Business, finance and administration",
"slug": "court-clerks-and-related-court-services-occupations",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/2309/ca",
"title_jobbank": "Court Clerk",
"education_req": [
"Completion of secondary school is required.",
"On-the-job training is provided for court officers, court clerks, and court liaison officers.",
"Special Constable Certification may be required for court officers and court liaison officers."
]
},
{
"title": "Survey interviewers and statistical clerks",
"noc_code": "14110",
"category": "Business, finance and administration",
"slug": "survey-interviewers-and-statistical-clerks",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/2372/ca",
"title_jobbank": "Census Enumerator",
"education_req": [
"Completion of secondary school may be required.",
"Experience in the operation of a computer may be required.",
"On-the-job training is usually provided."
]
},
{
"title": "Data entry clerks",
"noc_code": "14111",
"category": "Business, finance and administration",
"slug": "data-entry-clerks",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/19209/ca",
"title_jobbank": "Data Processor",
"education_req": [
"Completion of secondary school may be required.",
"College or other courses in data entry may be required."
]
},
{
"title": "Desktop publishing operators and related occupations",
"noc_code": "14112",
"category": "Business, finance and administration",
"slug": "desktop-publishing-operators-and-related-occupations",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/19261/ca",
"title_jobbank": "Typographer",
"education_req": [
"Completion of secondary school is required.",
"Completion of a college program in graphic arts, or other training in typography, computer typesetting or desktop publishing, is usually required."
]
},
{
"title": "Accounting and related clerks",
"noc_code": "14200",
"category": "Business, finance and administration",
"slug": "accounting-and-related-clerks",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/14079/ca",
"title_jobbank": "Audit Clerk",
"education_req": [
"Completion of secondary school is usually required.",
"Completion of college or other courses certified by the Certified General Accountants Association of Canada, Canadian Securities Institute or Canadian Bookkeepers Association may be required.",
"Some accounting clerks must be bondable."
]
},
{
"title": "Banking, insurance and other financial clerks",
"noc_code": "14201",
"category": "Business, finance and administration",
"slug": "banking-insurance-and-other-financial-clerks",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/1656/ca",
"title_jobbank": "Bank Clerk",
"education_req": [
"Completion of secondary school is required.",
"A business college diploma may be required.",
"On-the-job training and short-term training courses or programs specific to the financial establishment are usually required."
]
},
{
"title": "Collection clerks",
"noc_code": "14202",
"category": "Business, finance and administration",
"slug": "collection-clerks",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/19286/ca",
"title_jobbank": "Claims Collector",
"education_req": [
"Completion of secondary school is required.",
"A business college diploma may be required.",
"A period of on-the-job training is often provided for collection clerks and collection officers."
]
},
{
"title": "Library assistants and clerks",
"noc_code": "14300",
"category": "Business, finance and administration",
"slug": "library-assistants-and-clerks",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/24861/ca",
"title_jobbank": "Library Assistant",
"education_req": [
"Completion of secondary school is usually required."
]
},
{
"title": "Correspondence, publication and regulatory clerks",
"noc_code": "14301",
"category": "Business, finance and administration",
"slug": "correspondence-publication-and-regulatory-clerks",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/2359/ca",
"title_jobbank": "Reader",
"education_req": [
"Completion of secondary school is required.",
"Additional courses or a diploma in writing, journalism or a related field may be required.",
"Previous clerical or administrative experience may be required."
]
},
{
"title": "Shippers and receivers",
"noc_code": "14400",
"category": "Business, finance and administration",
"slug": "shippers-and-receivers",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/15253/ca",
"title_jobbank": "Shipper",
"education_req": [
"Completion of secondary school is usually required.",
"Experience in a related clerical occupation or as a warehouse worker may be required.",
"A forklift certificate may be required."
]
},
{
"title": "Storekeepers and partspersons",
"noc_code": "14401",
"category": "Business, finance and administration",
"slug": "storekeepers-and-partspersons",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/19335/ca",
"title_jobbank": "Storekeeper",
"education_req": [
"Completion of secondary school is usually required.",
"Completion of a three-year apprenticeship program or completion of specialized training in high school and a one-year college program for partspersons may be required.",
"Trade certification for partspersons is available, but voluntary, in all provinces and territories."
]
},
{
"title": "Production logistics workers",
"noc_code": "14402",
"category": "Business, finance and administration",
"slug": "production-logistics-workers",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/2481/ca",
"title_jobbank": "Tally Clerk - Production",
"education_req": [
"Completion of secondary school is usually required."
]
},
{
"title": "Purchasing and inventory control workers",
"noc_code": "14403",
"category": "Business, finance and administration",
"slug": "purchasing-and-inventory-control-workers",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/15274/ca",
"title_jobbank": "Procurement Clerk",
"education_req": [
"Completion of secondary school is usually required.",
"Courses in purchasing management may be required for purchasing control workers.",
"Courses in production and inventory management and ability to operate a computerized inventory system may be required for inventory control workers."
]
},
{
"title": "Dispatchers",
"noc_code": "14404",
"category": "Business, finance and administration",
"slug": "dispatchers",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/19376/ca",
"title_jobbank": "Truck Dispatcher",
"education_req": [
"Completion of secondary school is required.",
"Police and emergency dispatchers and other radio operators usually require provincial radio operator's certificates.",
"Police and emergency dispatchers are required to complete formal on-the-job training. Other dispatchers usually undergo some informal on-the-job training."
]
},
{
"title": "Transportation route and crew schedulers",
"noc_code": "14405",
"category": "Business, finance and administration",
"slug": "transportation-route-and-crew-schedulers",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/15289/ca",
"title_jobbank": "Schedule Maker",
"education_req": [
"Completion of secondary school is required.",
"Several years of experience in an appropriate transportation sector are usually required.",
"On-the-job training may be provided."
]
},
{
"title": "Engineering managers",
"noc_code": "20010",
"category": "Natural and applied sciences",
"slug": "engineering-managers",
"url": "https://www.jobbank.gc.ca/trend-analysis/search-occupations?searchKeyword=Engineering%20managers"
},
{
"title": "Architecture and science managers",
"noc_code": "20011",
"category": "Natural and applied sciences",
"slug": "architecture-and-science-managers",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/296351/ca",
"title_jobbank": "Sustainability Manager",
"education_req": [
"Architecture managers require a degree in architecture, registration as a professional architect and several years of experience as an architect.",
"Landscape architecture managers require a degree in landscape architecture, licensing as a professional landscape architect and several years of experience as a landscape architect.",
"Science and other managers in this unit group require a master's or doctoral degree in a scientific discipline and several years of experience in a related scientific discipline."
]
},
{
"title": "Computer and information systems managers",
"noc_code": "20012",
"category": "Natural and applied sciences",
"slug": "computer-and-information-systems-managers",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/1449/ca",
"title_jobbank": "Computer Manager",
"education_req": [
"A bachelor's or master's degree in computer science, business administration, commerce or engineering is usually required.",
"Several years of experience in systems analysis, data administration, software engineering, network design or computer programming, including supervisory experience, are required."
]
},
{
"title": "Physicists and astronomers",
"noc_code": "21100",
"category": "Natural and applied sciences",
"slug": "physicists-and-astronomers",
"url": "https://www.jobbank.gc.ca/trend-analysis/search-occupations?searchKeyword=Physicists%20and%20astronomers"
},
{
"title": "Chemists",
"noc_code": "21101",
"category": "Natural and applied sciences",
"slug": "chemists",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/20049/ca",
"title_jobbank": "Chemist",
"education_req": [
"A bachelor's degree in chemistry, biochemistry or a related discipline is required.",
"A master's or doctoral degree is usually required for employment as a research chemist.",
"Licensing by a provincial association of chemists is required in Quebec and available but voluntary, in Nova Scotia, Ontario, Saskatchewan, Alberta and British Columbia."
]
},
{
"title": "Geoscientists and oceanographers",
"noc_code": "21102",
"category": "Natural and applied sciences",
"slug": "geoscientists-and-oceanographers",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/2553/ca",
"title_jobbank": "Geophysicist",
"education_req": [
"Geoscientists require a university degree in geology, geochemistry, geophysics or a related discipline.",
"A master's or doctoral degree in geophysics, physics, mathematics or engineering may be required for employment as a geophysicist.",
"Registration with a provincial or territorial association of professional engineers, geologists, geophysicists or geoscientists is usually required for employment and is mandatory to practice in all provinces and territories except Prince Edward Island and the Yukon."
]
},
{
"title": "Meteorologists and climatologists",
"noc_code": "21103",
"category": "Natural and applied sciences",
"slug": "meteorologists-and-climatologists",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/2586/ca",
"title_jobbank": "Climatologist",
"education_req": [
"A bachelor's or master's degree in meteorology, atmospheric sciences or in a related field is required.",
"A doctoral degree is usually required for employment as a research scientist in meteorology.",
"Formal training is provided by Environment Canada for operational meteorologists employed by the federal government."
]
},
{
"title": "Other professional occupations in physical sciences",
"noc_code": "21109",
"category": "Natural and applied sciences",
"slug": "other-professional-occupations-in-physical-sciences",
"url": "https://www.jobbank.gc.ca/trend-analysis/search-occupations?searchKeyword=Other%20professional%20occupations%20in%20physical%20sciences"
},
{
"title": "Biologists and related scientists",
"noc_code": "21110",
"category": "Natural and applied sciences",
"slug": "biologists-and-related-scientists",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/2621/ca",
"title_jobbank": "Biologist",
"education_req": [
"A bachelor's degree in biology or in a related discipline is required for biologists.",
"A master's or doctoral degree in biology or a related discipline is required for employment as a research scientist in biology.",
"Post-doctoral research experience is usually required before employment in academic departments or research institutions."
]
},
{
"title": "Forestry professionals",
"noc_code": "21111",
"category": "Natural and applied sciences",
"slug": "forestry-professionals",
"url": "https://www.jobbank.gc.ca/trend-analysis/search-occupations?searchKeyword=Forestry%20professionals"
},
{
"title": "Agricultural representatives, consultants and specialists",
"noc_code": "21112",
"category": "Natural and applied sciences",
"slug": "agricultural-representatives-consultants-and-specialists",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/15316/ca",
"title_jobbank": "Agronomist",
"education_req": [
"A bachelor's or master's degree in agriculture or in a related science is required.",
"Membership or eligibility for membership in a provincial institute of agrology is usually required.",
"In Quebec, membership in the Ordre professionnel des agronomes is mandatory."
]
},
{
"title": "Public and environmental health and safety professionals",
"noc_code": "21120",
"category": "Natural and applied sciences",
"slug": "public-and-environmental-health-and-safety-professionals",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/22691/ca",
"title_jobbank": "Food Inspector",
"education_req": [
"A bachelor's degree in a discipline such as food science, environmental studies, chemistry or health and safety is usually required.",
"Public health inspectors employed outside Quebec require certification with the Canadian Institute of Public Health Inspectors.",
"Environmental health and safety professionals may require certification with the Board of Canadian Registered Safety Professionals (BCRSP)."
]
},
{
"title": "Architects",
"noc_code": "21200",
"category": "Natural and applied sciences",
"slug": "architects",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/17867/ca",
"title_jobbank": "Architect",
"education_req": [
"A bachelor's degree from an accredited school of architecture or completion of the syllabus of studies from the Royal Architectural Institute of Canada (RAIC) is required.",
"A master's degree in architecture may be required.",
"Completion of a three-year internship under the supervision of a registered architect is required."
]
},
{
"title": "Landscape architects",
"noc_code": "21201",
"category": "Natural and applied sciences",
"slug": "landscape-architects",
"url": "https://www.jobbank.gc.ca/trend-analysis/search-occupations?searchKeyword=Landscape%20architects"
},
{
"title": "Urban and land use planners",
"noc_code": "21202",
"category": "Natural and applied sciences",
"slug": "urban-and-land-use-planners",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/22460/ca",
"title_jobbank": "Urban Planner",
"education_req": [
"A bachelor's degree in urban and regional planning, geography, architecture, engineering or a related discipline is required.",
"A master's degree in one of these disciplines may be required.",
"Membership in the Canadian Institute of Planners is usually required."
]
},
{
"title": "Land surveyors",
"noc_code": "21203",
"category": "Natural and applied sciences",
"slug": "land-surveyors",
"url": "https://www.jobbank.gc.ca/marketreport/summary-occupation/24416/ca",