Seek Job Scraper avatar
Seek Job Scraper

Pricing

$35.00/month + usage

Go to Store
Seek Job Scraper

Seek Job Scraper

websift/seek-job-scraper

Developed by

Jacob

Maintained by Community

Scrape job listings from seek.com.au with ease! This actor extracts detailed job information based on customizable search parameters, returning results in structured JSON format. Perfect for lead generation, market research, or job seekers.

0.0 (0)

Pricing

$35.00/month + usage

8

Monthly users

33

Runs succeeded

95%

Last modified

11 days ago

You can access the Seek Job Scraper programmatically from your own applications by using the Apify API. You can also 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": "QBRP5fzecPd7dUQkq"
6  },
7  "servers": [
8    {
9      "url": "https://api.apify.com/v2"
10    }
11  ],
12  "paths": {
13    "/acts/websift~seek-job-scraper/run-sync-get-dataset-items": {
14      "post": {
15        "operationId": "run-sync-get-dataset-items-websift-seek-job-scraper",
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/runs": {
50      "post": {
51        "operationId": "runs-sync-websift-seek-job-scraper",
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/run-sync": {
93      "post": {
94        "operationId": "run-sync-websift-seek-job-scraper",
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": 200
149          },
150          "requireEmail": {
151            "title": "Require an Email",
152            "type": "boolean",
153            "description": "Requires an Email to be in the listing"
154          },
155          "requirePhone": {
156            "title": "Require a Phone Number",
157            "type": "boolean",
158            "description": "Requires a Phone Number to be in the listing"
159          },
160          "requireEmailPhone": {
161            "title": "Require an Email and Phone Number",
162            "type": "boolean",
163            "description": "Requires both and email and phone number in the listing"
164          },
165          "includeOneInTitle": {
166            "title": "Include One In Title",
167            "type": "array",
168            "description": "Include at least one of these words in the title",
169            "items": {
170              "type": "string"
171            }
172          },
173          "sortBy": {
174            "title": "Sort by",
175            "enum": [
176              "ListedDate",
177              "KeywordRelevance"
178            ],
179            "type": "string",
180            "description": "Sort order for job listings.",
181            "default": "ListedDate"
182          },
183          "dateRange": {
184            "title": "Date Range",
185            "maximum": 365,
186            "type": "integer",
187            "description": "Specifies the age of the oldest job posting in days, defaulting to 31 days."
188          },
189          "salaryType": {
190            "title": "Salary Type",
191            "enum": [
192              "Annual",
193              "Monthly",
194              "Hourly"
195            ],
196            "type": "string",
197            "description": "Select the salary format (Annual, Monthly, or Hourly) for job posting filtering."
198          },
199          "salaryMin": {
200            "title": "Minimum Salary",
201            "minimum": 0,
202            "type": "integer",
203            "description": "Set the lowest acceptable salary (in AUD) for job posting results."
204          },
205          "salaryMax": {
206            "title": "Maximum Salary",
207            "maximum": 100000000,
208            "type": "integer",
209            "description": "Set the highest acceptable salary (in AUD) for job posting results."
210          },
211          "suburbOrCity": {
212            "title": "Suburb or City",
213            "type": "string",
214            "description": "The suburb or city for the job location."
215          },
216          "state": {
217            "title": "State",
218            "type": "string",
219            "description": "The state for the job location."
220          },
221          "postCode": {
222            "title": "Postcode",
223            "type": "string",
224            "description": "The postcode for the job location."
225          },
226          "radius": {
227            "title": "Radius",
228            "maximum": 500,
229            "type": "integer",
230            "description": "Radius in kilometers for job search."
231          },
232          "workTypes": {
233            "title": "Filter job postings based on work types",
234            "type": "array",
235            "description": "Filter job postings based on work types",
236            "items": {
237              "type": "string",
238              "enum": [
239                "fulltime",
240                "parttime",
241                "contract",
242                "casual"
243              ],
244              "enumTitles": [
245                "Full Time",
246                "Part Time",
247                "Contract",
248                "Casual"
249              ]
250            }
251          },
252          "accounting": {
253            "title": "All Accounting Subclasses",
254            "type": "boolean",
255            "description": "Include all accounting subcategories in job search."
256          },
257          "accounts-officers-clerks": {
258            "title": "Accounts Officers & Clerks",
259            "type": "boolean",
260            "description": "Filter jobs for accounts officers, clerks, and administrative roles."
261          },
262          "accounts-payable": {
263            "title": "Accounts Payable",
264            "type": "boolean",
265            "description": "Search for jobs focused on managing company expenses and payments."
266          },
267          "accounts-receivable-credit-control": {
268            "title": "Accounts Receivable & Credit Control",
269            "type": "boolean",
270            "description": "Filter jobs handling customer invoicing and credit management."
271          },
272          "analysis-reporting": {
273            "title": "Analysis & Reporting",
274            "type": "boolean",
275            "description": "Search for jobs involving financial analysis, budgeting, and reporting."
276          },
277          "assistant-accountants": {
278            "title": "Assistant Accountants",
279            "type": "boolean",
280            "description": "Filter jobs for entry-level or support roles in accounting."
281          },
282          "audit-external": {
283            "title": "Audit External",
284            "type": "boolean",
285            "description": "Filter jobs for external audit roles, ensuring company compliance."
286          },
287          "audit-internal": {
288            "title": "Audit Internal",
289            "type": "boolean",
290            "description": "Filter jobs for internal audit roles, evaluating company processes."
291          },
292          "bookkeeping-small-practice-accounting": {
293            "title": "Bookkeeping & Small Practice Accounting",
294            "type": "boolean",
295            "description": "Search for bookkeeping and small accounting firm jobs."
296          },
297          "business-services-corporate-advisory": {
298            "title": "Business Services & Corporate Advisory",
299            "type": "boolean",
300            "description": "Filter jobs providing business advice and corporate services."
301          },
302          "company-secretaries": {
303            "title": "Company Secretaries",
304            "type": "boolean",
305            "description": "Search for company secretary jobs, handling governance and compliance."
306          },
307          "compliance-risk": {
308            "title": "Compliance & Risk",
309            "type": "boolean",
310            "description": "Filter jobs managing company compliance and mitigating risk."
311          },
312          "cost-accounting": {
313            "title": "Cost Accounting",
314            "type": "boolean",
315            "description": "Filter jobs analyzing and managing company costs."
316          },
317          "financial-accounting-reporting": {
318            "title": "Financial Accounting & Reporting",
319            "type": "boolean",
320            "description": "Search for jobs preparing financial statements and reports."
321          },
322          "financial-managers-controllers": {
323            "title": "Financial Managers & Controllers",
324            "type": "boolean",
325            "description": "Filter jobs overseeing financial strategy and operations."
326          },
327          "forensic-accounting-investigation": {
328            "title": "Forensic Accounting & Investigation",
329            "type": "boolean",
330            "description": "Search for jobs investigating financial irregularities and disputes."
331          },
332          "insolvency-corporate-recovery": {
333            "title": "Insolvency & Corporate Recovery",
334            "type": "boolean",
335            "description": "Filter jobs handling company insolvency and restructuring."
336          },
337          "inventory-fixed-assets": {
338            "title": "Inventory & Fixed Assets",
339            "type": "boolean",
340            "description": "Search for jobs managing inventory and fixed asset accounting."
341          },
342          "management": {
343            "title": "Management",
344            "type": "boolean",
345            "description": "Filter jobs in accounting management and leadership."
346          },
347          "management-accounting-budgeting": {
348            "title": "Management Accounting & Budgeting",
349            "type": "boolean",
350            "description": "Search for jobs analyzing financial data for business decisions."
351          },
352          "payroll": {
353            "title": "Payroll",
354            "type": "boolean",
355            "description": "Filter jobs handling employee payroll and benefits administration."
356          },
357          "strategy-planning": {
358            "title": "Strategy & Planning",
359            "type": "boolean",
360            "description": "Filter jobs developing and implementing business strategies."
361          },
362          "systems-accounting-it-audit": {
363            "title": "Systems Accounting & IT Audit",
364            "type": "boolean",
365            "description": "Search for jobs evaluating accounting systems and IT controls."
366          },
367          "taxation": {
368            "title": "Taxation",
369            "type": "boolean",
370            "description": "Filter jobs handling tax planning, compliance, and advisory services."
371          },
372          "treasury": {
373            "title": "Treasury",
374            "type": "boolean",
375            "description": "Search for jobs managing company finances, cash flow, and investments."
376          },
377          "other": {
378            "title": "Other",
379            "type": "boolean",
380            "description": "Filter jobs that don't fit into specific accounting categories."
381          },
382          "administration-office-support": {
383            "title": "All Administration Office Support Subclasses",
384            "type": "boolean",
385            "description": "Include all administration and office support subcategories."
386          },
387          "administrative-assistants": {
388            "title": "Administrative Assistants",
389            "type": "boolean",
390            "description": "Filter jobs providing administrative support to teams or executives."
391          },
392          "client-sales-administration": {
393            "title": "Client Sales Administration",
394            "type": "boolean",
395            "description": "Search for jobs handling client sales, orders, and administrative tasks."
396          },
397          "contracts-administration": {
398            "title": "Contracts Administration",
399            "type": "boolean",
400            "description": "Filter jobs managing contracts, agreements, and compliance."
401          },
402          "data-entry-word-processing": {
403            "title": "Data Entry & Word Processing",
404            "type": "boolean",
405            "description": "Search for jobs entering data, preparing documents, and performing clerical tasks."
406          },
407          "office-management": {
408            "title": "Office Management",
409            "type": "boolean",
410            "description": "Filter jobs overseeing office operations, staff, and resources."
411          },
412          "pa-ea-secretarial": {
413            "title": "PA/EA & Secretarial",
414            "type": "boolean",
415            "description": "Search for jobs providing executive-level administrative support."
416          },
417          "receptionists": {
418            "title": "Receptionists",
419            "type": "boolean",
420            "description": "Filter jobs handling front desk, customer service, and phone duties."
421          },
422          "records-management-document-control": {
423            "title": "Records Management & Document Control",
424            "type": "boolean",
425            "description": "Search for jobs managing company records, files, and documentation."
426          },
427          "administration-office-support-other": {
428            "title": "Other",
429            "type": "boolean",
430            "description": "Filter administration and office support jobs that don't fit specific categories."
431          },
432          "advertising-arts-media": {
433            "title": "All Advertising Arts Media Subclasses",
434            "type": "boolean",
435            "description": "Include all advertising, arts, and media subcategories."
436          },
437          "agency-account-management": {
438            "title": "Agency Account Management",
439            "type": "boolean",
440            "description": "Filter jobs managing client relationships at advertising agencies."
441          },
442          "art-direction": {
443            "title": "Art Direction",
444            "type": "boolean",
445            "description": "Search for jobs leading visual creative direction in advertising."
446          },
447          "editing-publishing": {
448            "title": "Editing & Publishing",
449            "type": "boolean",
450            "description": "Filter jobs in editing, publishing, and content creation."
451          },
452          "advertising-arts-media-event-management": {
453            "title": "Event Management",
454            "type": "boolean",
455            "description": "Search for jobs planning and executing events and activations."
456          },
457          "journalism-writing": {
458            "title": "Journalism & Writing",
459            "type": "boolean",
460            "description": "Filter jobs in journalism, writing, and content creation."
461          },
462          "advertising-arts-media-management": {
463            "title": "Management",
464            "type": "boolean",
465            "description": "Search for management jobs in advertising, arts, and media."
466          },
467          "media-strategy-planning-buying": {
468            "title": "Media Strategy, Planning & Buying",
469            "type": "boolean",
470            "description": "Filter jobs developing media plans and buying ad space."
471          },
472          "performing-arts": {
473            "title": "Performing Arts",
474            "type": "boolean",
475            "description": "Search for jobs in theater, dance, music, and other performing arts."
476          },
477          "photography": {
478            "title": "Photography",
479            "type": "boolean",
480            "description": "Filter jobs in photography for advertising, editorial, and commercial use."
481          },
482          "programming-production": {
483            "title": "Programming & Production",
484            "type": "boolean",
485            "description": "Search for jobs in TV, film, and digital content production."
486          },
487          "promotions": {
488            "title": "Promotions",
489            "type": "boolean",
490            "description": "Filter jobs creating promotional materials and campaigns."
491          },
492          "advertising-arts-media-other": {
493            "title": "Other",
494            "type": "boolean",
495            "description": "Filter advertising, arts, and media jobs that don't fit specific categories."
496          },
497          "banking-financial-services": {
498            "title": "All Banking Financial Services Subclasses",
499            "type": "boolean",
500            "description": "Include all banking and financial services subcategories."
501          },
502          "account-relationship-management": {
503            "title": "Account Relationship Management",
504            "type": "boolean",
505            "description": "Filter jobs managing client relationships in banking."
506          },
507          "banking-financial-services-analysis-reporting": {
508            "title": "Analysis & Reporting",
509            "type": "boolean",
510            "description": "Search for jobs analyzing financial data and creating reports."
511          },
512          "banking-business": {
513            "title": "Banking Business",
514            "type": "boolean",
515            "description": "Filter jobs in business banking, lending, and finance."
516          },
517          "banking-corporate-institutional": {
518            "title": "Banking Corporate & Institutional",
519            "type": "boolean",
520            "description": "Search for jobs serving corporate and institutional clients."
521          },
522          "banking-retail-branch": {
523            "title": "Banking Retail & Branch",
524            "type": "boolean",
525            "description": "Filter jobs in retail banking, branch management, and customer service."
526          },
527          "client-services": {
528            "title": "Client Services",
529            "type": "boolean",
530            "description": "Search for jobs providing service and support to banking clients."
531          },
532          "banking-financial-services-compliance-risk": {
533            "title": "Compliance & Risk",
534            "type": "boolean",
535            "description": "Filter jobs ensuring regulatory compliance and managing financial risk."
536          },
537          "corporate-finance-investment-banking": {
538            "title": "Corporate Finance & Investment Banking",
539            "type": "boolean",
540            "description": "Search for jobs advising on mergers, acquisitions, and corporate finance."
541          },
542          "credit": {
543            "title": "Credit",
544            "type": "boolean",
545            "description": "Filter jobs evaluating and managing credit risk and lending."
546          },
547          "financial-planning": {
548            "title": "Financial Planning",
549            "type": "boolean",
550            "description": "Search for jobs creating personalized financial plans for clients."
551          },
552          "funds-management": {
553            "title": "Funds Management",
554            "type": "boolean",
555            "description": "Filter jobs managing investment portfolios and funds."
556          },
557          "banking-financial-services-management": {
558            "title": "Management",
559            "type": "boolean",
560            "description": "Search for management jobs in banking and financial services."
561          },
562          "mortgages": {
563            "title": "Mortgages",
564            "type": "boolean",
565            "description": "Filter jobs originating, processing, and servicing mortgages."
566          },
567          "settlements": {
568            "title": "Settlements",
569            "type": "boolean",
570            "description": "Search for jobs facilitating financial transactions and settlements."
571          },
572          "stockbroking-trading": {
573            "title": "Stockbroking & Trading",
574            "type": "boolean",
575            "description": "Filter jobs buying and selling securities, stocks, and bonds."
576          },
577          "banking-financial-services-treasury": {
578            "title": "Treasury",
579            "type": "boolean",
580            "description": "Search for jobs managing company finances, cash flow, and investments."
581          },
582          "banking-financial-services-other": {
583            "title": "Other",
584            "type": "boolean",
585            "description": "Filter banking and financial services jobs that don't fit specific categories."
586          },
587          "call-centre-customer-service": {
588            "title": "All Call Centre Customer Service Subclasses",
589            "type": "boolean",
590            "description": "Include all call centre and customer service subcategories."
591          },
592          "collections": {
593            "title": "Collections",
594            "type": "boolean",
595            "description": "Filter jobs recovering debts and managing collections processes."
596          },
597          "customer-service-call-centre": {
598            "title": "Customer Service Call Centre",
599            "type": "boolean",
600            "description": "Search for jobs handling customer inquiries and support via phone."
601          },
602          "customer-service-customer-facing": {
603            "title": "Customer Service & Customer Facing",
604            "type": "boolean",
605            "description": "Filter jobs interacting with customers, providing support and resolving issues."
606          },
607          "management-support": {
608            "title": "Management Support",
609            "type": "boolean",
610            "description": "Search for jobs assisting managers, teams, and organizational operations."
611          },
612          "sales-inbound": {
613            "title": "Sales Inbound",
614            "type": "boolean",
615            "description": "Filter jobs handling incoming sales calls and customer inquiries."
616          },
617          "sales-outbound": {
618            "title": "Sales Outbound",
619            "type": "boolean",
620            "description": "Search for jobs generating sales leads and contacting potential customers."
621          },
622          "supervisors-team-leaders": {
623            "title": "Supervisors & Team Leaders",
624            "type": "boolean",
625            "description": "Filter jobs leading teams, supervising staff, and overseeing operations."
626          },
627          "call-centre-customer-service-other": {
628            "title": "Other",
629            "type": "boolean",
630            "description": "Filter call centre and customer service jobs that don't fit specific categories."
631          },
632          "ceo-general-management": {
633            "title": "All Ceo General Management Subclasses",
634            "type": "boolean",
635            "description": "Include all CEO and general management subcategories."
636          },
637          "board-appointments": {
638            "title": "Board Appointments",
639            "type": "boolean",
640            "description": "Filter jobs serving on company boards, directing strategy and governance."
641          },
642          "ceo": {
643            "title": "CEO",
644            "type": "boolean",
645            "description": "Search for jobs as chief executive officers, leading companies and organizations."
646          },
647          "coo-md": {
648            "title": "COO/MD",
649            "type": "boolean",
650            "description": "Filter jobs as chief operating officers or managing directors."
651          },
652          "general-business-unit-manager": {
653            "title": "General Business Unit Manager",
654            "type": "boolean",
655            "description": "Search for jobs overseeing business units, departments, or functions."
656          },
657          "ceo-general-management-other": {
658            "title": "Other",
659            "type": "boolean",
660            "description": "Filter CEO and general management jobs that don't fit specific categories."
661          },
662          "community-services-development": {
663            "title": "All Community Services Development Subclasses",
664            "type": "boolean",
665            "description": "Include all community services and development subcategories."
666          },
667          "aged-disability-support": {
668            "title": "Aged & Disability Support",
669            "type": "boolean",
670            "description": "Filter jobs providing care and support for aged and disabled individuals."
671          },
672          "child-welfare-youth-family-services": {
673            "title": "Child Welfare & Youth Family Services",
674            "type": "boolean",
675            "description": "Search for jobs supporting children, youth, and families in need."
676          },
677          "community-development": {
678            "title": "Community Development",
679            "type": "boolean",
680            "description": "Filter jobs promoting community growth, social justice, and empowerment."
681          },
682          "employment-services": {
683            "title": "Employment Services",
684            "type": "boolean",
685            "description": "Filter jobs providing employment support, training, and job placement services."
686          },
687          "fundraising": {
688            "title": "Fundraising",
689            "type": "boolean",
690            "description": "Search for jobs securing donations and sponsorships for community organizations."
691          },
692          "housing-homelessness-services": {
693            "title": "Housing & Homelessness Services",
694            "type": "boolean",
695            "description": "Filter jobs providing housing support, advocacy, and homelessness services."
696          },
697          "indigenous-multicultural-services": {
698            "title": "Indigenous & Multicultural Services",
699            "type": "boolean",
700            "description": "Search for jobs supporting Indigenous and multicultural communities."
701          },
702          "community-services-development-management": {
703            "title": "Management",
704            "type": "boolean",
705            "description": "Filter management jobs in community services and development."
706          },
707          "volunteer-coordination-support": {
708            "title": "Volunteer Coordination & Support",
709            "type": "boolean",
710            "description": "Search for jobs managing volunteer programs and supporting community engagement."
711          },
712          "community-services-development-other": {
713            "title": "Other",
714            "type": "boolean",
715            "description": "Filter community services and development jobs that don't fit specific categories."
716          },
717          "construction": {
718            "title": "All Construction Subclasses",
719            "type": "boolean",
720            "description": "Include all construction subcategories."
721          },
722          "contracts-management": {
723            "title": "Contracts Management",
724            "type": "boolean",
725            "description": "Filter jobs managing construction contracts, negotiations, and agreements."
726          },
727          "estimating": {
728            "title": "Estimating",
729            "type": "boolean",
730            "description": "Search for jobs calculating construction costs, quotes, and tenders."
731          },
732          "foreperson-supervisors": {
733            "title": "Foreperson & Supervisors",
734            "type": "boolean",
735            "description": "Filter jobs overseeing construction sites, teams, and operations."
736          },
737          "construction-health-safety-environment": {
738            "title": "Health, Safety & Environment",
739            "type": "boolean",
740            "description": "Search for jobs ensuring construction site safety, compliance, and sustainability."
741          },
742          "construction-management": {
743            "title": "Management",
744            "type": "boolean",
745            "description": "Filter jobs overseeing construction projects, teams, and operations."
746          },
747          "planning-scheduling": {
748            "title": "Planning & Scheduling",
749            "type": "boolean",
750            "description": "Search for jobs coordinating construction timelines, budgets, and resources."
751          },
752          "plant-machinery-operators": {
753            "title": "Plant & Machinery Operators",
754            "type": "boolean",
755            "description": "Filter jobs operating heavy machinery, equipment, and vehicles."
756          },
757          "construction-project-management": {
758            "title": "Project Management",
759            "type": "boolean",
760            "description": "Search for jobs managing construction projects from planning to completion."
761          },
762          "construction-quality-assurance-control": {
763            "title": "Quality Assurance & Control",
764            "type": "boolean",
765            "description": "Filter jobs ensuring construction quality, safety, and compliance."
766          },
767          "construction-surveying": {
768            "title": "Surveying",
769            "type": "boolean",
770            "description": "Search for jobs conducting site surveys, mapping, and geological assessments."
771          },
772          "construction-other": {
773            "title": "Other",
774            "type": "boolean",
775            "description": "Filter construction jobs that don't fit specific categories."
776          },
777          "consulting-strategy": {
778            "title": "All Consulting Strategy Subclasses",
779            "type": "boolean",
780            "description": "Include all consulting and strategy subcategories."
781          },
782          "consulting-strategy-analysts": {
783            "title": "Analysts",
784            "type": "boolean",
785            "description": "Filter jobs analyzing data, identifying trends, and informing business strategies."
786          },
787          "corporate-development": {
788            "title": "Corporate Development",
789            "type": "boolean",
790            "description": "Search for jobs driving business growth through M&A, partnerships, and innovation."
791          },
792          "environment-sustainability-consulting": {
793            "title": "Environment & Sustainability Consulting",
794            "type": "boolean",
795            "description": "Filter jobs advising on environmental sustainability, energy efficiency, and social responsibility."
796          },
797          "management-change-consulting": {
798            "title": "Management & Change Consulting",
799            "type": "boolean",
800            "description": "Search for jobs helping organizations adapt to change, improve performance, and optimize operations."
801          },
802          "policy": {
803            "title": "Policy",
804            "type": "boolean",
805            "description": "Filter jobs developing, implementing, and analyzing policies for organizations."
806          },
807          "consulting-strategy-planning": {
808            "title": "Strategy & Planning",
809            "type": "boolean",
810            "description": "Filter jobs developing and implementing business strategies and plans."
811          },
812          "consulting-strategy-other": {
813            "title": "Other",
814            "type": "boolean",
815            "description": "Filter consulting and strategy jobs that don't fit specific categories."
816          },
817          "design-architecture": {
818            "title": "All Design Architecture Subclasses",
819            "type": "boolean",
820            "description": "Include all design and architecture subcategories."
821          },
822          "architectural-drafting": {
823            "title": "Architectural Drafting",
824            "type": "boolean",
825            "description": "Filter jobs creating technical drawings and blueprints for buildings."
826          },
827          "architecture": {
828            "title": "Architecture",
829            "type": "boolean",
830            "description": "Search for jobs designing buildings, spaces, and environments."
831          },
832          "fashion-textile-design": {
833            "title": "Fashion & Textile Design",
834            "type": "boolean",
835            "description": "Filter jobs creating clothing, accessories, and textile designs."
836          },
837          "graphic-design": {
838            "title": "Graphic Design",
839            "type": "boolean",
840            "description": "Search for jobs designing visual communications, logos, and branding."
841          },
842          "illustration-animation": {
843            "title": "Illustration & Animation",
844            "type": "boolean",
845            "description": "Filter jobs creating illustrations, animations, and visual effects."
846          },
847          "industrial-design": {
848            "title": "Industrial Design",
849            "type": "boolean",
850            "description": "Search for jobs designing products, furniture, and equipment."
851          },
852          "interior-design": {
853            "title": "Interior Design",
854            "type": "boolean",
855            "description": "Filter jobs designing interior spaces, layouts, and aesthetics."
856          },
857          "landscape-architecture": {
858            "title": "Landscape Architecture",
859            "type": "boolean",
860            "description": "Search for jobs designing outdoor spaces, parks, and gardens."
861          },
862          "urban-design-planning": {
863            "title": "Urban Design & Planning",
864            "type": "boolean",
865            "description": "Filter jobs designing and planning cities, communities, and infrastructure."
866          },
867          "web-interaction-design": {
868            "title": "Web Interaction Design",
869            "type": "boolean",
870            "description": "Search for jobs designing user experiences and interfaces for websites."
871          },
872          "design-architecture-other": {
873            "title": "Other",
874            "type": "boolean",
875            "description": "Filter design and architecture jobs that don't fit specific categories."
876          },
877          "education-training": {
878            "title": "All Education Training Subclasses",
879            "type": "boolean",
880            "description": "Include all education and training subcategories."
881          },
882          "childcare-outside-school-hours-care": {
883            "title": "Childcare & Outside School Hours Care",
884            "type": "boolean",
885            "description": "Filter jobs providing childcare and supervision outside regular school hours."
886          },
887          "library-services-information-management": {
888            "title": "Library Services & Information Management",
889            "type": "boolean",
890            "description": "Search for jobs managing libraries, information systems, and digital resources."
891          },
892          "management-schools": {
893            "title": "Management in Schools",
894            "type": "boolean",
895            "description": "Filter jobs leading and administering schools, including principals and administrators."
896          },
897          "management-universities": {
898            "title": "Management in Universities",
899            "type": "boolean",
900            "description": "Search for jobs leading and administering universities, including vice-chancellors and department heads."
901          },
902          "management-vocational": {
903            "title": "Management in Vocational Education",
904            "type": "boolean",
905            "description": "Filter jobs leading and administering vocational education and training institutions."
906          },
907          "research-fellowships": {
908            "title": "Research Fellowships",
909            "type": "boolean",
910            "description": "Search for research positions and fellowships in various academic fields."
911          },
912          "student-services": {
913            "title": "Student Services",
914            "type": "boolean",
915            "description": "Filter jobs supporting student well-being, academic success, and campus life."
916          },
917          "teaching-early-childhood": {
918            "title": "Teaching Early Childhood",
919            "type": "boolean",
920            "description": "Search for jobs teaching children from birth to age 8, including kindergarten and preschool."
921          },
922          "teaching-primary": {
923            "title": "Teaching Primary",
924            "type": "boolean",
925            "description": "Filter jobs teaching students in primary schools (ages 5-11)."
926          },
927          "teaching-secondary": {
928            "title": "Teaching Secondary",
929            "type": "boolean",
930            "description": "Search for jobs teaching students in secondary schools (ages 11-18)."
931          },
932          "teaching-tertiary": {
933            "title": "Teaching Tertiary",
934            "type": "boolean",
935            "description": "Filter jobs teaching students in universities and colleges."
936          },
937          "teaching-vocational": {
938            "title": "Teaching Vocational",
939            "type": "boolean",
940            "description": "Search for jobs teaching technical and vocational skills in various industries."
941          },
942          "teaching-aides-special-needs": {
943            "title": "Teaching Aides & Special Needs",
944            "type": "boolean",
945            "description": "Filter jobs assisting teachers and supporting students with special needs."
946          },
947          "tutoring": {
948            "title": "Tutoring",
949            "type": "boolean",
950            "description": "Search for jobs providing one-on-one academic support and mentoring."
951          },
952          "workplace-training-assessment": {
953            "title": "Workplace Training & Assessment",
954            "type": "boolean",
955            "description": "Filter jobs providing training, evaluation, and skills assessment in workplace settings."
956          },
957          "education-training-other": {
958            "title": "Other",
959            "type": "boolean",
960            "description": "Filter education and training jobs that don't fit specific categories."
961          },
962          "engineering": {
963            "title": "All Engineering Subclasses",
964            "type": "boolean",
965            "description": "Include all engineering subcategories."
966          },
967          "aerospace-engineering": {
968            "title": "Aerospace Engineering",
969            "type": "boolean",
970            "description": "Search for jobs designing and developing aircraft, spacecraft, and missiles."
971          },
972          "automotive-engineering": {
973            "title": "Automotive Engineering",
974            "type": "boolean",
975            "description": "Filter jobs designing and developing vehicles, automotive systems, and components."
976          },
977          "building-services-engineering": {
978            "title": "Building Services Engineering",
979            "type": "boolean",
980            "description": "Search for jobs designing and maintaining building systems, including HVAC, electrical, and plumbing."
981          },
982          "chemical-engineering": {
983            "title": "Chemical Engineering",
984            "type": "boolean",
985            "description": "Filter jobs developing processes and systems for chemical manufacturing and production."
986          },
987          "civil-structural-engineering": {
988            "title": "Civil & Structural Engineering",
989            "type": "boolean",
990            "description": "Search for jobs designing and developing infrastructure, buildings, and structural systems."
991          },
992          "electrical-electronic-engineering": {
993            "title": "Electrical & Electronic Engineering",
994            "type": "boolean",
995            "description": "Filter jobs designing and developing electrical systems, electronics, and embedded systems."
996          },
997          "engineering-drafting": {
998            "title": "Engineering Drafting",
999            "type": "boolean",
1000            "description": "Search for jobs creating technical drawings and models for engineering projects."
1001          },
1002          "environmental-engineering": {
1003            "title": "Environmental Engineering",
1004            "type": "boolean",
1005            "description": "Filter jobs developing solutions for environmental issues, including air, water, and waste management."
1006          },
1007          "field-engineering": {
1008            "title": "Field Engineering",
1009            "type": "boolean",
1010            "description": "Search for jobs installing, maintaining, and repairing equipment and systems in the field."
1011          },
1012          "industrial-engineering": {
1013            "title": "Industrial Engineering",
1014            "type": "boolean",
1015            "description": "Filter jobs optimizing industrial processes, systems, and facilities."
1016          },
1017          "maintenance": {
1018            "title": "Maintenance",
1019            "type": "boolean",
1020            "description": "Search for jobs maintaining and repairing equipment, machinery, and infrastructure."
1021          },
1022          "engineering-management": {
1023            "title": "Management",
1024            "type": "boolean",
1025            "description": "Filter jobs leading and managing engineering teams, projects, and operations."
1026          },
1027          "materials-handling-engineering": {
1028            "title": "Materials Handling Engineering",
1029            "type": "boolean",
1030            "description": "Search for jobs designing and developing systems for materials handling and logistics."
1031          },
1032          "mechanical-engineering": {
1033            "title": "Mechanical Engineering",
1034            "type": "boolean",
1035            "description": "Filter jobs designing and developing mechanical systems, machines, and devices."
1036          },
1037          "process-engineering": {
1038            "title": "Process Engineering",
1039            "type": "boolean",
1040            "description": "Search for jobs designing and optimizing industrial processes and systems."
1041          },
1042          "project-engineering": {
1043            "title": "Project Engineering",
1044            "type": "boolean",
1045            "description": "Filter jobs managing and coordinating engineering projects from conception to completion."
1046          },
1047          "engineering-project-management": {
1048            "title": "Project Management",
1049            "type": "boolean",
1050            "description": "Search for jobs overseeing engineering projects, ensuring timely and budget-friendly delivery."
1051          },
1052          "supervisors": {
1053            "title": "Supervisors",
1054            "type": "boolean",
1055            "description": "Filter jobs supervising engineering teams, providing guidance and oversight."
1056          },
1057          "systems-engineering": {
1058            "title": "Systems Engineering",
1059            "type": "boolean",
1060            "description": "Search for jobs designing, integrating, and managing complex engineering systems."
1061          },
1062          "water-waste-engineering": {
1063            "title": "Water & Waste Engineering",
1064            "type": "boolean",
1065            "description": "Filter jobs developing solutions for water treatment, wastewater management, and waste disposal."
1066          },
1067          "engineering-other": {
1068            "title": "Other",
1069            "type": "boolean",
1070            "description": "Filter engineering jobs that don't fit specific categories."
1071          },
1072          "farming-animals-conservation": {
1073            "title": "All Farming Animals Conservation Subclasses",
1074            "type": "boolean",
1075            "description": "Include all farming, animals, and conservation subcategories."
1076          },
1077          "agronomy-farm-services": {
1078            "title": "Agronomy & Farm Services",
1079            "type": "boolean",
1080            "description": "Search for jobs providing crop management, soil science, and farm support services."
1081          },
1082          "conservation-parks-wildlife": {
1083            "title": "Conservation, Parks & Wildlife",
1084            "type": "boolean",
1085            "description": "Filter jobs preserving and protecting natural resources, parks, and wildlife."
1086          },
1087          "farm-labour": {
1088            "title": "Farm Labour",
1089            "type": "boolean",
1090            "description": "Search for jobs performing manual labor on farms, including harvesting and livestock care."
1091          },
1092          "farm-management": {
1093            "title": "Farm Management",
1094            "type": "boolean",
1095            "description": "Filter jobs overseeing farm operations, including planning, production, and finance."
1096          },
1097          "fishing-aquaculture": {
1098            "title": "Fishing & Aquaculture",
1099            "type": "boolean",
1100            "description": "Search for jobs in fishing, seafood production, and aquatic animal farming."
1101          },
1102          "horticulture": {
1103            "title": "Horticulture",
1104            "type": "boolean",
1105            "description": "Filter jobs cultivating and managing plants, gardens, and landscapes."
1106          },
1107          "veterinary-services-animal-welfare": {
1108            "title": "Veterinary Services & Animal Welfare",
1109            "type": "boolean",
1110            "description": "Search for jobs providing veterinary care, animal health services, and welfare advocacy."
1111          },
1112          "winery-viticulture": {
1113            "title": "Winery & Viticulture",
1114            "type": "boolean",
1115            "description": "Filter jobs in grape cultivation, wine production, and vineyard management."
1116          },
1117          "farming-animals-conservation-other": {
1118            "title": "Other",
1119            "type": "boolean",
1120            "description": "Filter farming, animals, and conservation jobs that don't fit specific categories."
1121          },
1122          "government-defence": {
1123            "title": "All Government Defence Subclasses",
1124            "type": "boolean",
1125            "description": "Include all government and defence subcategories."
1126          },
1127          "air-force": {
1128            "title": "Air Force",
1129            "type": "boolean",
1130            "description": "Search for jobs in military aviation, including pilots, maintenance, and support personnel."
1131          },
1132          "army": {
1133            "title": "Army",
1134            "type": "boolean",
1135            "description": "Search for jobs in the military's land-based branch, including combat, support, and administrative roles."
1136          },
1137          "emergency-services": {
1138            "title": "Emergency Services",
1139            "type": "boolean",
1140            "description": "Filter jobs responding to emergencies, including firefighting, paramedicine, and disaster relief."
1141          },
1142          "government-federal": {
1143            "title": "Government (Federal)",
1144            "type": "boolean",
1145            "description": "Search for jobs in federal government agencies, including administration, policy, and public services."
1146          },
1147          "government-local": {
1148            "title": "Government (Local)",
1149            "type": "boolean",
1150            "description": "Filter jobs in local government, including city, county, or municipal administration and services."
1151          },
1152          "government-state": {
1153            "title": "Government (State)",
1154            "type": "boolean",
1155            "description": "Search for jobs in state government agencies, including administration, policy, and public services."
1156          },
1157          "navy": {
1158            "title": "Navy",
1159            "type": "boolean",
1160            "description": "Filter jobs in the military's naval branch, including combat, support, and administrative roles."
1161          },
1162          "police-corrections": {
1163            "title": "Police & Corrections",
1164            "type": "boolean",
1165            "description": "Search for jobs in law enforcement, corrections, and criminal justice."
1166          },
1167          "policy-planning-regulation": {
1168            "title": "Policy, Planning & Regulation",
1169            "type": "boolean",
1170            "description": "Filter jobs developing and implementing policies, plans, and regulations in government and industry."
1171          },
1172          "government-defence-other": {
1173            "title": "Other",
1174            "type": "boolean",
1175            "description": "Filter government and defence jobs that don't fit specific categories."
1176          },
1177          "healthcare-medical": {
1178            "title": "All Healthcare Medical Subclasses",
1179            "type": "boolean",
1180            "description": "Include all healthcare and medical subcategories."
1181          },
1182          "ambulance-paramedics": {
1183            "title": "Ambulance & Paramedics",
1184            "type": "boolean",
1185            "description": "Search for jobs providing emergency medical services, transportation, and care."
1186          },
1187          "chiropractic-osteopathic": {
1188            "title": "Chiropractic & Osteopathic",
1189            "type": "boolean",
1190            "description": "Filter jobs providing alternative medical treatments, including spinal manipulation and manual therapy."
1191          },
1192          "clinical-medical-research": {
1193            "title": "Clinical & Medical Research",
1194            "type": "boolean",
1195            "description": "Search for jobs conducting studies, trials, and investigations to advance medical knowledge."
1196          },
1197          "dental": {
1198            "title": "Dental",
1199            "type": "boolean",
1200            "description": "Filter jobs providing dental care, including diagnosis, treatment, and prevention."
1201          },
1202          "dieticians": {
1203            "title": "Dieticians",
1204            "type": "boolean",
1205            "description": "Search for jobs promoting healthy eating habits, developing meal plans, and providing nutrition advice."
1206          },
1207          "environmental-services": {
1208            "title": "Environmental Services",
1209            "type": "boolean",
1210            "description": "Filter jobs maintaining cleanliness, hygiene, and waste management in healthcare settings."
1211          },
1212          "general-practitioners": {
1213            "title": "General Practitioners",
1214            "type": "boolean",
1215            "description": "Search for jobs providing primary care, routine check-ups, and referrals to specialists."
1216          },
1217          "healthcare-medical-management": {
1218            "title": "Management",
1219            "type": "boolean",
1220            "description": "Filter jobs overseeing healthcare operations, including administration, finance, and strategy."
1221          },
1222          "medical-administration": {
1223            "title": "Medical Administration",
1224            "type": "boolean",
1225            "description": "Search for jobs managing medical records, billing, and practice management."
1226          },
1227          "medical-imaging": {
1228            "title": "Medical Imaging",
1229            "type": "boolean",
1230            "description": "Filter jobs using medical imaging technologies, such as MRI, CT, and X-ray, for diagnostic purposes."
1231          },
1232          "medical-specialists": {
1233            "title": "Medical Specialists",
1234            "type": "boolean",
1235            "description": "Search for jobs specializing in specific medical fields, such as cardiology, oncology, or neurology."
1236          },
1237          "natural-therapies-alternative-medicine": {
1238            "title": "Natural Therapies & Alternative Medicine",
1239            "type": "boolean",
1240            "description": "Filter jobs providing holistic and alternative medical treatments, including acupuncture, homeopathy, and herbalism."
1241          },
1242          "nursing-a-e-critical-care-icu": {
1243            "title": "Nursing (A&E, Critical Care, ICU)",
1244            "type": "boolean",
1245            "description": "Search for jobs providing emergency, critical care, and intensive care nursing services."
1246          },
1247          "nursing-aged-care": {
1248            "title": "Nursing (Aged Care)",
1249            "type": "boolean",
1250            "description": "Filter jobs providing nursing care to elderly patients in residential or community settings."
1251          },
1252          "nursing-community-maternal-child-health": {
1253            "title": "Nursing (Community, Maternal & Child Health)",
1254            "type": "boolean",
1255            "description": "Search for jobs promoting community health, maternal care, and child health through nursing services."
1256          },
1257          "nursing-educators-facilitators": {
1258            "title": "Nursing (Educators & Facilitators)",
1259            "type": "boolean",
1260            "description": "Filter jobs teaching and training nursing students, professionals, and healthcare staff."
1261          },
1262          "nursing-general-medical-surgical": {
1263            "title": "Nursing (General, Medical, Surgical)",
1264            "type": "boolean",
1265            "description": "Search for jobs providing general nursing care in medical and surgical settings."
1266          },
1267          "nursing-high-acuity": {
1268            "title": "Nursing (High Acuity)",
1269            "type": "boolean",
1270            "description": "Filter jobs providing intensive nursing care to critically ill patients."
1271          },
1272          "nursing-management": {
1273            "title": "Nursing Management",
1274            "type": "boolean",
1275            "description": "Search for jobs overseeing nursing operations, including staffing, policy, and quality improvement."
1276          },
1277          "nursing-midwifery-neo-natal-scn-nicu": {
1278            "title": "Nursing (Midwifery, Neo-Natal, SCN, NICU)",
1279            "type": "boolean",
1280            "description": "Filter jobs providing nursing care to newborns, expectant mothers, and critically ill infants."
1281          },
1282          "nursing-paediatric-picu": {
1283            "title": "Nursing (Paediatric, PICU)",
1284            "type": "boolean",
1285            "description": "Search for jobs providing nursing care to children and critically ill pediatric patients."
1286          },
1287          "nursing-psych-forensic-correctional-health": {
1288            "title": "Nursing (Psych, Forensic, Correctional Health)",
1289            "type": "boolean",
1290            "description": "Filter jobs providing nursing care to patients with mental health issues, forensic patients, or those in correctional facilities."
1291          },
1292          "nursing-theatre-recovery": {
1293            "title": "Nursing (Theatre & Recovery)",
1294            "type": "boolean",
1295            "description": "Search for jobs providing nursing care in operating theatres and recovery rooms."
1296          },
1297          "optical": {
1298            "title": "Optical",
1299            "type": "boolean",
1300            "description": "Filter jobs related to eye care, including optometry, opticianry, and vision therapy."
1301          },
1302          "pathology": {
1303            "title": "Pathology",
1304            "type": "boolean",
1305            "description": "Filter jobs analyzing tissues, cells, and bodily fluids to diagnose diseases and develop treatments."
1306          },
1307          "pharmaceuticals-medical-devices": {
1308            "title": "Pharmaceuticals & Medical Devices",
1309            "type": "boolean",
1310            "description": "Search for jobs developing, manufacturing, and distributing medications and medical equipment."
1311          },
1312          "pharmacy": {
1313            "title": "Pharmacy",
1314            "type": "boolean",
1315            "description": "Filter jobs dispensing medications, advising patients, and providing pharmaceutical services."
1316          },
1317          "physiotherapy-ot-rehabilitation": {
1318            "title": "Physiotherapy, OT & Rehabilitation",
1319            "type": "boolean",
1320            "description": "Search for jobs helping patients recover from injuries or illnesses through physical therapy and rehabilitation."
1321          },
1322          "psychology-counselling-social-work": {
1323            "title": "Psychology, Counselling & Social Work",
1324            "type": "boolean",
1325            "description": "Filter jobs providing mental health services, counseling, and social support to individuals and communities."
1326          },
1327          "residents-registrars": {
1328            "title": "Residents & Registrars",
1329            "type": "boolean",
1330            "description": "Search for medical residency and registrar positions for postgraduate training."
1331          },
1332          "healthcare-medical-sales": {
1333            "title": "Sales",
1334            "type": "boolean",
1335            "description": "Filter jobs selling medical equipment, pharmaceuticals, or healthcare services."
1336          },
1337          "speech-therapy": {
1338            "title": "Speech Therapy",
1339            "type": "boolean",
1340            "description": "Search for jobs helping individuals with communication disorders through speech and language therapy."
1341          },
1342          "healthcare-medical-other": {
1343            "title": "Other",
1344            "type": "boolean",
1345            "description": "Filter healthcare and medical jobs that don't fit specific categories."
1346          },
1347          "hospitality-tourism": {
1348            "title": "All Hospitality Subclasses",
1349            "type": "boolean",
1350            "description": "Include all hospitality and tourism subcategories."
1351          },
1352          "airlines": {
1353            "title": "Airlines",
1354            "type": "boolean",
1355            "description": "Search for jobs in air transportation, including flight operations, customer service, and ground handling."
1356          },
1357          "bar-beverage-staff": {
1358            "title": "Bar & Beverage Staff",
1359            "type": "boolean",
1360            "description": "Search for jobs serving drinks and providing customer service in bars, restaurants, and hotels."
1361          },
1362          "chefs-cooks": {
1363            "title": "Chefs & Cooks",
1364            "type": "boolean",
1365            "description": "Filter jobs preparing and cooking food in restaurants, cafes, hotels, and other food service establishments."
1366          },
1367          "front-office-guest-services": {
1368            "title": "Front Office & Guest Services",
1369            "type": "boolean",
1370            "description": "Search for jobs providing customer service, reception, and concierge services in hotels and resorts."
1371          },
1372          "gaming": {
1373            "title": "Gaming",
1374            "type": "boolean",
1375            "description": "Filter jobs in casinos, gaming venues, or online gaming platforms, including dealers, managers, and support staff."
1376          },
1377          "housekeeping": {
1378            "title": "Housekeeping",
1379            "type": "boolean",
1380            "description": "Search for jobs maintaining cleanliness and organization in hotels, resorts, and other accommodations."
1381          },
1382          "kitchen-sandwich-hands": {
1383            "title": "Kitchen & Sandwich Hands",
1384            "type": "boolean",
1385            "description": "Filter jobs assisting chefs, preparing food, and maintaining kitchen operations."
1386          },
1387          "hospitality-tourism-management": {
1388            "title": "Management",
1389            "type": "boolean",
1390            "description": "Search for leadership roles overseeing hospitality and tourism operations, including hotels, restaurants, and resorts."
1391          },
1392          "reservations": {
1393            "title": "Reservations",
1394            "type": "boolean",
1395            "description": "Filter jobs handling bookings, cancellations, and customer inquiries for hotels, airlines, and travel agencies."
1396          },
1397          "tour-guides": {
1398            "title": "Tour Guides",
1399            "type": "boolean",
1400            "description": "Search for jobs leading groups of travelers, providing information, and ensuring memorable experiences."
1401          },
1402          "travel-agents-consultants": {
1403            "title": "Travel Agents & Consultants",
1404            "type": "boolean",
1405            "description": "Filter jobs planning and booking travel itineraries for individuals, groups, and corporate clients."
1406          },
1407          "waiting-staff": {
1408            "title": "Waiting Staff",
1409            "type": "boolean",
1410            "description": "Search for jobs serving food and beverages in restaurants, cafes, and hotels."
1411          },
1412          "hospitality-tourism-other": {
1413            "title": "Other",
1414            "type": "boolean",
1415            "description": "Filter hospitality and tourism jobs that don't fit specific categories."
1416          },
1417          "human-resources-recruitment": {
1418            "title": "All Human Resources Recruitment Subclasses",
1419            "type": "boolean",
1420            "description": "Include all human resources and recruitment subcategories."
1421          },
1422          "human-resources-recruitment-consulting-generalist-hr": {
1423            "title": "Consulting (Generalist, HR)",
1424            "type": "boolean",
1425            "description": "Search for HR consulting jobs providing strategic advice on recruitment, talent management, and organizational development."
1426          },
1427          "industrial-employee-relations": {
1428            "title": "Industrial & Employee Relations",
1429            "type": "boolean",
1430            "description": "Filter jobs managing workplace relationships, negotiations, and conflict resolution."
1431          },
1432          "management-agency": {
1433            "title": "Management (Agency)",
1434            "type": "boolean",
1435            "description": "Search for leadership roles in recruitment agencies, overseeing client relationships and talent acquisition."
1436          },
1437          "management-internal": {
1438            "title": "Management (Internal)",
1439            "type": "boolean",
1440            "description": "Filter jobs leading HR teams within organizations, focusing on talent development and strategic workforce planning."
1441          },
1442          "occupational-health-safety": {
1443            "title": "Occupational Health & Safety",
1444            "type": "boolean",
1445            "description": "Search for jobs ensuring workplace safety, implementing health programs, and reducing occupational risks."
1446          },
1447          "organisational-development": {
1448            "title": "Organisational Development",
1449            "type": "boolean",
1450            "description": "Filter jobs designing and implementing organizational improvement strategies, enhancing performance and efficiency."
1451          },
1452          "recruitment-agency": {
1453            "title": "Recruitment (Agency)",
1454            "type": "boolean",
1455            "description": "Search for jobs in recruitment agencies, matching candidates with client vacancies."
1456          },
1457          "recruitment-internal": {
1458            "title": "Recruitment (Internal)",
1459            "type": "boolean",
1460            "description": "Filter jobs managing internal recruitment processes, sourcing and hiring talent within organizations."
1461          },
1462          "remuneration-benefits": {
1463            "title": "Remuneration & Benefits",
1464            "type": "boolean",
1465            "description": "Search for jobs designing and administering compensation, benefits, and rewards programs."
1466          },
1467          "training-development": {
1468            "title": "Training & Development",
1469            "type": "boolean",
1470            "description": "Filter jobs creating and delivering employee training programs, enhancing skills and performance."
1471          },
1472          "human-resources-recruitment-other": {
1473            "title": "Other",
1474            "type": "boolean",
1475            "description": "Filter human resources and recruitment jobs that don't fit specific categories."
1476          },
1477          "information-communication-technology": {
1478            "title": "All Information Communication Technology Subclasses",
1479            "type": "boolean",
1480            "description": "Include all information communication technology subcategories."
1481          },
1482          "architects": {
1483            "title": "Architects",
1484            "type": "boolean",
1485            "description": "Search for jobs designing software, hardware, and network architectures."
1486          },
1487          "business-systems-analysts": {
1488            "title": "Business Systems Analysts",
1489            "type": "boolean",
1490            "description": "Filter jobs analyzing business needs and implementing technology solutions."
1491          },
1492          "computer-operators": {
1493            "title": "Computer Operators",
1494            "type": "boolean",
1495            "description": "Search for jobs managing computer systems, monitoring performance, and ensuring uptime."
1496          },
1497          "consultants": {
1498            "title": "Consultants",
1499            "type": "boolean",
1500            "description": "Filter jobs providing expert IT advice, strategy, and guidance to organizations."
1501          },
1502          "database-development-administration": {
1503            "title": "Database Development & Administration",
1504            "type": "boolean",
1505            "description": "Search for jobs designing, implementing, and maintaining databases."
1506          },
1507          "developers-programmers": {
1508            "title": "Developers & Programmers",
1509            "type": "boolean",
1510            "description": "Search for jobs designing, coding, and testing software applications and systems."
1511          },
1512          "engineering-hardware": {
1513            "title": "Engineering (Hardware)",
1514            "type": "boolean",
1515            "description": "Filter jobs designing, developing, and testing computer hardware components."
1516          },
1517          "engineering-network": {
1518            "title": "Engineering (Network)",
1519            "type": "boolean",
1520            "description": "Search for jobs designing, implementing, and maintaining computer networks and infrastructure."
1521          },
1522          "engineering-software": {
1523            "title": "Engineering (Software)",
1524            "type": "boolean",
1525            "description": "Filter jobs developing, testing, and maintaining software applications and systems."
1526          },
1527          "help-desk-it-support": {
1528            "title": "Help Desk & IT Support",
1529            "type": "boolean",
1530            "description": "Search for jobs providing technical assistance and support to users."
1531          },
1532          "information-communication-technology-management": {
1533            "title": "Management",
1534            "type": "boolean",
1535            "description": "Filter leadership roles overseeing IT operations, strategy, and teams."
1536          },
1537          "networks-systems-administration": {
1538            "title": "Networks & Systems Administration",
1539            "type": "boolean",
1540            "description": "Search for jobs managing and maintaining computer networks, systems, and infrastructure."
1541          },
1542          "information-communication-technology-product-management-development": {
1543            "title": "Product Management & Development",
1544            "type": "boolean",
1545            "description": "Filter jobs overseeing the development, launch, and maintenance of IT products."
1546          },
1547          "programme-project-management": {
1548            "title": "Programme & Project Management",
1549            "type": "boolean",
1550            "description": "Search for jobs planning, coordinating, and delivering IT projects and programs."
1551          },
1552          "sales-pre-post": {
1553            "title": "Sales (Pre & Post)",
1554            "type": "boolean",
1555            "description": "Filter jobs selling IT products or services, including pre-sales consulting and post-sales support."
1556          },
1557          "security": {
1558            "title": "Security",
1559            "type": "boolean",
1560            "description": "Search for jobs protecting computer systems, networks, and data from cyber threats."
1561          },
1562          "team-leaders": {
1563            "title": "Team Leaders",
1564            "type": "boolean",
1565            "description": "Filter leadership roles overseeing IT teams, projects, or departments."
1566          },
1567          "technical-writing": {
1568            "title": "Technical Writing",
1569            "type": "boolean",
1570            "description": "Search for jobs creating user manuals, guides, and documentation for IT products and services."
1571          },
1572          "telecommunications": {
1573            "title": "Telecommunications",
1574            "type": "boolean",
1575            "description": "Filter jobs in phone, internet, and data communication services."
1576          },
1577          "testing-quality-assurance": {
1578            "title": "Testing & Quality Assurance",
1579            "type": "boolean",
1580            "description": "Search for jobs ensuring software and system quality through testing and validation."
1581          },
1582          "web-development-production": {
1583            "title": "Web Development & Production",
1584            "type": "boolean",
1585            "description": "Filter jobs designing, building, and maintaining websites and web applications."
1586          },
1587          "information-communication-technology-other": {
1588            "title": "Other",
1589            "type": "boolean",
1590            "description": "Filter information communication technology jobs that don't fit specific categories."
1591          },
1592          "insurance-superannuation": {
1593            "title": "All Insurance Superannuation Subclasses",
1594            "type": "boolean",
1595            "description": "Include all insurance and superannuation subcategories."
1596          },
1597          "actuarial": {
1598            "title": "Actuarial",
1599            "type": "boolean",
1600            "description": "Search for jobs analyzing statistical data to assess insurance risks and policy pricing."
1601          },
1602          "assessment": {
1603            "title": "Assessment",
1604            "type": "boolean",
1605            "description": "Filter jobs evaluating insurance claims and determining liability."
1606          },
1607          "brokerage": {
1608            "title": "Brokerage",
1609            "type": "boolean",
1610            "description": "Search for jobs connecting clients with insurance products and services."
1611          },
1612          "claims": {
1613            "title": "Claims",
1614            "type": "boolean",
1615            "description": "Filter jobs processing and resolving insurance claims."
1616          },
1617          "fund-administration": {
1618            "title": "Fund Administration",
1619            "type": "boolean",
1620            "description": "Search for jobs managing and administering superannuation funds."
1621          },
1622          "insurance-superannuation-management": {
1623            "title": "Management",
1624            "type": "boolean",
1625            "description": "Filter leadership roles overseeing insurance and superannuation operations."
1626          },
1627          "risk-consulting": {
1628            "title": "Risk Consulting",
1629            "type": "boolean",
1630            "description": "Search for jobs advising clients on risk management and mitigation strategies."
1631          },
1632          "superannuation": {
1633            "title": "Superannuation",
1634            "type": "boolean",
1635            "description": "Filter jobs managing and administering retirement benefits."
1636          },
1637          "underwriting": {
1638            "title": "Underwriting",
1639            "type": "boolean",
1640            "description": "Search for jobs evaluating and assuming insurance risks."
1641          },
1642          "workers-compensation": {
1643            "title": "Workers Compensation",
1644            "type": "boolean",
1645            "description": "Filter jobs managing workplace injury claims and benefits."
1646          },
1647          "insurance-superannuation-other": {
1648            "title": "Other",
1649            "type": "boolean",
1650            "description": "Filter insurance and superannuation jobs that don't fit specific categories."
1651          },
1652          "legal": {
1653            "title": "All Legal Subclasses",
1654            "type": "boolean",
1655            "description": "Include all legal subcategories."
1656          },
1657          "banking-finance-law": {
1658            "title": "Banking & Finance Law",
1659            "type": "boolean",
1660            "description": "Search for jobs advising on banking, finance, and securities law."
1661          },
1662          "construction-law": {
1663            "title": "Construction Law",
1664            "type": "boolean",
1665            "description": "Filter jobs advising on construction contracts, disputes, and regulations."
1666          },
1667          "corporate-commercial-law": {
1668            "title": "Corporate & Commercial Law",
1669            "type": "boolean",
1670            "description": "Filter jobs advising on business structures, mergers, acquisitions, and commercial transactions."
1671          },
1672          "criminal-civil-law": {
1673            "title": "Criminal & Civil Law",
1674            "type": "boolean",
1675            "description": "Search for jobs representing clients in criminal and civil courts, including trials and appeals."
1676          },
1677          "environment-planning-law": {
1678            "title": "Environment & Planning Law",
1679            "type": "boolean",
1680            "description": "Filter jobs advising on environmental regulations, land use, and urban planning."
1681          },
1682          "family-law": {
1683            "title": "Family Law",
1684            "type": "boolean",
1685            "description": "Search for jobs handling divorce, child custody, and other family-related legal issues."
1686          },
1687          "generalists-in-house": {
1688            "title": "Generalists (In-House)",
1689            "type": "boolean",
1690            "description": "Filter in-house counsel jobs handling various legal matters for organizations."
1691          },
1692          "generalists-law-firm": {
1693            "title": "Generalists (Law Firm)",
1694            "type": "boolean",
1695            "description": "Search for law firm jobs handling diverse legal cases and clients."
1696          },
1697          "industrial-relations-employment-law": {
1698            "title": "Industrial Relations & Employment Law",
1699            "type": "boolean",
1700            "description": "Filter jobs advising on workplace laws, labor disputes, and employee relations."
1701          },
1702          "insurance-superannuation-law": {
1703            "title": "Insurance & Superannuation Law",
1704            "type": "boolean",
1705            "description": "Search for jobs advising on insurance policies, claims, and superannuation funds."
1706          },
1707          "intellectual-property-law": {
1708            "title": "Intellectual Property Law",
1709            "type": "boolean",
1710            "description": "Filter jobs protecting patents, trademarks, copyrights, and trade secrets."
1711          },
1712          "law-clerks-paralegals": {
1713            "title": "Law Clerks & Paralegals",
1714            "type": "boolean",
1715            "description": "Search for support roles assisting lawyers with research, documentation, and case management."
1716          },
1717          "legal-practice-management": {
1718            "title": "Legal Practice Management",
1719            "type": "boolean",
1720            "description": "Filter leadership roles overseeing law firm operations, finance, and administration."
1721          },
1722          "legal-secretaries": {
1723            "title": "Legal Secretaries",
1724            "type": "boolean",
1725            "description": "Search for administrative roles supporting lawyers with scheduling, documents, and correspondence."
1726          },
1727          "litigation-dispute-resolution": {
1728            "title": "Litigation & Dispute Resolution",
1729            "type": "boolean",
1730            "description": "Filter jobs representing clients in court, arbitration, and mediation proceedings."
1731          },
1732          "personal-injury-law": {
1733            "title": "Personal Injury Law",
1734            "type": "boolean",
1735            "description": "Search for jobs handling compensation claims for accidents, injuries, and negligence."
1736          },
1737          "property-law": {
1738            "title": "Property Law",
1739            "type": "boolean",
1740            "description": "Filter jobs advising on property transactions, conveyancing, and land development."
1741          },
1742          "tax-law": {
1743            "title": "Tax Law",
1744            "type": "boolean",
1745            "description": "Search for jobs advising on tax planning, compliance, and controversy resolution."
1746          },
1747          "legal-other": {
1748            "title": "Other",
1749            "type": "boolean",
1750            "description": "Filter legal jobs that don't fit specific categories."
1751          },
1752          "manufacturing-transport-logistics": {
1753            "title": "All Manufacturing Transport Logistics Subclasses",
1754            "type": "boolean",
1755            "description": "Include all manufacturing, transport, and logistics subcategories."
1756          },
1757          "manufacturing-transport-logistics-analysis-reporting": {
1758            "title": "Analysis & Reporting",
1759            "type": "boolean",
1760            "description": "Filter jobs analyzing data and generating reports for manufacturing and logistics operations."
1761          },
1762          "assembly-process-work": {
1763            "title": "Assembly & Process Work",
1764            "type": "boolean",
1765            "description": "Search for jobs involving assembly, production lines, and manufacturing processes."
1766          },
1767          "aviation-services": {
1768            "title": "Aviation Services",
1769            "type": "boolean",
1770            "description": "Filter jobs in air transportation, including flight operations and maintenance."
1771          },
1772          "couriers-drivers-postal-services": {
1773            "title": "Couriers, Drivers & Postal Services",
1774            "type": "boolean",
1775            "description": "Search for jobs delivering packages, documents, and mail."
1776          },
1777          "fleet-management": {
1778            "title": "Fleet Management",
1779            "type": "boolean",
1780            "description": "Filter jobs overseeing vehicle maintenance, routing, and logistics."
1781          },
1782          "freight-cargo-forwarding": {
1783            "title": "Freight & Cargo Forwarding",
1784            "type": "boolean",
1785            "description": "Search for jobs coordinating shipping, warehousing, and transportation of goods."
1786          },
1787          "import-export-customs": {
1788            "title": "Import, Export & Customs",
1789            "type": "boolean",
1790            "description": "Filter jobs handling international trade, customs compliance, and regulatory affairs."
1791          },
1792          "machine-operators": {
1793            "title": "Machine Operators",
1794            "type": "boolean",
1795            "description": "Search for jobs operating manufacturing equipment, machinery, and tools."
1796          },
1797          "manufacturing-transport-logistics-management": {
1798            "title": "Management",
1799            "type": "boolean",
1800            "description": "Filter leadership roles overseeing manufacturing, transport, and logistics operations."
1801          },
1802          "pattern-makers-garment-technicians": {
1803            "title": "Pattern Makers & Garment Technicians",
1804            "type": "boolean",
1805            "description": "Search for jobs designing and developing textile patterns and garments."
1806          },
1807          "pickers-packers": {
1808            "title": "Pickers & Packers",
1809            "type": "boolean",
1810            "description": "Filter jobs involving order fulfillment, packaging, and shipping."
1811          },
1812          "production-planning-scheduling": {
1813            "title": "Production Planning & Scheduling",
1814            "type": "boolean",
1815            "description": "Search for jobs coordinating production timelines, resource allocation, and supply chain management."
1816          },
1817          "public-transport-taxi-services": {
1818            "title": "Public Transport & Taxi Services",
1819            "type": "boolean",
1820            "description": "Filter jobs driving or managing public transportation, taxis, or ride-sharing services."
1821          },
1822          "purchasing-procurement-inventory": {
1823            "title": "Purchasing, Procurement & Inventory",
1824            "type": "boolean",
1825            "description": "Search for jobs managing supply chain, procurement, and inventory management."
1826          },
1827          "manufacturing-transport-logistics-quality-assurance-control": {
1828            "title": "Quality Assurance & Control",
1829            "type": "boolean",
1830            "description": "Filter jobs ensuring product quality, testing, and compliance in manufacturing and logistics."
1831          },
1832          "rail-maritime-transport": {
1833            "title": "Rail & Maritime Transport",
1834            "type": "boolean",
1835            "description": "Filter jobs in rail and maritime transportation, including operations and maintenance."
1836          },
1837          "road-transport": {
1838            "title": "Road Transport",
1839            "type": "boolean",
1840            "description": "Search for jobs in trucking, logistics, and road transportation services."
1841          },
1842          "team-leaders-supervisors": {
1843            "title": "Team Leaders & Supervisors",
1844            "type": "boolean",
1845            "description": "Filter leadership roles overseeing teams in manufacturing, transport, and logistics."
1846          },
1847          "warehousing-storage-distribution": {
1848            "title": "Warehousing, Storage & Distribution",
1849            "type": "boolean",
1850            "description": "Search for jobs managing inventory, storage, and distribution operations."
1851          },
1852          "manufacturing-transport-logistics-other": {
1853            "title": "Other",
1854            "type": "boolean",
1855            "description": "Filter manufacturing, transport, and logistics jobs that don't fit specific categories."
1856          },
1857          "marketing-communications": {
1858            "title": "All Marketing Communications Subclasses",
1859            "type": "boolean",
1860            "description": "Include all marketing communications subcategories."
1861          },
1862          "brand-management": {
1863            "title": "Brand Management",
1864            "type": "boolean",
1865            "description": "Filter jobs developing and maintaining brand identity and strategy."
1866          },
1867          "digital-search-marketing": {
1868            "title": "Digital Search Marketing",
1869            "type": "boolean",
1870            "description": "Search for jobs in online marketing, SEO, and paid advertising."
1871          },
1872          "direct-marketing-crm": {
1873            "title": "Direct Marketing & CRM",
1874            "type": "boolean",
1875            "description": "Filter jobs managing customer relationships and direct marketing campaigns."
1876          },
1877          "marketing-communications-event-management": {
1878            "title": "Event Management",
1879            "type": "boolean",
1880            "description": "Search for jobs planning and executing marketing events and conferences."
1881          },
1882          "internal-communications": {
1883            "title": "Internal Communications",
1884            "type": "boolean",
1885            "description": "Filter jobs managing employee engagement and internal messaging."
1886          },
1887          "marketing-communications-management": {
1888            "title": "Management",
1889            "type": "boolean",
1890            "description": "Filter leadership roles overseeing marketing communications teams."
1891          },
1892          "market-research-analysis": {
1893            "title": "Market Research & Analysis",
1894            "type": "boolean",
1895            "description": "Search for jobs analyzing market trends and consumer behavior."
1896          },
1897          "marketing-assistants-coordinators": {
1898            "title": "Marketing Assistants & Coordinators",
1899            "type": "boolean",
1900            "description": "Filter entry-level marketing roles supporting campaigns and projects."
1901          },
1902          "marketing-communications-marketing-communications": {
1903            "title": "Marketing Communications",
1904            "type": "boolean",
1905            "description": "Search for jobs creating and disseminating marketing messages."
1906          },
1907          "marketing-communications-product-management-development": {
1908            "title": "Product Management & Development",
1909            "type": "boolean",
1910            "description": "Filter jobs managing product launches and development."
1911          },
1912          "public-relations-corporate-affairs": {
1913            "title": "Public Relations & Corporate Affairs",
1914            "type": "boolean",
1915            "description": "Search for jobs managing company reputation and media relations."
1916          },
1917          "trade-marketing": {
1918            "title": "Trade Marketing",
1919            "type": "boolean",
1920            "description": "Filter jobs promoting products to wholesalers, retailers, and distributors."
1921          },
1922          "marketing-communications-other": {
1923            "title": "Other",
1924            "type": "boolean",
1925            "description": "Filter marketing communications jobs that don't fit specific categories."
1926          },
1927          "mining-resources-energy": {
1928            "title": "All Mining Resources Energy Subclasses",
1929            "type": "boolean",
1930            "description": "Include all mining, resources, and energy subcategories."
1931          },
1932          "mining-resources-energy-analysis-reporting": {
1933            "title": "Analysis & Reporting",
1934            "type": "boolean",
1935            "description": "Filter jobs analyzing data and generating reports for mining, resources, and energy operations."
1936          },
1937          "mining-resources-energy-health-safety-environment": {
1938            "title": "Health, Safety & Environment",
1939            "type": "boolean",
1940            "description": "Search for jobs ensuring safe and sustainable practices in mining, resources, and energy."
1941          },
1942          "mining-resources-energy-management": {
1943            "title": "Management",
1944            "type": "boolean",
1945            "description": "Filter leadership roles overseeing mining, resources, and energy operations."
1946          },
1947          "mining-drill-blast": {
1948            "title": "Mining Drill & Blast",
1949            "type": "boolean",
1950            "description": "Search for jobs in drilling and blasting operations for mining."
1951          },
1952          "mining-engineering-maintenance": {
1953            "title": "Mining Engineering & Maintenance",
1954            "type": "boolean",
1955            "description": "Filter jobs designing, maintaining, and optimizing mining equipment and infrastructure."
1956          },
1957          "mining-exploration-geoscience": {
1958            "title": "Mining Exploration & Geoscience",
1959            "type": "boolean",
1960            "description": "Search for jobs exploring and analyzing geological data for mining operations."
1961          },
1962          "mining-operations": {
1963            "title": "Mining Operations",
1964            "type": "boolean",
1965            "description": "Filter jobs managing day-to-day mining activities, including extraction and processing."
1966          },
1967          "mining-processing": {
1968            "title": "Mining Processing",
1969            "type": "boolean",
1970            "description": "Search for jobs transforming raw materials into refined products."
1971          },
1972          "natural-resources-water": {
1973            "title": "Natural Resources & Water",
1974            "type": "boolean",
1975            "description": "Filter jobs managing water resources, conservation, and sustainability."
1976          },
1977          "oil-gas-drilling": {
1978            "title": "Oil & Gas Drilling",
1979            "type": "boolean",
1980            "description": "Search for jobs drilling and extracting oil and gas."
1981          },
1982          "oil-gas-engineering-maintenance": {
1983            "title": "Oil & Gas Engineering & Maintenance",
1984            "type": "boolean",
1985            "description": "Filter jobs designing, maintaining, and optimizing oil and gas equipment and infrastructure."
1986          },
1987          "oil-gas-exploration-geoscience": {
1988            "title": "Oil & Gas Exploration & Geoscience",
1989            "type": "boolean",
1990            "description": "Search for jobs exploring and analyzing geological data for oil and gas operations."
1991          },
1992          "oil-gas-operations": {
1993            "title": "Oil & Gas Operations",
1994            "type": "boolean",
1995            "description": "Filter jobs managing day-to-day oil and gas activities, including extraction and processing."
1996          },
1997          "oil-gas-production-refinement": {
1998            "title": "Oil & Gas Production & Refinement",
1999            "type": "boolean",
2000            "description": "Search for jobs transforming crude oil and gas into refined products."
2001          },
2002          "power-generation-distribution": {
2003            "title": "Power Generation & Distribution",
2004            "type": "boolean",
2005            "description": "Filter jobs generating and distributing electricity."
2006          },
2007          "mining-resources-energy-surveying": {
2008            "title": "Surveying",
2009            "type": "boolean",
2010            "description": "Search for jobs conducting geological surveys and mapping for mining and energy operations."
2011          },
2012          "mining-resources-energy-other": {
2013            "title": "Other",
2014            "type": "boolean",
2015            "description": "Filter mining, resources, and energy jobs that don't fit specific categories."
2016          },
2017          "real-estate-property": {
2018            "title": "All Real Estate Property Subclasses",
2019            "type": "boolean",
2020            "description": "Include all real estate and property subcategories."
2021          },
2022          "real-estate-property-administration": {
2023            "title": "Administration",
2024            "type": "boolean",
2025            "description": "Filter administrative roles in real estate and property management."
2026          },
2027          "real-estate-property-analysts": {
2028            "title": "Analysts",
2029            "type": "boolean",
2030            "description": "Search for jobs analyzing market trends and property data."
2031          },
2032          "body-corporate-facilities-management": {
2033            "title": "Body Corporate & Facilities Management",
2034            "type": "boolean",
2035            "description": "Filter jobs managing shared facilities and amenities."
2036          },
2037          "commercial-sales-leasing-property-mgmt": {
2038            "title": "Commercial Sales & Leasing / Property Management",
2039            "type": "boolean",
2040            "description": "Search for jobs buying, selling, leasing, and managing commercial properties."
2041          },
2042          "residential-leasing-property-management": {
2043            "title": "Residential Leasing & Property Management",
2044            "type": "boolean",
2045            "description": "Filter jobs managing residential rentals and properties."
2046          },
2047          "residential-sales": {
2048            "title": "Residential Sales",
2049            "type": "boolean",
2050            "description": "Search for jobs buying and selling residential properties."
2051          },
2052          "retail-property-development": {
2053            "title": "Retail Property Development",
2054            "type": "boolean",
2055            "description": "Filter jobs developing and managing retail properties."
2056          },
2057          "valuation": {
2058            "title": "Valuation",
2059            "type": "boolean",
2060            "description": "Search for jobs determining property values."
2061          },
2062          "real-estate-property-other": {
2063            "title": "Other",
2064            "type": "boolean",
2065            "description": "Filter real estate and property jobs that don't fit specific categories."
2066          },
2067          "retail-consumer-products": {
2068            "title": "All Retail Consumer Products Subclasses",
2069            "type": "boolean",
2070            "description": "Include all retail and consumer products subcategories."
2071          },
2072          "buying": {
2073            "title": "Buying",
2074            "type": "boolean",
2075            "description": "Filter jobs purchasing products for retail sale."
2076          },
2077          "management-area-multi-site": {
2078            "title": "Management Area (Multi-Site)",
2079            "type": "boolean",
2080            "description": "Search for jobs managing multiple retail locations."
2081          },
2082          "management-department-assistant": {
2083            "title": "Management Department Assistant",
2084            "type": "boolean",
2085            "description": "Filter assistant roles supporting retail department managers."
2086          },
2087          "management-store": {
2088            "title": "Management Store",
2089            "type": "boolean",
2090            "description": "Search for jobs managing retail stores."
2091          },
2092          "merchandisers": {
2093            "title": "Merchandisers",
2094            "type": "boolean",
2095            "description": "Filter jobs planning and executing product displays and promotions."
2096          },
2097          "planning": {
2098            "title": "Planning",
2099            "type": "boolean",
2100            "description": "Search for jobs analyzing sales data and planning retail strategies."
2101          },
2102          "retail-assistants": {
2103            "title": "Retail Assistants",
2104            "type": "boolean",
2105            "description": "Filter entry-level retail roles assisting customers and supporting sales."
2106          },
2107          "retail-consumer-products-other": {
2108            "title": "Other",
2109            "type": "boolean",
2110            "description": "Filter retail and consumer products jobs that don't fit specific categories."
2111          },
2112          "sales": {
2113            "title": "All Sales Subclasses",
2114            "type": "boolean",
2115            "description": "Include all sales subcategories."
2116          },
2117          "sales-account-relationship-management": {
2118            "title": "Account Relationship Management",
2119            "type": "boolean",
2120            "description": "Filter jobs managing existing client relationships and sales growth."
2121          },
2122          "sales-analysis-reporting": {
2123            "title": "Analysis & Reporting",
2124            "type": "boolean",
2125            "description": "Search for jobs analyzing sales data and generating reports."
2126          },
2127          "sales-management": {
2128            "title": "Management",
2129            "type": "boolean",
2130            "description": "Filter leadership roles overseeing sales teams."
2131          },
2132          "new-business-development": {
2133            "title": "New Business Development",
2134            "type": "boolean",
2135            "description": "Search for jobs identifying and pursuing new sales opportunities."
2136          },
2137          "sales-coordinators": {
2138            "title": "Sales Coordinators",
2139            "type": "boolean",
2140            "description": "Filter administrative roles supporting sales teams."
2141          },
2142          "sales-representatives-consultants": {
2143            "title": "Sales Representatives / Consultants",
2144            "type": "boolean",
2145            "description": "Search for jobs directly engaging with customers and driving sales."
2146          },
2147          "sales-other": {
2148            "title": "Other",
2149            "type": "boolean",
2150            "description": "Filter sales jobs that don't fit specific categories."
2151          },
2152          "science-technology": {
2153            "title": "All Science Technology Subclasses",
2154            "type": "boolean",
2155            "description": "Include all science and technology subcategories."
2156          },
2157          "biological-biomedical-sciences": {
2158            "title": "Biological & Biomedical Sciences",
2159            "type": "boolean",
2160            "description": "Filter jobs in biological research, development, and application."
2161          },
2162          "biotechnology-genetics": {
2163            "title": "Biotechnology & Genetics",
2164            "type": "boolean",
2165            "description": "Search for jobs in genetic research, engineering, and product development."
2166          },
2167          "chemistry-physics": {
2168            "title": "Chemistry & Physics",
2169            "type": "boolean",
2170            "description": "Filter jobs in chemical and physical research, development, and application."
2171          },
2172          "environmental-earth-geosciences": {
2173            "title": "Environmental / Earth / Geosciences",
2174            "type": "boolean",
2175            "description": "Search for jobs in environmental conservation, geology, and earth sciences."
2176          },
2177          "food-technology-safety": {
2178            "title": "Food Technology & Safety",
2179            "type": "boolean",
2180            "description": "Filter jobs ensuring food quality, safety, and production."
2181          },
2182          "laboratory-technical-services": {
2183            "title": "Laboratory & Technical Services",
2184            "type": "boolean",
2185            "description": "Search for jobs conducting tests, analyses, and research in laboratory settings."
2186          },
2187          "materials-sciences": {
2188            "title": "Materials Sciences",
2189            "type": "boolean",
2190            "description": "Filter jobs researching and developing new materials and technologies."
2191          },
2192          "mathematics-statistics-information-sciences": {
2193            "title": "Mathematics / Statistics / Information Sciences",
2194            "type": "boolean",
2195            "description": "Filter jobs applying mathematical, statistical, and informational sciences."
2196          },
2197          "modelling-simulation": {
2198            "title": "Modelling & Simulation",
2199            "type": "boolean",
2200            "description": "Search for jobs creating models and simulations for analysis and prediction."
2201          },
2202          "science-technology-quality-assurance-control": {
2203            "title": "Quality Assurance & Control",
2204            "type": "boolean",
2205            "description": "Filter jobs ensuring quality standards in scientific and technological fields."
2206          },
2207          "science-technology-other": {
2208            "title": "Other",
2209            "type": "boolean",
2210            "description": "Filter science and technology jobs that don't fit specific categories."
2211          },
2212          "sport-recreation": {
2213            "title": "All Sport Recreation Subclasses",
2214            "type": "boolean",
2215            "description": "Include all sport and recreation subcategories."
2216          },
2217          "coaching-instruction": {
2218            "title": "Coaching & Instruction",
2219            "type": "boolean",
2220            "description": "Filter jobs teaching and training individuals or teams in sports and fitness."
2221          },
2222          "fitness-personal-training": {
2223            "title": "Fitness & Personal Training",
2224            "type": "boolean",
2225            "description": "Search for jobs leading fitness classes or training individuals."
2226          },
2227          "sport-recreation-management": {
2228            "title": "Management",
2229            "type": "boolean",
2230            "description": "Filter leadership roles overseeing sports and recreation programs."
2231          },
2232          "sport-recreation-other": {
2233            "title": "Other",
2234            "type": "boolean",
2235            "description": "Filter sport and recreation jobs that don't fit specific categories."
2236          },
2237          "trades-services": {
2238            "title": "All Trades Services Subclasses",
2239            "type": "boolean",
2240            "description": "Include all trades and services subcategories."
2241          },
2242          "air-conditioning-refrigeration": {
2243            "title": "Air Conditioning & Refrigeration",
2244            "type": "boolean",
2245            "description": "Filter jobs installing, maintaining, and repairing HVAC and refrigeration systems."
2246          },
2247          "automotive-trades": {
2248            "title": "Automotive Trades",
2249            "type": "boolean",
2250            "description": "Search for jobs repairing and maintaining vehicles."
2251          },
2252          "bakers-pastry-chefs": {
2253            "title": "Bakers & Pastry Chefs",
2254            "type": "boolean",
2255            "description": "Filter jobs preparing baked goods and pastries."
2256          },
2257          "building-trades": {
2258            "title": "Building Trades",
2259            "type": "boolean",
2260            "description": "Search for jobs in construction, carpentry, and masonry."
2261          },
2262          "butchers": {
2263            "title": "Butchers",
2264            "type": "boolean",
2265            "description": "Filter jobs cutting, processing, and selling meat products."
2266          },
2267          "carpentry-cabinet-making": {
2268            "title": "Carpentry & Cabinet Making",
2269            "type": "boolean",
2270            "description": "Search for jobs building, installing, and repairing cabinets and furniture."
2271          },
2272          "cleaning-services": {
2273            "title": "Cleaning Services",
2274            "type": "boolean",
2275            "description": "Filter jobs providing cleaning and maintenance services."
2276          },
2277          "electricians": {
2278            "title": "Electricians",
2279            "type": "boolean",
2280            "description": "Search for jobs installing, maintaining, and repairing electrical systems."
2281          },
2282          "fitters-turners-machinists": {
2283            "title": "Fitters, Turners & Machinists",
2284            "type": "boolean",
2285            "description": "Filter jobs fabricating, assembling, and repairing machinery and equipment."
2286          },
2287          "floristry": {
2288            "title": "Floristry",
2289            "type": "boolean",
2290            "description": "Search for jobs creating floral arrangements and managing flower shops."
2291          },
2292          "gardening-landscaping": {
2293            "title": "Gardening & Landscaping",
2294            "type": "boolean",
2295            "description": "Filter jobs maintaining gardens, parks, and outdoor spaces."
2296          },
2297          "hair-beauty-services": {
2298            "title": "Hair & Beauty Services",
2299            "type": "boolean",
2300            "description": "Search for jobs providing hair styling, makeup, and beauty treatments."
2301          },
2302          "labourers": {
2303            "title": "Labourers",
2304            "type": "boolean",
2305            "description": "Filter manual labor jobs assisting tradespeople and construction sites."
2306          },
2307          "locksmiths": {
2308            "title": "Locksmiths",
2309            "type": "boolean",
2310            "description": "Search for jobs installing, repairing, and maintaining locks and security devices."
2311          },
2312          "maintenance-handyperson-services": {
2313            "title": "Maintenance & Handyperson Services",
2314            "type": "boolean",
2315            "description": "Filter jobs performing routine maintenance and repairs."
2316          },
2317          "nannies-babysitters": {
2318            "title": "Nannies & Babysitters",
2319            "type": "boolean",
2320            "description": "Search for childcare jobs providing in-home care."
2321          },
2322          "painters-sign-writers": {
2323            "title": "Painters & Sign Writers",
2324            "type": "boolean",
2325            "description": "Filter jobs applying paint and coatings, and creating signs."
2326          },
2327          "plumbers": {
2328            "title": "Plumbers",
2329            "type": "boolean",
2330            "description": "Search for jobs installing, maintaining, and repairing pipes and plumbing systems."
2331          },
2332          "printing-publishing-services": {
2333            "title": "Printing & Publishing Services",
2334            "type": "boolean",
2335            "description": "Filter jobs producing printed materials and publications."
2336          },
2337          "security-services": {
2338            "title": "Security Services",
2339            "type": "boolean",
2340            "description": "Search for jobs protecting people, property, and assets."
2341          },
2342          "tailors-dressmakers": {
2343            "title": "Tailors & Dressmakers",
2344            "type": "boolean",
2345            "description": "Filter jobs creating, altering, and repairing clothing."
2346          },
2347          "technicians": {
2348            "title": "Technicians",
2349            "type": "boolean",
2350            "description": "Search for jobs repairing and maintaining technical equipment."
2351          },
2352          "welders-boilermakers": {
2353            "title": "Welders & Boilermakers",
2354            "type": "boolean",
2355            "description": "Filter jobs joining metal parts using heat and pressure."
2356          },
2357          "trades-services-other": {
2358            "title": "Other",
2359            "type": "boolean",
2360            "description": "Filter trades and services jobs that don't fit specific categories."
2361          },
2362          "self-employment": {
2363            "title": "Self Employment",
2364            "type": "boolean",
2365            "description": "Include jobs for entrepreneurs and independent contractors."
2366          }
2367        }
2368      },
2369      "runsResponseSchema": {
2370        "type": "object",
2371        "properties": {
2372          "data": {
2373            "type": "object",
2374            "properties": {
2375              "id": {
2376                "type": "string"
2377              },
2378              "actId": {
2379                "type": "string"
2380              },
2381              "userId": {
2382                "type": "string"
2383              },
2384              "startedAt": {
2385                "type": "string",
2386                "format": "date-time",
2387                "example": "2025-01-08T00:00:00.000Z"
2388              },
2389              "finishedAt": {
2390                "type": "string",
2391                "format": "date-time",
2392                "example": "2025-01-08T00:00:00.000Z"
2393              },
2394              "status": {
2395                "type": "string",
2396                "example": "READY"
2397              },
2398              "meta": {
2399                "type": "object",
2400                "properties": {
2401                  "origin": {
2402                    "type": "string",
2403                    "example": "API"
2404                  },
2405                  "userAgent": {
2406                    "type": "string"
2407                  }
2408                }
2409              },
2410              "stats": {
2411                "type": "object",
2412                "properties": {
2413                  "inputBodyLen": {
2414                    "type": "integer",
2415                    "example": 2000
2416                  },
2417                  "rebootCount": {
2418                    "type": "integer",
2419                    "example": 0
2420                  },
2421                  "restartCount": {
2422                    "type": "integer",
2423                    "example": 0
2424                  },
2425                  "resurrectCount": {
2426                    "type": "integer",
2427                    "example": 0
2428                  },
2429                  "computeUnits": {
2430                    "type": "integer",
2431                    "example": 0
2432                  }
2433                }
2434              },
2435              "options": {
2436                "type": "object",
2437                "properties": {
2438                  "build": {
2439                    "type": "string",
2440                    "example": "latest"
2441                  },
2442                  "timeoutSecs": {
2443                    "type": "integer",
2444                    "example": 300
2445                  },
2446                  "memoryMbytes": {
2447                    "type": "integer",
2448                    "example": 1024
2449                  },
2450                  "diskMbytes": {
2451                    "type": "integer",
2452                    "example": 2048
2453                  }
2454                }
2455              },
2456              "buildId": {
2457                "type": "string"
2458              },
2459              "defaultKeyValueStoreId": {
2460                "type": "string"
2461              },
2462              "defaultDatasetId": {
2463                "type": "string"
2464              },
2465              "defaultRequestQueueId": {
2466                "type": "string"
2467              },
2468              "buildNumber": {
2469                "type": "string",
2470                "example": "1.0.0"
2471              },
2472              "containerUrl": {
2473                "type": "string"
2474              },
2475              "usage": {
2476                "type": "object",
2477                "properties": {
2478                  "ACTOR_COMPUTE_UNITS": {
2479                    "type": "integer",
2480                    "example": 0
2481                  },
2482                  "DATASET_READS": {
2483                    "type": "integer",
2484                    "example": 0
2485                  },
2486                  "DATASET_WRITES": {
2487                    "type": "integer",
2488                    "example": 0
2489                  },
2490                  "KEY_VALUE_STORE_READS": {
2491                    "type": "integer",
2492                    "example": 0
2493                  },
2494                  "KEY_VALUE_STORE_WRITES": {
2495                    "type": "integer",
2496                    "example": 1
2497                  },
2498                  "KEY_VALUE_STORE_LISTS": {
2499                    "type": "integer",
2500                    "example": 0
2501                  },
2502                  "REQUEST_QUEUE_READS": {
2503                    "type": "integer",
2504                    "example": 0
2505                  },
2506                  "REQUEST_QUEUE_WRITES": {
2507                    "type": "integer",
2508                    "example": 0
2509                  },
2510                  "DATA_TRANSFER_INTERNAL_GBYTES": {
2511                    "type": "integer",
2512                    "example": 0
2513                  },
2514                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
2515                    "type": "integer",
2516                    "example": 0
2517                  },
2518                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
2519                    "type": "integer",
2520                    "example": 0
2521                  },
2522                  "PROXY_SERPS": {
2523                    "type": "integer",
2524                    "example": 0
2525                  }
2526                }
2527              },
2528              "usageTotalUsd": {
2529                "type": "number",
2530                "example": 0.00005
2531              },
2532              "usageUsd": {
2533                "type": "object",
2534                "properties": {
2535                  "ACTOR_COMPUTE_UNITS": {
2536                    "type": "integer",
2537                    "example": 0
2538                  },
2539                  "DATASET_READS": {
2540                    "type": "integer",
2541                    "example": 0
2542                  },
2543                  "DATASET_WRITES": {
2544                    "type": "integer",
2545                    "example": 0
2546                  },
2547                  "KEY_VALUE_STORE_READS": {
2548                    "type": "integer",
2549                    "example": 0
2550                  },
2551                  "KEY_VALUE_STORE_WRITES": {
2552                    "type": "number",
2553                    "example": 0.00005
2554                  },
2555                  "KEY_VALUE_STORE_LISTS": {
2556                    "type": "integer",
2557                    "example": 0
2558                  },
2559                  "REQUEST_QUEUE_READS": {
2560                    "type": "integer",
2561                    "example": 0
2562                  },
2563                  "REQUEST_QUEUE_WRITES": {
2564                    "type": "integer",
2565                    "example": 0
2566                  },
2567                  "DATA_TRANSFER_INTERNAL_GBYTES": {
2568                    "type": "integer",
2569                    "example": 0
2570                  },
2571                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
2572                    "type": "integer",
2573                    "example": 0
2574                  },
2575                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
2576                    "type": "integer",
2577                    "example": 0
2578                  },
2579                  "PROXY_SERPS": {
2580                    "type": "integer",
2581                    "example": 0
2582                  }
2583                }
2584              }
2585            }
2586          }
2587        }
2588      }
2589    }
2590  }
2591}

Seek Job Scraper OpenAPI definition

OpenAPI is a standard for designing and describing RESTful APIs, allowing developers to define API structure, endpoints, and data formats in a machine-readable way. It simplifies API development, integration, and documentation.

OpenAPI is effective when used with AI agents and GPTs by standardizing how these systems interact with various APIs, for reliable integrations and efficient communication.

By defining machine-readable API specifications, OpenAPI allows AI models like GPTs to understand and use varied data sources, improving accuracy. This accelerates development, reduces errors, and provides context-aware responses, making OpenAPI a core component for AI applications.

You can download the OpenAPI definitions for Seek Job Scraper from the options below:

If youโ€™d like to learn more about how OpenAPI powers GPTs, read our blog post.

You can also check out our other API clients:

Pricing

Pricing model

Rentalย 

To use this Actor, you have to pay a monthly rental fee to the developer. The rent is subtracted from your prepaid usage every month after the free trial period. You also pay for the Apify platform usage.

Free trial

2 hours

Price

$35.00