Seek Job Scraper Lite (Pay Per Row) avatar

Seek Job Scraper Lite (Pay Per Row)

Try for free

Pay $0.30 for 1,000 results

Go to Store
Seek Job Scraper Lite (Pay Per Row)

Seek Job Scraper Lite (Pay Per Row)

websift/seek-job-scraper-pay-per-row
Try for free

Pay $0.30 for 1,000 results

Search jobs on seek with various inputs

You can access the Seek Job Scraper Lite (Pay Per Row) programmatically from your own applications by using the Apify API. You can choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.

1{
2  "openapi": "3.0.1",
3  "info": {
4    "version": "0.0",
5    "x-build-id": "aztI5JqyMXJChtLL0"
6  },
7  "servers": [
8    {
9      "url": "https://api.apify.com/v2"
10    }
11  ],
12  "paths": {
13    "/acts/websift~seek-job-scraper-pay-per-row/run-sync-get-dataset-items": {
14      "post": {
15        "operationId": "run-sync-get-dataset-items-websift-seek-job-scraper-pay-per-row",
16        "x-openai-isConsequential": false,
17        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
18        "tags": [
19          "Run Actor"
20        ],
21        "requestBody": {
22          "required": true,
23          "content": {
24            "application/json": {
25              "schema": {
26                "$ref": "#/components/schemas/inputSchema"
27              }
28            }
29          }
30        },
31        "parameters": [
32          {
33            "name": "token",
34            "in": "query",
35            "required": true,
36            "schema": {
37              "type": "string"
38            },
39            "description": "Enter your Apify token here"
40          }
41        ],
42        "responses": {
43          "200": {
44            "description": "OK"
45          }
46        }
47      }
48    },
49    "/acts/websift~seek-job-scraper-pay-per-row/runs": {
50      "post": {
51        "operationId": "runs-sync-websift-seek-job-scraper-pay-per-row",
52        "x-openai-isConsequential": false,
53        "summary": "Executes an Actor and returns information about the initiated run in response.",
54        "tags": [
55          "Run Actor"
56        ],
57        "requestBody": {
58          "required": true,
59          "content": {
60            "application/json": {
61              "schema": {
62                "$ref": "#/components/schemas/inputSchema"
63              }
64            }
65          }
66        },
67        "parameters": [
68          {
69            "name": "token",
70            "in": "query",
71            "required": true,
72            "schema": {
73              "type": "string"
74            },
75            "description": "Enter your Apify token here"
76          }
77        ],
78        "responses": {
79          "200": {
80            "description": "OK",
81            "content": {
82              "application/json": {
83                "schema": {
84                  "$ref": "#/components/schemas/runsResponseSchema"
85                }
86              }
87            }
88          }
89        }
90      }
91    },
92    "/acts/websift~seek-job-scraper-pay-per-row/run-sync": {
93      "post": {
94        "operationId": "run-sync-websift-seek-job-scraper-pay-per-row",
95        "x-openai-isConsequential": false,
96        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
97        "tags": [
98          "Run Actor"
99        ],
100        "requestBody": {
101          "required": true,
102          "content": {
103            "application/json": {
104              "schema": {
105                "$ref": "#/components/schemas/inputSchema"
106              }
107            }
108          }
109        },
110        "parameters": [
111          {
112            "name": "token",
113            "in": "query",
114            "required": true,
115            "schema": {
116              "type": "string"
117            },
118            "description": "Enter your Apify token here"
119          }
120        ],
121        "responses": {
122          "200": {
123            "description": "OK"
124          }
125        }
126      }
127    }
128  },
129  "components": {
130    "schemas": {
131      "inputSchema": {
132        "type": "object",
133        "required": [
134          "searchTerm"
135        ],
136        "properties": {
137          "searchTerm": {
138            "title": "Search term",
139            "type": "string",
140            "description": "Job title or keyword to search for.",
141            "default": "Software Engineer"
142          },
143          "maxResults": {
144            "title": "Maximum results",
145            "maximum": 550,
146            "type": "integer",
147            "description": "The maximum number of job listings to return.",
148            "default": 100
149          },
150          "sortBy": {
151            "title": "Sort by",
152            "enum": [
153              "ListedDate",
154              "KeywordRelevance"
155            ],
156            "type": "string",
157            "description": "Sort order for job listings.",
158            "default": "ListedDate"
159          },
160          "dateRange": {
161            "title": "Date Range",
162            "maximum": 365,
163            "type": "integer",
164            "description": "Specifies the age of the oldest job posting in days, defaulting to 31 days."
165          },
166          "salaryType": {
167            "title": "Salary Type",
168            "enum": [
169              "Annual",
170              "Monthly",
171              "Hourly"
172            ],
173            "type": "string",
174            "description": "Select the salary format (Annual, Monthly, or Hourly) for job posting filtering."
175          },
176          "salaryMin": {
177            "title": "Minimum Salary",
178            "minimum": 0,
179            "type": "integer",
180            "description": "Set the lowest acceptable salary (in AUD) for job posting results."
181          },
182          "salaryMax": {
183            "title": "Maximum Salary",
184            "maximum": 100000000,
185            "type": "integer",
186            "description": "Set the highest acceptable salary (in AUD) for job posting results."
187          },
188          "suburbOrCity": {
189            "title": "Suburb or City",
190            "type": "string",
191            "description": "The suburb or city for the job location."
192          },
193          "state": {
194            "title": "State",
195            "type": "string",
196            "description": "The state for the job location."
197          },
198          "postCode": {
199            "title": "Postcode",
200            "type": "string",
201            "description": "The postcode for the job location."
202          },
203          "radius": {
204            "title": "Radius",
205            "maximum": 500,
206            "type": "integer",
207            "description": "Radius in kilometers for job search."
208          },
209          "workTypes": {
210            "title": "Filter job postings based on work types",
211            "type": "array",
212            "description": "Filter job postings based on work types",
213            "items": {
214              "type": "string",
215              "enum": [
216                "fulltime",
217                "parttime",
218                "contract",
219                "casual"
220              ],
221              "enumTitles": [
222                "Full Time",
223                "Part Time",
224                "Contract",
225                "Casual"
226              ]
227            }
228          },
229          "accounting": {
230            "title": "All Accounting Subclasses",
231            "type": "boolean",
232            "description": "Include all accounting subcategories in job search.",
233            "default": false
234          },
235          "accounts-officers-clerks": {
236            "title": "Accounts Officers & Clerks",
237            "type": "boolean",
238            "description": "Filter jobs for accounts officers, clerks, and administrative roles.",
239            "default": false
240          },
241          "accounts-payable": {
242            "title": "Accounts Payable",
243            "type": "boolean",
244            "description": "Search for jobs focused on managing company expenses and payments.",
245            "default": false
246          },
247          "accounts-receivable-credit-control": {
248            "title": "Accounts Receivable & Credit Control",
249            "type": "boolean",
250            "description": "Filter jobs handling customer invoicing and credit management.",
251            "default": false
252          },
253          "analysis-reporting": {
254            "title": "Analysis & Reporting",
255            "type": "boolean",
256            "description": "Search for jobs involving financial analysis, budgeting, and reporting.",
257            "default": false
258          },
259          "assistant-accountants": {
260            "title": "Assistant Accountants",
261            "type": "boolean",
262            "description": "Filter jobs for entry-level or support roles in accounting.",
263            "default": false
264          },
265          "audit-external": {
266            "title": "Audit External",
267            "type": "boolean",
268            "description": "Filter jobs for external audit roles, ensuring company compliance.",
269            "default": false
270          },
271          "audit-internal": {
272            "title": "Audit Internal",
273            "type": "boolean",
274            "description": "Filter jobs for internal audit roles, evaluating company processes.",
275            "default": false
276          },
277          "bookkeeping-small-practice-accounting": {
278            "title": "Bookkeeping & Small Practice Accounting",
279            "type": "boolean",
280            "description": "Search for bookkeeping and small accounting firm jobs.",
281            "default": false
282          },
283          "business-services-corporate-advisory": {
284            "title": "Business Services & Corporate Advisory",
285            "type": "boolean",
286            "description": "Filter jobs providing business advice and corporate services.",
287            "default": false
288          },
289          "company-secretaries": {
290            "title": "Company Secretaries",
291            "type": "boolean",
292            "description": "Search for company secretary jobs, handling governance and compliance.",
293            "default": false
294          },
295          "compliance-risk": {
296            "title": "Compliance & Risk",
297            "type": "boolean",
298            "description": "Filter jobs managing company compliance and mitigating risk.",
299            "default": false
300          },
301          "cost-accounting": {
302            "title": "Cost Accounting",
303            "type": "boolean",
304            "description": "Filter jobs analyzing and managing company costs.",
305            "default": false
306          },
307          "financial-accounting-reporting": {
308            "title": "Financial Accounting & Reporting",
309            "type": "boolean",
310            "description": "Search for jobs preparing financial statements and reports.",
311            "default": false
312          },
313          "financial-managers-controllers": {
314            "title": "Financial Managers & Controllers",
315            "type": "boolean",
316            "description": "Filter jobs overseeing financial strategy and operations.",
317            "default": false
318          },
319          "forensic-accounting-investigation": {
320            "title": "Forensic Accounting & Investigation",
321            "type": "boolean",
322            "description": "Search for jobs investigating financial irregularities and disputes.",
323            "default": false
324          },
325          "insolvency-corporate-recovery": {
326            "title": "Insolvency & Corporate Recovery",
327            "type": "boolean",
328            "description": "Filter jobs handling company insolvency and restructuring.",
329            "default": false
330          },
331          "inventory-fixed-assets": {
332            "title": "Inventory & Fixed Assets",
333            "type": "boolean",
334            "description": "Search for jobs managing inventory and fixed asset accounting.",
335            "default": false
336          },
337          "management": {
338            "title": "Management",
339            "type": "boolean",
340            "description": "Filter jobs in accounting management and leadership.",
341            "default": false
342          },
343          "management-accounting-budgeting": {
344            "title": "Management Accounting & Budgeting",
345            "type": "boolean",
346            "description": "Search for jobs analyzing financial data for business decisions.",
347            "default": false
348          },
349          "payroll": {
350            "title": "Payroll",
351            "type": "boolean",
352            "description": "Filter jobs handling employee payroll and benefits administration.",
353            "default": false
354          },
355          "strategy-planning": {
356            "title": "Strategy & Planning",
357            "type": "boolean",
358            "description": "Filter jobs developing and implementing business strategies.",
359            "default": false
360          },
361          "systems-accounting-it-audit": {
362            "title": "Systems Accounting & IT Audit",
363            "type": "boolean",
364            "description": "Search for jobs evaluating accounting systems and IT controls.",
365            "default": false
366          },
367          "taxation": {
368            "title": "Taxation",
369            "type": "boolean",
370            "description": "Filter jobs handling tax planning, compliance, and advisory services.",
371            "default": false
372          },
373          "treasury": {
374            "title": "Treasury",
375            "type": "boolean",
376            "description": "Search for jobs managing company finances, cash flow, and investments.",
377            "default": false
378          },
379          "other": {
380            "title": "Other",
381            "type": "boolean",
382            "description": "Filter jobs that don't fit into specific accounting categories.",
383            "default": false
384          },
385          "administration-office-support": {
386            "title": "All Administration Office Support Subclasses",
387            "type": "boolean",
388            "description": "Include all administration and office support subcategories.",
389            "default": false
390          },
391          "administrative-assistants": {
392            "title": "Administrative Assistants",
393            "type": "boolean",
394            "description": "Filter jobs providing administrative support to teams or executives.",
395            "default": false
396          },
397          "client-sales-administration": {
398            "title": "Client Sales Administration",
399            "type": "boolean",
400            "description": "Search for jobs handling client sales, orders, and administrative tasks.",
401            "default": false
402          },
403          "contracts-administration": {
404            "title": "Contracts Administration",
405            "type": "boolean",
406            "description": "Filter jobs managing contracts, agreements, and compliance.",
407            "default": false
408          },
409          "data-entry-word-processing": {
410            "title": "Data Entry & Word Processing",
411            "type": "boolean",
412            "description": "Search for jobs entering data, preparing documents, and performing clerical tasks.",
413            "default": false
414          },
415          "office-management": {
416            "title": "Office Management",
417            "type": "boolean",
418            "description": "Filter jobs overseeing office operations, staff, and resources.",
419            "default": false
420          },
421          "pa-ea-secretarial": {
422            "title": "PA/EA & Secretarial",
423            "type": "boolean",
424            "description": "Search for jobs providing executive-level administrative support.",
425            "default": false
426          },
427          "receptionists": {
428            "title": "Receptionists",
429            "type": "boolean",
430            "description": "Filter jobs handling front desk, customer service, and phone duties.",
431            "default": false
432          },
433          "records-management-document-control": {
434            "title": "Records Management & Document Control",
435            "type": "boolean",
436            "description": "Search for jobs managing company records, files, and documentation.",
437            "default": false
438          },
439          "administration-office-support-other": {
440            "title": "Other",
441            "type": "boolean",
442            "description": "Filter administration and office support jobs that don't fit specific categories.",
443            "default": false
444          },
445          "advertising-arts-media": {
446            "title": "All Advertising Arts Media Subclasses",
447            "type": "boolean",
448            "description": "Include all advertising, arts, and media subcategories.",
449            "default": false
450          },
451          "agency-account-management": {
452            "title": "Agency Account Management",
453            "type": "boolean",
454            "description": "Filter jobs managing client relationships at advertising agencies.",
455            "default": false
456          },
457          "art-direction": {
458            "title": "Art Direction",
459            "type": "boolean",
460            "description": "Search for jobs leading visual creative direction in advertising.",
461            "default": false
462          },
463          "editing-publishing": {
464            "title": "Editing & Publishing",
465            "type": "boolean",
466            "description": "Filter jobs in editing, publishing, and content creation.",
467            "default": false
468          },
469          "advertising-arts-media-event-management": {
470            "title": "Event Management",
471            "type": "boolean",
472            "description": "Search for jobs planning and executing events and activations.",
473            "default": false
474          },
475          "journalism-writing": {
476            "title": "Journalism & Writing",
477            "type": "boolean",
478            "description": "Filter jobs in journalism, writing, and content creation.",
479            "default": false
480          },
481          "advertising-arts-media-management": {
482            "title": "Management",
483            "type": "boolean",
484            "description": "Search for management jobs in advertising, arts, and media.",
485            "default": false
486          },
487          "media-strategy-planning-buying": {
488            "title": "Media Strategy, Planning & Buying",
489            "type": "boolean",
490            "description": "Filter jobs developing media plans and buying ad space.",
491            "default": false
492          },
493          "performing-arts": {
494            "title": "Performing Arts",
495            "type": "boolean",
496            "description": "Search for jobs in theater, dance, music, and other performing arts.",
497            "default": false
498          },
499          "photography": {
500            "title": "Photography",
501            "type": "boolean",
502            "description": "Filter jobs in photography for advertising, editorial, and commercial use.",
503            "default": false
504          },
505          "programming-production": {
506            "title": "Programming & Production",
507            "type": "boolean",
508            "description": "Search for jobs in TV, film, and digital content production.",
509            "default": false
510          },
511          "promotions": {
512            "title": "Promotions",
513            "type": "boolean",
514            "description": "Filter jobs creating promotional materials and campaigns.",
515            "default": false
516          },
517          "advertising-arts-media-other": {
518            "title": "Other",
519            "type": "boolean",
520            "description": "Filter advertising, arts, and media jobs that don't fit specific categories.",
521            "default": false
522          },
523          "banking-financial-services": {
524            "title": "All Banking Financial Services Subclasses",
525            "type": "boolean",
526            "description": "Include all banking and financial services subcategories.",
527            "default": false
528          },
529          "account-relationship-management": {
530            "title": "Account Relationship Management",
531            "type": "boolean",
532            "description": "Filter jobs managing client relationships in banking.",
533            "default": false
534          },
535          "banking-financial-services-analysis-reporting": {
536            "title": "Analysis & Reporting",
537            "type": "boolean",
538            "description": "Search for jobs analyzing financial data and creating reports.",
539            "default": false
540          },
541          "banking-business": {
542            "title": "Banking Business",
543            "type": "boolean",
544            "description": "Filter jobs in business banking, lending, and finance.",
545            "default": false
546          },
547          "banking-corporate-institutional": {
548            "title": "Banking Corporate & Institutional",
549            "type": "boolean",
550            "description": "Search for jobs serving corporate and institutional clients.",
551            "default": false
552          },
553          "banking-retail-branch": {
554            "title": "Banking Retail & Branch",
555            "type": "boolean",
556            "description": "Filter jobs in retail banking, branch management, and customer service.",
557            "default": false
558          },
559          "client-services": {
560            "title": "Client Services",
561            "type": "boolean",
562            "description": "Search for jobs providing service and support to banking clients.",
563            "default": false
564          },
565          "banking-financial-services-compliance-risk": {
566            "title": "Compliance & Risk",
567            "type": "boolean",
568            "description": "Filter jobs ensuring regulatory compliance and managing financial risk.",
569            "default": false
570          },
571          "corporate-finance-investment-banking": {
572            "title": "Corporate Finance & Investment Banking",
573            "type": "boolean",
574            "description": "Search for jobs advising on mergers, acquisitions, and corporate finance.",
575            "default": false
576          },
577          "credit": {
578            "title": "Credit",
579            "type": "boolean",
580            "description": "Filter jobs evaluating and managing credit risk and lending.",
581            "default": false
582          },
583          "financial-planning": {
584            "title": "Financial Planning",
585            "type": "boolean",
586            "description": "Search for jobs creating personalized financial plans for clients.",
587            "default": false
588          },
589          "funds-management": {
590            "title": "Funds Management",
591            "type": "boolean",
592            "description": "Filter jobs managing investment portfolios and funds.",
593            "default": false
594          },
595          "banking-financial-services-management": {
596            "title": "Management",
597            "type": "boolean",
598            "description": "Search for management jobs in banking and financial services.",
599            "default": false
600          },
601          "mortgages": {
602            "title": "Mortgages",
603            "type": "boolean",
604            "description": "Filter jobs originating, processing, and servicing mortgages.",
605            "default": false
606          },
607          "settlements": {
608            "title": "Settlements",
609            "type": "boolean",
610            "description": "Search for jobs facilitating financial transactions and settlements.",
611            "default": false
612          },
613          "stockbroking-trading": {
614            "title": "Stockbroking & Trading",
615            "type": "boolean",
616            "description": "Filter jobs buying and selling securities, stocks, and bonds.",
617            "default": false
618          },
619          "banking-financial-services-treasury": {
620            "title": "Treasury",
621            "type": "boolean",
622            "description": "Search for jobs managing company finances, cash flow, and investments.",
623            "default": false
624          },
625          "banking-financial-services-other": {
626            "title": "Other",
627            "type": "boolean",
628            "description": "Filter banking and financial services jobs that don't fit specific categories.",
629            "default": false
630          },
631          "call-centre-customer-service": {
632            "title": "All Call Centre Customer Service Subclasses",
633            "type": "boolean",
634            "description": "Include all call centre and customer service subcategories.",
635            "default": false
636          },
637          "collections": {
638            "title": "Collections",
639            "type": "boolean",
640            "description": "Filter jobs recovering debts and managing collections processes.",
641            "default": false
642          },
643          "customer-service-call-centre": {
644            "title": "Customer Service Call Centre",
645            "type": "boolean",
646            "description": "Search for jobs handling customer inquiries and support via phone.",
647            "default": false
648          },
649          "customer-service-customer-facing": {
650            "title": "Customer Service & Customer Facing",
651            "type": "boolean",
652            "description": "Filter jobs interacting with customers, providing support and resolving issues.",
653            "default": false
654          },
655          "management-support": {
656            "title": "Management Support",
657            "type": "boolean",
658            "description": "Search for jobs assisting managers, teams, and organizational operations.",
659            "default": false
660          },
661          "sales-inbound": {
662            "title": "Sales Inbound",
663            "type": "boolean",
664            "description": "Filter jobs handling incoming sales calls and customer inquiries.",
665            "default": false
666          },
667          "sales-outbound": {
668            "title": "Sales Outbound",
669            "type": "boolean",
670            "description": "Search for jobs generating sales leads and contacting potential customers.",
671            "default": false
672          },
673          "supervisors-team-leaders": {
674            "title": "Supervisors & Team Leaders",
675            "type": "boolean",
676            "description": "Filter jobs leading teams, supervising staff, and overseeing operations.",
677            "default": false
678          },
679          "call-centre-customer-service-other": {
680            "title": "Other",
681            "type": "boolean",
682            "description": "Filter call centre and customer service jobs that don't fit specific categories.",
683            "default": false
684          },
685          "ceo-general-management": {
686            "title": "All Ceo General Management Subclasses",
687            "type": "boolean",
688            "description": "Include all CEO and general management subcategories.",
689            "default": false
690          },
691          "board-appointments": {
692            "title": "Board Appointments",
693            "type": "boolean",
694            "description": "Filter jobs serving on company boards, directing strategy and governance.",
695            "default": false
696          },
697          "ceo": {
698            "title": "CEO",
699            "type": "boolean",
700            "description": "Search for jobs as chief executive officers, leading companies and organizations.",
701            "default": false
702          },
703          "coo-md": {
704            "title": "COO/MD",
705            "type": "boolean",
706            "description": "Filter jobs as chief operating officers or managing directors.",
707            "default": false
708          },
709          "general-business-unit-manager": {
710            "title": "General Business Unit Manager",
711            "type": "boolean",
712            "description": "Search for jobs overseeing business units, departments, or functions.",
713            "default": false
714          },
715          "ceo-general-management-other": {
716            "title": "Other",
717            "type": "boolean",
718            "description": "Filter CEO and general management jobs that don't fit specific categories.",
719            "default": false
720          },
721          "community-services-development": {
722            "title": "All Community Services Development Subclasses",
723            "type": "boolean",
724            "description": "Include all community services and development subcategories.",
725            "default": false
726          },
727          "aged-disability-support": {
728            "title": "Aged & Disability Support",
729            "type": "boolean",
730            "description": "Filter jobs providing care and support for aged and disabled individuals.",
731            "default": false
732          },
733          "child-welfare-youth-family-services": {
734            "title": "Child Welfare & Youth Family Services",
735            "type": "boolean",
736            "description": "Search for jobs supporting children, youth, and families in need.",
737            "default": false
738          },
739          "community-development": {
740            "title": "Community Development",
741            "type": "boolean",
742            "description": "Filter jobs promoting community growth, social justice, and empowerment.",
743            "default": false
744          },
745          "employment-services": {
746            "title": "Employment Services",
747            "type": "boolean",
748            "description": "Filter jobs providing employment support, training, and job placement services.",
749            "default": false
750          },
751          "fundraising": {
752            "title": "Fundraising",
753            "type": "boolean",
754            "description": "Search for jobs securing donations and sponsorships for community organizations.",
755            "default": false
756          },
757          "housing-homelessness-services": {
758            "title": "Housing & Homelessness Services",
759            "type": "boolean",
760            "description": "Filter jobs providing housing support, advocacy, and homelessness services.",
761            "default": false
762          },
763          "indigenous-multicultural-services": {
764            "title": "Indigenous & Multicultural Services",
765            "type": "boolean",
766            "description": "Search for jobs supporting Indigenous and multicultural communities.",
767            "default": false
768          },
769          "community-services-development-management": {
770            "title": "Management",
771            "type": "boolean",
772            "description": "Filter management jobs in community services and development.",
773            "default": false
774          },
775          "volunteer-coordination-support": {
776            "title": "Volunteer Coordination & Support",
777            "type": "boolean",
778            "description": "Search for jobs managing volunteer programs and supporting community engagement.",
779            "default": false
780          },
781          "community-services-development-other": {
782            "title": "Other",
783            "type": "boolean",
784            "description": "Filter community services and development jobs that don't fit specific categories.",
785            "default": false
786          },
787          "construction": {
788            "title": "All Construction Subclasses",
789            "type": "boolean",
790            "description": "Include all construction subcategories.",
791            "default": false
792          },
793          "contracts-management": {
794            "title": "Contracts Management",
795            "type": "boolean",
796            "description": "Filter jobs managing construction contracts, negotiations, and agreements.",
797            "default": false
798          },
799          "estimating": {
800            "title": "Estimating",
801            "type": "boolean",
802            "description": "Search for jobs calculating construction costs, quotes, and tenders.",
803            "default": false
804          },
805          "foreperson-supervisors": {
806            "title": "Foreperson & Supervisors",
807            "type": "boolean",
808            "description": "Filter jobs overseeing construction sites, teams, and operations.",
809            "default": false
810          },
811          "construction-health-safety-environment": {
812            "title": "Health, Safety & Environment",
813            "type": "boolean",
814            "description": "Search for jobs ensuring construction site safety, compliance, and sustainability.",
815            "default": false
816          },
817          "construction-management": {
818            "title": "Management",
819            "type": "boolean",
820            "description": "Filter jobs overseeing construction projects, teams, and operations.",
821            "default": false
822          },
823          "planning-scheduling": {
824            "title": "Planning & Scheduling",
825            "type": "boolean",
826            "description": "Search for jobs coordinating construction timelines, budgets, and resources.",
827            "default": false
828          },
829          "plant-machinery-operators": {
830            "title": "Plant & Machinery Operators",
831            "type": "boolean",
832            "description": "Filter jobs operating heavy machinery, equipment, and vehicles.",
833            "default": false
834          },
835          "construction-project-management": {
836            "title": "Project Management",
837            "type": "boolean",
838            "description": "Search for jobs managing construction projects from planning to completion.",
839            "default": false
840          },
841          "construction-quality-assurance-control": {
842            "title": "Quality Assurance & Control",
843            "type": "boolean",
844            "description": "Filter jobs ensuring construction quality, safety, and compliance.",
845            "default": false
846          },
847          "construction-surveying": {
848            "title": "Surveying",
849            "type": "boolean",
850            "description": "Search for jobs conducting site surveys, mapping, and geological assessments.",
851            "default": false
852          },
853          "construction-other": {
854            "title": "Other",
855            "type": "boolean",
856            "description": "Filter construction jobs that don't fit specific categories.",
857            "default": false
858          },
859          "consulting-strategy": {
860            "title": "All Consulting Strategy Subclasses",
861            "type": "boolean",
862            "description": "Include all consulting and strategy subcategories.",
863            "default": false
864          },
865          "consulting-strategy-analysts": {
866            "title": "Analysts",
867            "type": "boolean",
868            "description": "Filter jobs analyzing data, identifying trends, and informing business strategies.",
869            "default": false
870          },
871          "corporate-development": {
872            "title": "Corporate Development",
873            "type": "boolean",
874            "description": "Search for jobs driving business growth through M&A, partnerships, and innovation.",
875            "default": false
876          },
877          "environment-sustainability-consulting": {
878            "title": "Environment & Sustainability Consulting",
879            "type": "boolean",
880            "description": "Filter jobs advising on environmental sustainability, energy efficiency, and social responsibility.",
881            "default": false
882          },
883          "management-change-consulting": {
884            "title": "Management & Change Consulting",
885            "type": "boolean",
886            "description": "Search for jobs helping organizations adapt to change, improve performance, and optimize operations.",
887            "default": false
888          },
889          "policy": {
890            "title": "Policy",
891            "type": "boolean",
892            "description": "Filter jobs developing, implementing, and analyzing policies for organizations.",
893            "default": false
894          },
895          "consulting-strategy-planning": {
896            "title": "Strategy & Planning",
897            "type": "boolean",
898            "description": "Filter jobs developing and implementing business strategies and plans.",
899            "default": false
900          },
901          "consulting-strategy-other": {
902            "title": "Other",
903            "type": "boolean",
904            "description": "Filter consulting and strategy jobs that don't fit specific categories.",
905            "default": false
906          },
907          "design-architecture": {
908            "title": "All Design Architecture Subclasses",
909            "type": "boolean",
910            "description": "Include all design and architecture subcategories.",
911            "default": false
912          },
913          "architectural-drafting": {
914            "title": "Architectural Drafting",
915            "type": "boolean",
916            "description": "Filter jobs creating technical drawings and blueprints for buildings.",
917            "default": false
918          },
919          "architecture": {
920            "title": "Architecture",
921            "type": "boolean",
922            "description": "Search for jobs designing buildings, spaces, and environments.",
923            "default": false
924          },
925          "fashion-textile-design": {
926            "title": "Fashion & Textile Design",
927            "type": "boolean",
928            "description": "Filter jobs creating clothing, accessories, and textile designs.",
929            "default": false
930          },
931          "graphic-design": {
932            "title": "Graphic Design",
933            "type": "boolean",
934            "description": "Search for jobs designing visual communications, logos, and branding.",
935            "default": false
936          },
937          "illustration-animation": {
938            "title": "Illustration & Animation",
939            "type": "boolean",
940            "description": "Filter jobs creating illustrations, animations, and visual effects.",
941            "default": false
942          },
943          "industrial-design": {
944            "title": "Industrial Design",
945            "type": "boolean",
946            "description": "Search for jobs designing products, furniture, and equipment.",
947            "default": false
948          },
949          "interior-design": {
950            "title": "Interior Design",
951            "type": "boolean",
952            "description": "Filter jobs designing interior spaces, layouts, and aesthetics.",
953            "default": false
954          },
955          "landscape-architecture": {
956            "title": "Landscape Architecture",
957            "type": "boolean",
958            "description": "Search for jobs designing outdoor spaces, parks, and gardens.",
959            "default": false
960          },
961          "urban-design-planning": {
962            "title": "Urban Design & Planning",
963            "type": "boolean",
964            "description": "Filter jobs designing and planning cities, communities, and infrastructure.",
965            "default": false
966          },
967          "web-interaction-design": {
968            "title": "Web Interaction Design",
969            "type": "boolean",
970            "description": "Search for jobs designing user experiences and interfaces for websites.",
971            "default": false
972          },
973          "design-architecture-other": {
974            "title": "Other",
975            "type": "boolean",
976            "description": "Filter design and architecture jobs that don't fit specific categories.",
977            "default": false
978          },
979          "education-training": {
980            "title": "All Education Training Subclasses",
981            "type": "boolean",
982            "description": "Include all education and training subcategories.",
983            "default": false
984          },
985          "childcare-outside-school-hours-care": {
986            "title": "Childcare & Outside School Hours Care",
987            "type": "boolean",
988            "description": "Filter jobs providing childcare and supervision outside regular school hours.",
989            "default": false
990          },
991          "library-services-information-management": {
992            "title": "Library Services & Information Management",
993            "type": "boolean",
994            "description": "Search for jobs managing libraries, information systems, and digital resources.",
995            "default": false
996          },
997          "management-schools": {
998            "title": "Management in Schools",
999            "type": "boolean",
1000            "description": "Filter jobs leading and administering schools, including principals and administrators.",
1001            "default": false
1002          },
1003          "management-universities": {
1004            "title": "Management in Universities",
1005            "type": "boolean",
1006            "description": "Search for jobs leading and administering universities, including vice-chancellors and department heads.",
1007            "default": false
1008          },
1009          "management-vocational": {
1010            "title": "Management in Vocational Education",
1011            "type": "boolean",
1012            "description": "Filter jobs leading and administering vocational education and training institutions.",
1013            "default": false
1014          },
1015          "research-fellowships": {
1016            "title": "Research Fellowships",
1017            "type": "boolean",
1018            "description": "Search for research positions and fellowships in various academic fields.",
1019            "default": false
1020          },
1021          "student-services": {
1022            "title": "Student Services",
1023            "type": "boolean",
1024            "description": "Filter jobs supporting student well-being, academic success, and campus life.",
1025            "default": false
1026          },
1027          "teaching-early-childhood": {
1028            "title": "Teaching Early Childhood",
1029            "type": "boolean",
1030            "description": "Search for jobs teaching children from birth to age 8, including kindergarten and preschool.",
1031            "default": false
1032          },
1033          "teaching-primary": {
1034            "title": "Teaching Primary",
1035            "type": "boolean",
1036            "description": "Filter jobs teaching students in primary schools (ages 5-11).",
1037            "default": false
1038          },
1039          "teaching-secondary": {
1040            "title": "Teaching Secondary",
1041            "type": "boolean",
1042            "description": "Search for jobs teaching students in secondary schools (ages 11-18).",
1043            "default": false
1044          },
1045          "teaching-tertiary": {
1046            "title": "Teaching Tertiary",
1047            "type": "boolean",
1048            "description": "Filter jobs teaching students in universities and colleges.",
1049            "default": false
1050          },
1051          "teaching-vocational": {
1052            "title": "Teaching Vocational",
1053            "type": "boolean",
1054            "description": "Search for jobs teaching technical and vocational skills in various industries.",
1055            "default": false
1056          },
1057          "teaching-aides-special-needs": {
1058            "title": "Teaching Aides & Special Needs",
1059            "type": "boolean",
1060            "description": "Filter jobs assisting teachers and supporting students with special needs.",
1061            "default": false
1062          },
1063          "tutoring": {
1064            "title": "Tutoring",
1065            "type": "boolean",
1066            "description": "Search for jobs providing one-on-one academic support and mentoring.",
1067            "default": false
1068          },
1069          "workplace-training-assessment": {
1070            "title": "Workplace Training & Assessment",
1071            "type": "boolean",
1072            "description": "Filter jobs providing training, evaluation, and skills assessment in workplace settings.",
1073            "default": false
1074          },
1075          "education-training-other": {
1076            "title": "Other",
1077            "type": "boolean",
1078            "description": "Filter education and training jobs that don't fit specific categories.",
1079            "default": false
1080          },
1081          "engineering": {
1082            "title": "All Engineering Subclasses",
1083            "type": "boolean",
1084            "description": "Include all engineering subcategories.",
1085            "default": false
1086          },
1087          "aerospace-engineering": {
1088            "title": "Aerospace Engineering",
1089            "type": "boolean",
1090            "description": "Search for jobs designing and developing aircraft, spacecraft, and missiles.",
1091            "default": false
1092          },
1093          "automotive-engineering": {
1094            "title": "Automotive Engineering",
1095            "type": "boolean",
1096            "description": "Filter jobs designing and developing vehicles, automotive systems, and components.",
1097            "default": false
1098          },
1099          "building-services-engineering": {
1100            "title": "Building Services Engineering",
1101            "type": "boolean",
1102            "description": "Search for jobs designing and maintaining building systems, including HVAC, electrical, and plumbing.",
1103            "default": false
1104          },
1105          "chemical-engineering": {
1106            "title": "Chemical Engineering",
1107            "type": "boolean",
1108            "description": "Filter jobs developing processes and systems for chemical manufacturing and production.",
1109            "default": false
1110          },
1111          "civil-structural-engineering": {
1112            "title": "Civil & Structural Engineering",
1113            "type": "boolean",
1114            "description": "Search for jobs designing and developing infrastructure, buildings, and structural systems.",
1115            "default": false
1116          },
1117          "electrical-electronic-engineering": {
1118            "title": "Electrical & Electronic Engineering",
1119            "type": "boolean",
1120            "description": "Filter jobs designing and developing electrical systems, electronics, and embedded systems.",
1121            "default": false
1122          },
1123          "engineering-drafting": {
1124            "title": "Engineering Drafting",
1125            "type": "boolean",
1126            "description": "Search for jobs creating technical drawings and models for engineering projects.",
1127            "default": false
1128          },
1129          "environmental-engineering": {
1130            "title": "Environmental Engineering",
1131            "type": "boolean",
1132            "description": "Filter jobs developing solutions for environmental issues, including air, water, and waste management.",
1133            "default": false
1134          },
1135          "field-engineering": {
1136            "title": "Field Engineering",
1137            "type": "boolean",
1138            "description": "Search for jobs installing, maintaining, and repairing equipment and systems in the field.",
1139            "default": false
1140          },
1141          "industrial-engineering": {
1142            "title": "Industrial Engineering",
1143            "type": "boolean",
1144            "description": "Filter jobs optimizing industrial processes, systems, and facilities.",
1145            "default": false
1146          },
1147          "maintenance": {
1148            "title": "Maintenance",
1149            "type": "boolean",
1150            "description": "Search for jobs maintaining and repairing equipment, machinery, and infrastructure.",
1151            "default": false
1152          },
1153          "engineering-management": {
1154            "title": "Management",
1155            "type": "boolean",
1156            "description": "Filter jobs leading and managing engineering teams, projects, and operations.",
1157            "default": false
1158          },
1159          "materials-handling-engineering": {
1160            "title": "Materials Handling Engineering",
1161            "type": "boolean",
1162            "description": "Search for jobs designing and developing systems for materials handling and logistics.",
1163            "default": false
1164          },
1165          "mechanical-engineering": {
1166            "title": "Mechanical Engineering",
1167            "type": "boolean",
1168            "description": "Filter jobs designing and developing mechanical systems, machines, and devices.",
1169            "default": false
1170          },
1171          "process-engineering": {
1172            "title": "Process Engineering",
1173            "type": "boolean",
1174            "description": "Search for jobs designing and optimizing industrial processes and systems.",
1175            "default": false
1176          },
1177          "project-engineering": {
1178            "title": "Project Engineering",
1179            "type": "boolean",
1180            "description": "Filter jobs managing and coordinating engineering projects from conception to completion.",
1181            "default": false
1182          },
1183          "engineering-project-management": {
1184            "title": "Project Management",
1185            "type": "boolean",
1186            "description": "Search for jobs overseeing engineering projects, ensuring timely and budget-friendly delivery.",
1187            "default": false
1188          },
1189          "supervisors": {
1190            "title": "Supervisors",
1191            "type": "boolean",
1192            "description": "Filter jobs supervising engineering teams, providing guidance and oversight.",
1193            "default": false
1194          },
1195          "systems-engineering": {
1196            "title": "Systems Engineering",
1197            "type": "boolean",
1198            "description": "Search for jobs designing, integrating, and managing complex engineering systems.",
1199            "default": false
1200          },
1201          "water-waste-engineering": {
1202            "title": "Water & Waste Engineering",
1203            "type": "boolean",
1204            "description": "Filter jobs developing solutions for water treatment, wastewater management, and waste disposal.",
1205            "default": false
1206          },
1207          "engineering-other": {
1208            "title": "Other",
1209            "type": "boolean",
1210            "description": "Filter engineering jobs that don't fit specific categories.",
1211            "default": false
1212          },
1213          "farming-animals-conservation": {
1214            "title": "All Farming Animals Conservation Subclasses",
1215            "type": "boolean",
1216            "description": "Include all farming, animals, and conservation subcategories.",
1217            "default": false
1218          },
1219          "agronomy-farm-services": {
1220            "title": "Agronomy & Farm Services",
1221            "type": "boolean",
1222            "description": "Search for jobs providing crop management, soil science, and farm support services.",
1223            "default": false
1224          },
1225          "conservation-parks-wildlife": {
1226            "title": "Conservation, Parks & Wildlife",
1227            "type": "boolean",
1228            "description": "Filter jobs preserving and protecting natural resources, parks, and wildlife.",
1229            "default": false
1230          },
1231          "farm-labour": {
1232            "title": "Farm Labour",
1233            "type": "boolean",
1234            "description": "Search for jobs performing manual labor on farms, including harvesting and livestock care.",
1235            "default": false
1236          },
1237          "farm-management": {
1238            "title": "Farm Management",
1239            "type": "boolean",
1240            "description": "Filter jobs overseeing farm operations, including planning, production, and finance.",
1241            "default": false
1242          },
1243          "fishing-aquaculture": {
1244            "title": "Fishing & Aquaculture",
1245            "type": "boolean",
1246            "description": "Search for jobs in fishing, seafood production, and aquatic animal farming.",
1247            "default": false
1248          },
1249          "horticulture": {
1250            "title": "Horticulture",
1251            "type": "boolean",
1252            "description": "Filter jobs cultivating and managing plants, gardens, and landscapes.",
1253            "default": false
1254          },
1255          "veterinary-services-animal-welfare": {
1256            "title": "Veterinary Services & Animal Welfare",
1257            "type": "boolean",
1258            "description": "Search for jobs providing veterinary care, animal health services, and welfare advocacy.",
1259            "default": false
1260          },
1261          "winery-viticulture": {
1262            "title": "Winery & Viticulture",
1263            "type": "boolean",
1264            "description": "Filter jobs in grape cultivation, wine production, and vineyard management.",
1265            "default": false
1266          },
1267          "farming-animals-conservation-other": {
1268            "title": "Other",
1269            "type": "boolean",
1270            "description": "Filter farming, animals, and conservation jobs that don't fit specific categories.",
1271            "default": false
1272          },
1273          "government-defence": {
1274            "title": "All Government Defence Subclasses",
1275            "type": "boolean",
1276            "description": "Include all government and defence subcategories.",
1277            "default": false
1278          },
1279          "air-force": {
1280            "title": "Air Force",
1281            "type": "boolean",
1282            "description": "Search for jobs in military aviation, including pilots, maintenance, and support personnel.",
1283            "default": false
1284          },
1285          "army": {
1286            "title": "Army",
1287            "type": "boolean",
1288            "description": "Search for jobs in the military's land-based branch, including combat, support, and administrative roles.",
1289            "default": false
1290          },
1291          "emergency-services": {
1292            "title": "Emergency Services",
1293            "type": "boolean",
1294            "description": "Filter jobs responding to emergencies, including firefighting, paramedicine, and disaster relief.",
1295            "default": false
1296          },
1297          "government-federal": {
1298            "title": "Government (Federal)",
1299            "type": "boolean",
1300            "description": "Search for jobs in federal government agencies, including administration, policy, and public services.",
1301            "default": false
1302          },
1303          "government-local": {
1304            "title": "Government (Local)",
1305            "type": "boolean",
1306            "description": "Filter jobs in local government, including city, county, or municipal administration and services.",
1307            "default": false
1308          },
1309          "government-state": {
1310            "title": "Government (State)",
1311            "type": "boolean",
1312            "description": "Search for jobs in state government agencies, including administration, policy, and public services.",
1313            "default": false
1314          },
1315          "navy": {
1316            "title": "Navy",
1317            "type": "boolean",
1318            "description": "Filter jobs in the military's naval branch, including combat, support, and administrative roles.",
1319            "default": false
1320          },
1321          "police-corrections": {
1322            "title": "Police & Corrections",
1323            "type": "boolean",
1324            "description": "Search for jobs in law enforcement, corrections, and criminal justice.",
1325            "default": false
1326          },
1327          "policy-planning-regulation": {
1328            "title": "Policy, Planning & Regulation",
1329            "type": "boolean",
1330            "description": "Filter jobs developing and implementing policies, plans, and regulations in government and industry.",
1331            "default": false
1332          },
1333          "government-defence-other": {
1334            "title": "Other",
1335            "type": "boolean",
1336            "description": "Filter government and defence jobs that don't fit specific categories.",
1337            "default": false
1338          },
1339          "healthcare-medical": {
1340            "title": "All Healthcare Medical Subclasses",
1341            "type": "boolean",
1342            "description": "Include all healthcare and medical subcategories.",
1343            "default": false
1344          },
1345          "ambulance-paramedics": {
1346            "title": "Ambulance & Paramedics",
1347            "type": "boolean",
1348            "description": "Search for jobs providing emergency medical services, transportation, and care.",
1349            "default": false
1350          },
1351          "chiropractic-osteopathic": {
1352            "title": "Chiropractic & Osteopathic",
1353            "type": "boolean",
1354            "description": "Filter jobs providing alternative medical treatments, including spinal manipulation and manual therapy.",
1355            "default": false
1356          },
1357          "clinical-medical-research": {
1358            "title": "Clinical & Medical Research",
1359            "type": "boolean",
1360            "description": "Search for jobs conducting studies, trials, and investigations to advance medical knowledge.",
1361            "default": false
1362          },
1363          "dental": {
1364            "title": "Dental",
1365            "type": "boolean",
1366            "description": "Filter jobs providing dental care, including diagnosis, treatment, and prevention.",
1367            "default": false
1368          },
1369          "dieticians": {
1370            "title": "Dieticians",
1371            "type": "boolean",
1372            "description": "Search for jobs promoting healthy eating habits, developing meal plans, and providing nutrition advice.",
1373            "default": false
1374          },
1375          "environmental-services": {
1376            "title": "Environmental Services",
1377            "type": "boolean",
1378            "description": "Filter jobs maintaining cleanliness, hygiene, and waste management in healthcare settings.",
1379            "default": false
1380          },
1381          "general-practitioners": {
1382            "title": "General Practitioners",
1383            "type": "boolean",
1384            "description": "Search for jobs providing primary care, routine check-ups, and referrals to specialists.",
1385            "default": false
1386          },
1387          "healthcare-medical-management": {
1388            "title": "Management",
1389            "type": "boolean",
1390            "description": "Filter jobs overseeing healthcare operations, including administration, finance, and strategy.",
1391            "default": false
1392          },
1393          "medical-administration": {
1394            "title": "Medical Administration",
1395            "type": "boolean",
1396            "description": "Search for jobs managing medical records, billing, and practice management.",
1397            "default": false
1398          },
1399          "medical-imaging": {
1400            "title": "Medical Imaging",
1401            "type": "boolean",
1402            "description": "Filter jobs using medical imaging technologies, such as MRI, CT, and X-ray, for diagnostic purposes.",
1403            "default": false
1404          },
1405          "medical-specialists": {
1406            "title": "Medical Specialists",
1407            "type": "boolean",
1408            "description": "Search for jobs specializing in specific medical fields, such as cardiology, oncology, or neurology.",
1409            "default": false
1410          },
1411          "natural-therapies-alternative-medicine": {
1412            "title": "Natural Therapies & Alternative Medicine",
1413            "type": "boolean",
1414            "description": "Filter jobs providing holistic and alternative medical treatments, including acupuncture, homeopathy, and herbalism.",
1415            "default": false
1416          },
1417          "nursing-a-e-critical-care-icu": {
1418            "title": "Nursing (A&E, Critical Care, ICU)",
1419            "type": "boolean",
1420            "description": "Search for jobs providing emergency, critical care, and intensive care nursing services.",
1421            "default": false
1422          },
1423          "nursing-aged-care": {
1424            "title": "Nursing (Aged Care)",
1425            "type": "boolean",
1426            "description": "Filter jobs providing nursing care to elderly patients in residential or community settings.",
1427            "default": false
1428          },
1429          "nursing-community-maternal-child-health": {
1430            "title": "Nursing (Community, Maternal & Child Health)",
1431            "type": "boolean",
1432            "description": "Search for jobs promoting community health, maternal care, and child health through nursing services.",
1433            "default": false
1434          },
1435          "nursing-educators-facilitators": {
1436            "title": "Nursing (Educators & Facilitators)",
1437            "type": "boolean",
1438            "description": "Filter jobs teaching and training nursing students, professionals, and healthcare staff.",
1439            "default": false
1440          },
1441          "nursing-general-medical-surgical": {
1442            "title": "Nursing (General, Medical, Surgical)",
1443            "type": "boolean",
1444            "description": "Search for jobs providing general nursing care in medical and surgical settings.",
1445            "default": false
1446          },
1447          "nursing-high-acuity": {
1448            "title": "Nursing (High Acuity)",
1449            "type": "boolean",
1450            "description": "Filter jobs providing intensive nursing care to critically ill patients.",
1451            "default": false
1452          },
1453          "nursing-management": {
1454            "title": "Nursing Management",
1455            "type": "boolean",
1456            "description": "Search for jobs overseeing nursing operations, including staffing, policy, and quality improvement.",
1457            "default": false
1458          },
1459          "nursing-midwifery-neo-natal-scn-nicu": {
1460            "title": "Nursing (Midwifery, Neo-Natal, SCN, NICU)",
1461            "type": "boolean",
1462            "description": "Filter jobs providing nursing care to newborns, expectant mothers, and critically ill infants.",
1463            "default": false
1464          },
1465          "nursing-paediatric-picu": {
1466            "title": "Nursing (Paediatric, PICU)",
1467            "type": "boolean",
1468            "description": "Search for jobs providing nursing care to children and critically ill pediatric patients.",
1469            "default": false
1470          },
1471          "nursing-psych-forensic-correctional-health": {
1472            "title": "Nursing (Psych, Forensic, Correctional Health)",
1473            "type": "boolean",
1474            "description": "Filter jobs providing nursing care to patients with mental health issues, forensic patients, or those in correctional facilities.",
1475            "default": false
1476          },
1477          "nursing-theatre-recovery": {
1478            "title": "Nursing (Theatre & Recovery)",
1479            "type": "boolean",
1480            "description": "Search for jobs providing nursing care in operating theatres and recovery rooms.",
1481            "default": false
1482          },
1483          "optical": {
1484            "title": "Optical",
1485            "type": "boolean",
1486            "description": "Filter jobs related to eye care, including optometry, opticianry, and vision therapy.",
1487            "default": false
1488          },
1489          "pathology": {
1490            "title": "Pathology",
1491            "type": "boolean",
1492            "description": "Filter jobs analyzing tissues, cells, and bodily fluids to diagnose diseases and develop treatments.",
1493            "default": false
1494          },
1495          "pharmaceuticals-medical-devices": {
1496            "title": "Pharmaceuticals & Medical Devices",
1497            "type": "boolean",
1498            "description": "Search for jobs developing, manufacturing, and distributing medications and medical equipment.",
1499            "default": false
1500          },
1501          "pharmacy": {
1502            "title": "Pharmacy",
1503            "type": "boolean",
1504            "description": "Filter jobs dispensing medications, advising patients, and providing pharmaceutical services.",
1505            "default": false
1506          },
1507          "physiotherapy-ot-rehabilitation": {
1508            "title": "Physiotherapy, OT & Rehabilitation",
1509            "type": "boolean",
1510            "description": "Search for jobs helping patients recover from injuries or illnesses through physical therapy and rehabilitation.",
1511            "default": false
1512          },
1513          "psychology-counselling-social-work": {
1514            "title": "Psychology, Counselling & Social Work",
1515            "type": "boolean",
1516            "description": "Filter jobs providing mental health services, counseling, and social support to individuals and communities.",
1517            "default": false
1518          },
1519          "residents-registrars": {
1520            "title": "Residents & Registrars",
1521            "type": "boolean",
1522            "description": "Search for medical residency and registrar positions for postgraduate training.",
1523            "default": false
1524          },
1525          "healthcare-medical-sales": {
1526            "title": "Sales",
1527            "type": "boolean",
1528            "description": "Filter jobs selling medical equipment, pharmaceuticals, or healthcare services.",
1529            "default": false
1530          },
1531          "speech-therapy": {
1532            "title": "Speech Therapy",
1533            "type": "boolean",
1534            "description": "Search for jobs helping individuals with communication disorders through speech and language therapy.",
1535            "default": false
1536          },
1537          "healthcare-medical-other": {
1538            "title": "Other",
1539            "type": "boolean",
1540            "description": "Filter healthcare and medical jobs that don't fit specific categories.",
1541            "default": false
1542          },
1543          "hospitality-tourism": {
1544            "title": "All Hospitality Subclasses",
1545            "type": "boolean",
1546            "description": "Include all hospitality and tourism subcategories.",
1547            "default": false
1548          },
1549          "airlines": {
1550            "title": "Airlines",
1551            "type": "boolean",
1552            "description": "Search for jobs in air transportation, including flight operations, customer service, and ground handling.",
1553            "default": false
1554          },
1555          "bar-beverage-staff": {
1556            "title": "Bar & Beverage Staff",
1557            "type": "boolean",
1558            "description": "Search for jobs serving drinks and providing customer service in bars, restaurants, and hotels.",
1559            "default": false
1560          },
1561          "chefs-cooks": {
1562            "title": "Chefs & Cooks",
1563            "type": "boolean",
1564            "description": "Filter jobs preparing and cooking food in restaurants, cafes, hotels, and other food service establishments.",
1565            "default": false
1566          },
1567          "front-office-guest-services": {
1568            "title": "Front Office & Guest Services",
1569            "type": "boolean",
1570            "description": "Search for jobs providing customer service, reception, and concierge services in hotels and resorts.",
1571            "default": false
1572          },
1573          "gaming": {
1574            "title": "Gaming",
1575            "type": "boolean",
1576            "description": "Filter jobs in casinos, gaming venues, or online gaming platforms, including dealers, managers, and support staff.",
1577            "default": false
1578          },
1579          "housekeeping": {
1580            "title": "Housekeeping",
1581            "type": "boolean",
1582            "description": "Search for jobs maintaining cleanliness and organization in hotels, resorts, and other accommodations.",
1583            "default": false
1584          },
1585          "kitchen-sandwich-hands": {
1586            "title": "Kitchen & Sandwich Hands",
1587            "type": "boolean",
1588            "description": "Filter jobs assisting chefs, preparing food, and maintaining kitchen operations.",
1589            "default": false
1590          },
1591          "hospitality-tourism-management": {
1592            "title": "Management",
1593            "type": "boolean",
1594            "description": "Search for leadership roles overseeing hospitality and tourism operations, including hotels, restaurants, and resorts.",
1595            "default": false
1596          },
1597          "reservations": {
1598            "title": "Reservations",
1599            "type": "boolean",
1600            "description": "Filter jobs handling bookings, cancellations, and customer inquiries for hotels, airlines, and travel agencies.",
1601            "default": false
1602          },
1603          "tour-guides": {
1604            "title": "Tour Guides",
1605            "type": "boolean",
1606            "description": "Search for jobs leading groups of travelers, providing information, and ensuring memorable experiences.",
1607            "default": false
1608          },
1609          "travel-agents-consultants": {
1610            "title": "Travel Agents & Consultants",
1611            "type": "boolean",
1612            "description": "Filter jobs planning and booking travel itineraries for individuals, groups, and corporate clients.",
1613            "default": false
1614          },
1615          "waiting-staff": {
1616            "title": "Waiting Staff",
1617            "type": "boolean",
1618            "description": "Search for jobs serving food and beverages in restaurants, cafes, and hotels.",
1619            "default": false
1620          },
1621          "hospitality-tourism-other": {
1622            "title": "Other",
1623            "type": "boolean",
1624            "description": "Filter hospitality and tourism jobs that don't fit specific categories.",
1625            "default": false
1626          },
1627          "human-resources-recruitment": {
1628            "title": "All Human Resources Recruitment Subclasses",
1629            "type": "boolean",
1630            "description": "Include all human resources and recruitment subcategories.",
1631            "default": false
1632          },
1633          "human-resources-recruitment-consulting-generalist-hr": {
1634            "title": "Consulting (Generalist, HR)",
1635            "type": "boolean",
1636            "description": "Search for HR consulting jobs providing strategic advice on recruitment, talent management, and organizational development.",
1637            "default": false
1638          },
1639          "industrial-employee-relations": {
1640            "title": "Industrial & Employee Relations",
1641            "type": "boolean",
1642            "description": "Filter jobs managing workplace relationships, negotiations, and conflict resolution.",
1643            "default": false
1644          },
1645          "management-agency": {
1646            "title": "Management (Agency)",
1647            "type": "boolean",
1648            "description": "Search for leadership roles in recruitment agencies, overseeing client relationships and talent acquisition.",
1649            "default": false
1650          },
1651          "management-internal": {
1652            "title": "Management (Internal)",
1653            "type": "boolean",
1654            "description": "Filter jobs leading HR teams within organizations, focusing on talent development and strategic workforce planning.",
1655            "default": false
1656          },
1657          "occupational-health-safety": {
1658            "title": "Occupational Health & Safety",
1659            "type": "boolean",
1660            "description": "Search for jobs ensuring workplace safety, implementing health programs, and reducing occupational risks.",
1661            "default": false
1662          },
1663          "organisational-development": {
1664            "title": "Organisational Development",
1665            "type": "boolean",
1666            "description": "Filter jobs designing and implementing organizational improvement strategies, enhancing performance and efficiency.",
1667            "default": false
1668          },
1669          "recruitment-agency": {
1670            "title": "Recruitment (Agency)",
1671            "type": "boolean",
1672            "description": "Search for jobs in recruitment agencies, matching candidates with client vacancies.",
1673            "default": false
1674          },
1675          "recruitment-internal": {
1676            "title": "Recruitment (Internal)",
1677            "type": "boolean",
1678            "description": "Filter jobs managing internal recruitment processes, sourcing and hiring talent within organizations.",
1679            "default": false
1680          },
1681          "remuneration-benefits": {
1682            "title": "Remuneration & Benefits",
1683            "type": "boolean",
1684            "description": "Search for jobs designing and administering compensation, benefits, and rewards programs.",
1685            "default": false
1686          },
1687          "training-development": {
1688            "title": "Training & Development",
1689            "type": "boolean",
1690            "description": "Filter jobs creating and delivering employee training programs, enhancing skills and performance.",
1691            "default": false
1692          },
1693          "human-resources-recruitment-other": {
1694            "title": "Other",
1695            "type": "boolean",
1696            "description": "Filter human resources and recruitment jobs that don't fit specific categories.",
1697            "default": false
1698          },
1699          "information-communication-technology": {
1700            "title": "All Information Communication Technology Subclasses",
1701            "type": "boolean",
1702            "description": "Include all information communication technology subcategories.",
1703            "default": false
1704          },
1705          "architects": {
1706            "title": "Architects",
1707            "type": "boolean",
1708            "description": "Search for jobs designing software, hardware, and network architectures.",
1709            "default": false
1710          },
1711          "business-systems-analysts": {
1712            "title": "Business Systems Analysts",
1713            "type": "boolean",
1714            "description": "Filter jobs analyzing business needs and implementing technology solutions.",
1715            "default": false
1716          },
1717          "computer-operators": {
1718            "title": "Computer Operators",
1719            "type": "boolean",
1720            "description": "Search for jobs managing computer systems, monitoring performance, and ensuring uptime.",
1721            "default": false
1722          },
1723          "consultants": {
1724            "title": "Consultants",
1725            "type": "boolean",
1726            "description": "Filter jobs providing expert IT advice, strategy, and guidance to organizations.",
1727            "default": false
1728          },
1729          "database-development-administration": {
1730            "title": "Database Development & Administration",
1731            "type": "boolean",
1732            "description": "Search for jobs designing, implementing, and maintaining databases.",
1733            "default": false
1734          },
1735          "developers-programmers": {
1736            "title": "Developers & Programmers",
1737            "type": "boolean",
1738            "description": "Search for jobs designing, coding, and testing software applications and systems.",
1739            "default": false
1740          },
1741          "engineering-hardware": {
1742            "title": "Engineering (Hardware)",
1743            "type": "boolean",
1744            "description": "Filter jobs designing, developing, and testing computer hardware components.",
1745            "default": false
1746          },
1747          "engineering-network": {
1748            "title": "Engineering (Network)",
1749            "type": "boolean",
1750            "description": "Search for jobs designing, implementing, and maintaining computer networks and infrastructure.",
1751            "default": false
1752          },
1753          "engineering-software": {
1754            "title": "Engineering (Software)",
1755            "type": "boolean",
1756            "description": "Filter jobs developing, testing, and maintaining software applications and systems.",
1757            "default": false
1758          },
1759          "help-desk-it-support": {
1760            "title": "Help Desk & IT Support",
1761            "type": "boolean",
1762            "description": "Search for jobs providing technical assistance and support to users.",
1763            "default": false
1764          },
1765          "information-communication-technology-management": {
1766            "title": "Management",
1767            "type": "boolean",
1768            "description": "Filter leadership roles overseeing IT operations, strategy, and teams.",
1769            "default": false
1770          },
1771          "networks-systems-administration": {
1772            "title": "Networks & Systems Administration",
1773            "type": "boolean",
1774            "description": "Search for jobs managing and maintaining computer networks, systems, and infrastructure.",
1775            "default": false
1776          },
1777          "information-communication-technology-product-management-development": {
1778            "title": "Product Management & Development",
1779            "type": "boolean",
1780            "description": "Filter jobs overseeing the development, launch, and maintenance of IT products.",
1781            "default": false
1782          },
1783          "programme-project-management": {
1784            "title": "Programme & Project Management",
1785            "type": "boolean",
1786            "description": "Search for jobs planning, coordinating, and delivering IT projects and programs.",
1787            "default": false
1788          },
1789          "sales-pre-post": {
1790            "title": "Sales (Pre & Post)",
1791            "type": "boolean",
1792            "description": "Filter jobs selling IT products or services, including pre-sales consulting and post-sales support.",
1793            "default": false
1794          },
1795          "security": {
1796            "title": "Security",
1797            "type": "boolean",
1798            "description": "Search for jobs protecting computer systems, networks, and data from cyber threats.",
1799            "default": false
1800          },
1801          "team-leaders": {
1802            "title": "Team Leaders",
1803            "type": "boolean",
1804            "description": "Filter leadership roles overseeing IT teams, projects, or departments.",
1805            "default": false
1806          },
1807          "technical-writing": {
1808            "title": "Technical Writing",
1809            "type": "boolean",
1810            "description": "Search for jobs creating user manuals, guides, and documentation for IT products and services.",
1811            "default": false
1812          },
1813          "telecommunications": {
1814            "title": "Telecommunications",
1815            "type": "boolean",
1816            "description": "Filter jobs in phone, internet, and data communication services.",
1817            "default": false
1818          },
1819          "testing-quality-assurance": {
1820            "title": "Testing & Quality Assurance",
1821            "type": "boolean",
1822            "description": "Search for jobs ensuring software and system quality through testing and validation.",
1823            "default": false
1824          },
1825          "web-development-production": {
1826            "title": "Web Development & Production",
1827            "type": "boolean",
1828            "description": "Filter jobs designing, building, and maintaining websites and web applications.",
1829            "default": false
1830          },
1831          "information-communication-technology-other": {
1832            "title": "Other",
1833            "type": "boolean",
1834            "description": "Filter information communication technology jobs that don't fit specific categories.",
1835            "default": false
1836          },
1837          "insurance-superannuation": {
1838            "title": "All Insurance Superannuation Subclasses",
1839            "type": "boolean",
1840            "description": "Include all insurance and superannuation subcategories.",
1841            "default": false
1842          },
1843          "actuarial": {
1844            "title": "Actuarial",
1845            "type": "boolean",
1846            "description": "Search for jobs analyzing statistical data to assess insurance risks and policy pricing.",
1847            "default": false
1848          },
1849          "assessment": {
1850            "title": "Assessment",
1851            "type": "boolean",
1852            "description": "Filter jobs evaluating insurance claims and determining liability.",
1853            "default": false
1854          },
1855          "brokerage": {
1856            "title": "Brokerage",
1857            "type": "boolean",
1858            "description": "Search for jobs connecting clients with insurance products and services.",
1859            "default": false
1860          },
1861          "claims": {
1862            "title": "Claims",
1863            "type": "boolean",
1864            "description": "Filter jobs processing and resolving insurance claims.",
1865            "default": false
1866          },
1867          "fund-administration": {
1868            "title": "Fund Administration",
1869            "type": "boolean",
1870            "description": "Search for jobs managing and administering superannuation funds.",
1871            "default": false
1872          },
1873          "insurance-superannuation-management": {
1874            "title": "Management",
1875            "type": "boolean",
1876            "description": "Filter leadership roles overseeing insurance and superannuation operations.",
1877            "default": false
1878          },
1879          "risk-consulting": {
1880            "title": "Risk Consulting",
1881            "type": "boolean",
1882            "description": "Search for jobs advising clients on risk management and mitigation strategies.",
1883            "default": false
1884