Seek Job Scraper Lite (Pay Per Row) avatar

Seek Job Scraper Lite (Pay Per Row)

Try for free

Pay $0.30 for 1,000 results

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

Seek Job Scraper Lite (Pay Per Row)

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

Pay $0.30 for 1,000 results

Search jobs on seek with various inputs

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

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

Seek Job Scraper Lite (Pay Per Row) 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 Lite (Pay Per Row) 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:

Developer
Maintained by Community

Actor Metrics

  • 5 monthly users

  • 2 stars

  • >99% runs succeeded

  • Created in Oct 2024

  • Modified 2 months ago