forked from ebhomengo/niki
68 lines
3.8 KiB
Go
68 lines
3.8 KiB
Go
package data
|
|
|
|
// Job consists of job data
|
|
var Job = map[string][]string{
|
|
"title": {
|
|
"Accountant", "Actor", "Acrobat", "Administrative Assistant", "Administrator",
|
|
"Animator", "Analyst", "Anesthesiologist", "Archaeologist", "Architect",
|
|
"Artist", "Astronomer", "Athletic Trainer", "Attorney", "Auditor",
|
|
"Baker", "Banker", "Barber", "Bartender", "Barista",
|
|
"Bellhop", "Biologist", "Blacksmith", "Bookkeeper", "Bouncer",
|
|
"Broker", "Bus Driver", "Butcher", "Camera Operator", "Carpenter",
|
|
"Cashier", "Chef", "Chemist", "Cleaner", "Coach",
|
|
"Comedian", "Computer Programmer", "Concierge", "Construction Worker", "Consultant",
|
|
"Contractor", "Cook", "Counselor", "Court Reporter", "Curator",
|
|
"Custodian", "Dancer", "Data Scientist", "Delivery Driver", "Dentist",
|
|
"Designer", "Detective", "Developer", "Dietitian", "Director",
|
|
"DJ", "Doctor", "Dog Walker", "Driver", "Electrician",
|
|
"Engineer", "Esthetician", "Executive", "Farmer", "Financial Advisor",
|
|
"Financial Planner", "Firefighter", "Fisher", "Flight Attendant", "Florist",
|
|
"Garbage Collector", "Gardener", "Geologist", "Graphic Designer", "Groundskeeper",
|
|
"Hairdresser", "Handyman", "Hostess", "Hotel Manager", "HVAC Technician",
|
|
"Illustrator", "Insurance Agent", "Interpreter", "Janitor", "Journalist",
|
|
"Judge", "Landscaper", "Lawyer", "Legal Assistant", "Librarian",
|
|
"Lifeguard", "Line Cook", "Loan Officer", "Mail Carrier", "Manager",
|
|
"Mason", "Massage Therapist", "Mechanic", "Musician", "Nail Technician",
|
|
"Network Administrator", "Nurse", "Nutritionist", "Occupational Therapist", "Optometrist",
|
|
"Painter", "Paralegal", "Paramedic", "Pharmacist", "Photographer",
|
|
"Physical Therapist", "Physician", "Pilot", "Plumber", "Police Officer",
|
|
"Principal", "Professor", "Programmer", "Psychologist", "Radiologist",
|
|
"Real Estate Agent", "Receptionist", "Referee", "Reporter", "Researcher",
|
|
"Retail Associate", "Roofer", "Sailor", "Sales Representative", "Scientist",
|
|
"Scrum Master", "Sculptor", "Secretary", "Security Guard", "Server",
|
|
"Singer", "Social Media Influencer", "Social Worker", "Software Engineer", "Sommelier",
|
|
"Sound Engineer", "Speech Therapist", "Stage Manager", "Statistician", "Steamer",
|
|
"Stock Clerk", "Store Manager", "Storyteller", "Stunt Performer", "Stylist",
|
|
"Substitute Teacher", "Surgeon", "Surveyor", "System Administrator", "Systems Analyst",
|
|
"Tailor", "Tattoo Artist", "Tax Preparer", "Taxi Driver", "Teacher",
|
|
"Technician", "Telemarketer", "Therapist", "Tiler", "Tour Guide",
|
|
"Toy Maker", "Traffic Controller", "Train Conductor", "Translator", "Travel Agent",
|
|
"Tutor", "Umpire", "Upholsterer", "Usher", "Valet",
|
|
"Vendor", "Veterinarian", "Video Editor", "Voice Actor", "Waiter",
|
|
"Watchmaker", "Web Developer", "Welder", "Window Washer", "Writer",
|
|
"Zookeeper",
|
|
},
|
|
"descriptor": {
|
|
"Assistant", "Associate", "Brand", "Business", "Central",
|
|
"Chief", "Client", "Corporate", "Customer", "Deputy",
|
|
"Direct", "District", "Division", "Dynamic", "Executive",
|
|
"Finance", "Financial", "Forward", "Future", "Global",
|
|
"Group", "Head", "Human", "Internal", "International",
|
|
"Investor", "Junior", "Lead", "Legacy", "Main",
|
|
"Marketing", "National", "Operations", "Primary", "Principal",
|
|
"Product", "Public", "Regional", "Sales", "Senior",
|
|
"Staff", "Strategic", "Systems", "Technical", "Technology",
|
|
"Vice",
|
|
},
|
|
"level": {
|
|
"Accountability", "Accounts", "Applications", "Assurance", "Brand",
|
|
"Branding", "Communications", "Configuration", "Creative", "Data",
|
|
"Directives", "Division", "Factors", "Functionality", "Group",
|
|
"Identity", "Implementation", "Infrastructure", "Integration", "Interactions",
|
|
"Intranet", "Marketing", "Markets", "Metrics", "Mobility",
|
|
"Operations", "Optimization", "Paradigm", "Program", "Quality",
|
|
"Research", "Response", "Security", "Solutions", "Tactics",
|
|
"Usability", "Web",
|
|
},
|
|
}
|