├── .eslintrc.json ├── src └── app │ ├── constants │ └── constants.ts │ ├── favicon.ico │ ├── types │ └── company.model.ts │ ├── components │ ├── filter-bar.tsx │ ├── filter-item.tsx │ └── sortable-header.tsx │ ├── helper │ └── companyHelper.ts │ ├── layout.tsx │ ├── globals.css │ └── page.tsx ├── public ├── favicon.png └── linkedin.png ├── postcss.config.js ├── next.config.js ├── countries ├── belgium.json ├── norway.json ├── finland.json ├── france.json ├── Denmark.json ├── new-zealand.json ├── turkey.json ├── austria.json ├── spain.json ├── italy.json ├── ireland.json ├── index.js ├── england.json ├── sweden.json ├── netherlands.json └── germany.json ├── .gitignore ├── tailwind.config.js ├── package.json ├── tsconfig.json ├── README.md └── .github └── workflows └── nextjs.yml /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /src/app/constants/constants.ts: -------------------------------------------------------------------------------- 1 | export const ASCENDING = "ASC"; 2 | export const DESCENDING = "DESC"; -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiaExplains/visa-sponsorship-companies/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiaExplains/visa-sponsorship-companies/HEAD/public/linkedin.png -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiaExplains/visa-sponsorship-companies/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('next').NextConfig} */ 2 | const nextConfig = { 3 | trailingSlash: true, 4 | output: "export", 5 | images: { 6 | unoptimized: true, 7 | }, 8 | }; 9 | 10 | module.exports = nextConfig; 11 | -------------------------------------------------------------------------------- /src/app/types/company.model.ts: -------------------------------------------------------------------------------- 1 | type Company = { 2 | name: string; 3 | yearOfMake: string; 4 | industry: string; 5 | city: string; 6 | numberOfEmployees: string; 7 | country: string; 8 | linkedin: string; 9 | }; 10 | 11 | export type { Company }; 12 | -------------------------------------------------------------------------------- /countries/belgium.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "Odoo", 4 | "year-of-make": "2005", 5 | "industry": "Software", 6 | "city": "Perwez", 7 | "number-of-employees": "2000", 8 | "country": "Belgium", 9 | "linkedin": "https://www.odoo.com/r/x6T" 10 | } 11 | ] 12 | -------------------------------------------------------------------------------- /countries/norway.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "Shortcut", 4 | "year-of-make": "2007", 5 | "industry": "Software Development", 6 | "city": "Oslo", 7 | "number-of-employees": "100", 8 | "country": "Norway", 9 | "linkedin": "https://www.linkedin.com/company/shortcut-as/jobs" 10 | } 11 | ] -------------------------------------------------------------------------------- /countries/finland.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "RELEX Solutions", 4 | "year-of-make": "2005", 5 | "industry": "Software Development", 6 | "city": "Helsinki", 7 | "number-of-employees": "2000", 8 | "country": "Finland", 9 | "linkedin": "https://www.linkedin.com/company/relexsolutions/jobs" 10 | } 11 | ] -------------------------------------------------------------------------------- /countries/france.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "SEGULA Technologies", 4 | "year-of-make": "2000", 5 | "industry": "Engineering Services", 6 | "city": "Nanterre", 7 | "number-of-employees": "10000", 8 | "country": "France", 9 | "linkedin": "https://www.linkedin.com/company/segula-technologies/jobs" 10 | } 11 | ] 12 | -------------------------------------------------------------------------------- /src/app/components/filter-bar.tsx: -------------------------------------------------------------------------------- 1 | import { ReactNode } from "react"; 2 | 3 | type FilterBarProps = { 4 | children: ReactNode; 5 | }; 6 | const FilterBar = ({ children }: FilterBarProps) => { 7 | return
{children}
; 8 | }; 9 | 10 | export default FilterBar; 11 | 12 | export type { FilterBarProps }; 13 | -------------------------------------------------------------------------------- /countries/Denmark.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "Wunderman Thompson MAP", 4 | "year-of-make": "2016", 5 | "industry": "Advertising Services", 6 | "city": "Copenhagen", 7 | "number-of-employees": "1000", 8 | "country": "Denmark", 9 | "linkedin": "https://www.linkedin.com/company/wundermanthompsonmap/" 10 | } 11 | ] 12 | -------------------------------------------------------------------------------- /countries/new-zealand.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "Vista", 4 | "year-of-make": "1996", 5 | "industry": "IT Services and IT Consulting", 6 | "city": "Auckland", 7 | "number-of-employees": "700", 8 | "country": "New Zealand", 9 | "linkedin": "https://www.linkedin.com/company/vista-entertainment-solutions/jobs" 10 | } 11 | ] -------------------------------------------------------------------------------- /src/app/components/filter-item.tsx: -------------------------------------------------------------------------------- 1 | import { ReactNode } from "react"; 2 | 3 | type FilterItemProps = { 4 | children: ReactNode; 5 | }; 6 | const FilterItem = ({ children }: FilterItemProps) => { 7 | return
{children}
; 8 | }; 9 | 10 | export default FilterItem; 11 | 12 | export type { FilterItemProps }; 13 | -------------------------------------------------------------------------------- /countries/turkey.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "beije", 4 | "year-of-make": "2022", 5 | "industry": "Hygienic products subscription service", 6 | "city": "Istanbul", 7 | "number-of-employees": "30", 8 | "country": "Turkey", 9 | "linkedin": "https://www.linkedin.com/company/beije-tr/jobs" 10 | } 11 | ] -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # next.js 12 | /.next/ 13 | /out/ 14 | 15 | # production 16 | /build 17 | 18 | # misc 19 | .DS_Store 20 | *.pem 21 | 22 | # debug 23 | npm-debug.log* 24 | yarn-debug.log* 25 | yarn-error.log* 26 | 27 | # local env files 28 | .env*.local 29 | 30 | # vercel 31 | .vercel 32 | 33 | # typescript 34 | *.tsbuildinfo 35 | next-env.d.ts 36 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('tailwindcss').Config} */ 2 | module.exports = { 3 | content: [ 4 | './src/pages/**/*.{js,ts,jsx,tsx,mdx}', 5 | './src/components/**/*.{js,ts,jsx,tsx,mdx}', 6 | './src/app/**/*.{js,ts,jsx,tsx,mdx}', 7 | ], 8 | theme: { 9 | extend: { 10 | backgroundImage: { 11 | 'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))', 12 | 'gradient-conic': 13 | 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))', 14 | }, 15 | }, 16 | }, 17 | plugins: [], 18 | } 19 | -------------------------------------------------------------------------------- /countries/austria.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "Journi", 4 | "year-of-make": "2014", 5 | "industry": "Technology, Information and Internet", 6 | "city": "Vienna", 7 | "number-of-employees": "50", 8 | "country": "Austria", 9 | "linkedin": "https://www.linkedin.com/company/journiapp/jobs" 10 | }, 11 | { 12 | "name": "ChargePoint", 13 | "year-of-make": "2007", 14 | "industry": "Motor Vehicle Manufacturing", 15 | "city": "Campbell", 16 | "number-of-employees": "2000", 17 | "country": "Austria", 18 | "linkedin": "https://www.linkedin.com/company/chargepoint/jobs" 19 | } 20 | ] -------------------------------------------------------------------------------- /countries/spain.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "Amadeus", 4 | "year-of-make": "2000", 5 | "industry": "IT Services and IT Consulting", 6 | "city": "Madrid", 7 | "number-of-employees": "16000", 8 | "country": "Spain", 9 | "linkedin": "https://www.linkedin.com/company/amadeus/jobs" 10 | }, 11 | { 12 | "name": "eDreams ODIGEO", 13 | "year-of-make": "2000", 14 | "industry": "Travel and E-commerce", 15 | "city": "Barcelona", 16 | "number-of-employees": "5000", 17 | "country": "Spain", 18 | "linkedin": "https://www.linkedin.com/company/edreamsodigeo/about/" 19 | } 20 | ] 21 | -------------------------------------------------------------------------------- /countries/italy.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "Bending Spoons", 4 | "year-of-make": "2013", 5 | "industry": "Technology, Information and Internet", 6 | "city": "Milan", 7 | "number-of-employees": "700", 8 | "country": "Italy", 9 | "linkedin": "https://www.linkedin.com/company/bendingspoons/jobs" 10 | }, 11 | { 12 | "name": "Harpa Italia s.r.l.", 13 | "year-of-make": "1985", 14 | "industry": "IT Services and IT Consulting", 15 | "city": "Roma", 16 | "number-of-employees": "100", 17 | "country": "Italy", 18 | "linkedin": "https://www.linkedin.com/company/harpa-italia-s.r.l./jobs" 19 | } 20 | ] 21 | -------------------------------------------------------------------------------- /countries/ireland.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "Ryan Air", 4 | "year-of-make": "1984", 5 | "industry": "Aviation", 6 | "city": "Dublin", 7 | "number-of-employees": "19000", 8 | "country": "Ireland", 9 | "linkedin": "https://www.linkedin.com/company/ryan-air-inc/jobs" 10 | }, 11 | { 12 | "name":"Prospect Health", 13 | "industry": "Staffing and Recruiting", 14 | "city":"Cork", 15 | "number-of-employees": "50", 16 | "country": "Ireland", 17 | "linkedin": "https://jobs.opticianonline.net/job/1402134919/independent-audiologist-hearing-aid-dispenser-j197938/?cmpid=PRC|JOBS|OPJOB-Jooble-organic#application-form" 18 | } 19 | ] 20 | -------------------------------------------------------------------------------- /src/app/helper/companyHelper.ts: -------------------------------------------------------------------------------- 1 | import sortBy from "lodash/sortBy"; 2 | import ALL_COUNTRIES from "../../../countries/index"; 3 | import { Company } from "../types/company.model"; 4 | 5 | export const getAggregatedCompaniesFromJsonFiles = () => { 6 | const companies: Company[] = ALL_COUNTRIES().map((item) => ({ 7 | name: item?.name ?? "", 8 | yearOfMake: item["year-of-make"] ?? "", 9 | industry: item?.industry ?? "", 10 | city: item?.city ?? "", 11 | numberOfEmployees: item["number-of-employees"] ?? "", 12 | country: item?.country ?? "", 13 | linkedin: item?.linkedin ?? "", 14 | })); 15 | 16 | return sortBy(companies, ["name", "numberOfEmployees", "yearOfMake"]); 17 | }; 18 | -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- 1 | import Head from "next/head"; 2 | import "./globals.css"; 3 | import { Open_Sans } from "next/font/google"; 4 | 5 | const openSansFont = Open_Sans({ subsets: ["latin"] }); 6 | 7 | export const metadata = { 8 | title: "Company Finder", 9 | description: 10 | "A mini webapp that help end-users to find companies taht offer job spnsorship VISA!", 11 | }; 12 | 13 | export default function RootLayout({ 14 | children, 15 | }: { 16 | children: React.ReactNode; 17 | }) { 18 | return ( 19 | 20 | 21 | 22 | 23 | {children} 24 | 25 | ); 26 | } 27 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "company-finder", 3 | "version": "0.1.0", 4 | "private": true, 5 | "scripts": { 6 | "dev": "next dev", 7 | "build": "next build", 8 | "start": "next start", 9 | "lint": "next lint" 10 | }, 11 | "dependencies": { 12 | "@types/node": "20.1.3", 13 | "@types/react": "18.2.6", 14 | "@types/react-dom": "18.2.4", 15 | "autoprefixer": "10.4.14", 16 | "eslint": "8.40.0", 17 | "eslint-config-next": "13.4.2", 18 | "lodash": "^4.17.21", 19 | "next": "13.4.2", 20 | "postcss": "8.4.23", 21 | "react": "18.2.0", 22 | "react-dom": "18.2.0", 23 | "tailwindcss": "3.3.2", 24 | "typescript": "5.0.4" 25 | }, 26 | "devDependencies": { 27 | "@types/lodash": "^4.14.194" 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es5", 4 | "lib": ["dom", "dom.iterable", "esnext"], 5 | "allowJs": true, 6 | "skipLibCheck": true, 7 | "strict": true, 8 | "downlevelIteration": true, 9 | "forceConsistentCasingInFileNames": true, 10 | "noEmit": true, 11 | "esModuleInterop": true, 12 | "module": "esnext", 13 | "moduleResolution": "node", 14 | "resolveJsonModule": true, 15 | "allowSyntheticDefaultImports": true, 16 | "isolatedModules": true, 17 | "jsx": "preserve", 18 | "incremental": true, 19 | "plugins": [ 20 | { 21 | "name": "next" 22 | } 23 | ], 24 | "paths": { 25 | "@/*": ["./src/*", "./countries/*"] 26 | } 27 | }, 28 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], 29 | "exclude": ["node_modules"] 30 | } 31 | -------------------------------------------------------------------------------- /countries/index.js: -------------------------------------------------------------------------------- 1 | const austria = require("./austria.json"); 2 | const belgium = require("./belgium.json"); 3 | const england = require("./england.json"); 4 | const finland = require("./finland.json"); 5 | const france = require("./france.json"); 6 | const germany = require("./germany.json"); 7 | const ireland = require("./ireland.json"); 8 | const italy = require("./italy.json"); 9 | const netherlands = require("./netherlands.json"); 10 | const newZealand = require("./new-zealand.json"); 11 | const norway = require("./norway.json"); 12 | const spain = require("./spain.json"); 13 | const sweden = require("./sweden.json"); 14 | const trukey = require("./turkey.json"); 15 | 16 | const ALL_COUNTRIES = () => { 17 | const allCountries = []; 18 | allCountries.push( 19 | ...austria, 20 | ...belgium, 21 | ...england, 22 | ...finland, 23 | ...france, 24 | ...germany, 25 | ...ireland, 26 | ...italy, 27 | ...netherlands, 28 | ...newZealand, 29 | ...norway, 30 | ...spain, 31 | ...sweden, 32 | ...trukey 33 | ); 34 | 35 | return allCountries; 36 | }; 37 | 38 | export default ALL_COUNTRIES; 39 | -------------------------------------------------------------------------------- /src/app/components/sortable-header.tsx: -------------------------------------------------------------------------------- 1 | import { useState } from "react"; 2 | import type { Company } from "../types/company.model"; 3 | import { ASCENDING, DESCENDING } from "../constants/constants"; 4 | 5 | type SortType = "ASC" | "DESC" | null; 6 | type SortableHeaderProps = { 7 | title: keyof Company; 8 | isActive: boolean; 9 | onSortTypeChange: ( 10 | sortedColumnName: keyof Company, 11 | sortType: SortType 12 | ) => void; 13 | }; 14 | 15 | const SortableHeader = ({ 16 | title, 17 | isActive, 18 | onSortTypeChange, 19 | }: SortableHeaderProps) => { 20 | const [sortType, setSortType] = useState(ASCENDING); 21 | const isAsc = sortType === ASCENDING; 22 | 23 | const handleChangeSort = () => { 24 | if(isActive){ 25 | setSortType(isAsc ? DESCENDING : ASCENDING); 26 | onSortTypeChange(title, isAsc ? DESCENDING : ASCENDING); 27 | return; 28 | } 29 | 30 | onSortTypeChange(title, sortType); 31 | }; 32 | 33 | return ( 34 | 35 | {title.charAt(0).toUpperCase() + title.slice(1)} 36 | {isActive && {isAsc ? "🔽" : "🔼"}} 37 | 38 | ); 39 | }; 40 | 41 | export default SortableHeader; 42 | 43 | export type { SortType }; 44 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # visa-sponsorship-companies 2 | 3 | The aim of this repo is making an updated list of all companies around the world that offer visa sponsorship perk. 4 | 5 | See the list here: 6 | 7 | [Demo App](https://siaexplains.github.io/visa-sponsorship-companies/) 8 | 9 | 10 | For now we added +13 countries, but we need your help, it means if you have got any sponsership visa or your company offering it, feel free to create a pull-request and try to contribute. 11 | 12 | ### How can you contribute: 13 | 14 | 1. Fork the project 15 | 2. Open the `/countries/` directory. 16 | 3. If the country that you could get the visa-sponsorship offer is not defined yet here, please create it with lowercase name in json format. (and update the index.js file as well) 17 | 4. Search the company name and if it is not exist add it to the end of the list. 18 | 5. Send the PR 19 | 20 | **Please support us with a shinny ⭐**. 21 | 22 | ## Contributors 23 | 24 | Join us! 25 | 26 | 27 | 28 | 29 | 30 | ## How to run Company-Finder app 31 | 32 | First, Install dependecies: 33 | 34 | ```bash 35 | npm install 36 | # or 37 | yarn install 38 | ``` 39 | 40 | Then, run the development server: 41 | 42 | ```bash 43 | npm run dev 44 | # or 45 | yarn dev 46 | ``` 47 | 48 | ## 49 | 50 | 📫 Let me know your suggestions & ideas: 51 | 52 | - [![Twitter Follow](https://img.shields.io/twitter/follow/siaexplains?style=social)](https://twitter.com/siaexplains) 53 | - 🌐 [LinkedIn](https://www.linkedin.com/in/siavash-ghanbari/) 54 | -------------------------------------------------------------------------------- /countries/england.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "GameCare", 4 | "year-of-make": "1997", 5 | "industry": "Non-profit Organizations", 6 | "city": "London", 7 | "number-of-employees": "500", 8 | "country": "England", 9 | "linkedin": "https://www.linkedin.com/company/gamcare/jobs" 10 | }, 11 | { 12 | "name": "Vodafone", 13 | "year-of-make": "1982", 14 | "industry": "Telecommunications", 15 | "city": "London", 16 | "number-of-employees": "130000", 17 | "country": "England", 18 | "linkedin": "https://www.linkedin.com/company/vodafone/jobs" 19 | }, 20 | { 21 | "name": "Geeks LTD", 22 | "year-of-make": "2007", 23 | "industry": "IT Services and IT Consulting", 24 | "city": "Sutton", 25 | "number-of-employees": "200", 26 | "country": "England", 27 | "linkedin": "https://www.linkedin.com/company/geeks-ltd/jobs" 28 | }, 29 | { 30 | "name": "Unilever", 31 | "year-of-make": "1872", 32 | "industry": "Manufacturing", 33 | "city": "Blackfriars", 34 | "number-of-employees": "110000", 35 | "country": "England", 36 | "linkedin": "https://www.linkedin.com/company/unilever/jobs" 37 | }, 38 | { 39 | "name": "Wise", 40 | "year-of-make": "2011", 41 | "industry": "Financial Services", 42 | "city": "London", 43 | "number-of-employees": "5000", 44 | "country": "England", 45 | "linkedin": "https://www.linkedin.com/company/wiseaccount/jobs" 46 | }, 47 | { 48 | "name": "Jaja Finance", 49 | "year-of-make": "2016", 50 | "industry": "Financial Services", 51 | "city": "London", 52 | "number-of-employees": "200", 53 | "country": "England", 54 | "linkedin": "https://www.linkedin.com/company/jaja-finance/jobs" 55 | } 56 | ] 57 | -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- 1 | /* 2 | tailwind has been added by defualt from latest version of nextjs but we might use it but not now. 3 | @tailwind base; 4 | @tailwind components; 5 | @tailwind utilities; 6 | */ 7 | 8 | html, 9 | body { 10 | margin: 0; 11 | padding: 0; 12 | font-size: 14px; 13 | } 14 | .container { 15 | background-color: rgb(238, 238, 238); 16 | height: 100vh; 17 | } 18 | 19 | .filter-bar { 20 | display: flex; 21 | flex-direction: row; 22 | padding: 5px 50px 10px 50px; 23 | background-color: rgb(53, 114, 157); 24 | color: white; 25 | justify-content: space-around; 26 | } 27 | 28 | .filter-bar .filter-item { 29 | margin-left: 5px; 30 | display: flex; 31 | } 32 | 33 | .filter-bar .filter-item label { 34 | display: inline-block; 35 | text-align: right; 36 | margin-right: 4px; 37 | } 38 | 39 | table { 40 | background-color: rgb(255, 255, 255); 41 | width: 100%; 42 | } 43 | 44 | tr { 45 | background-color: beige; 46 | cursor: default; 47 | } 48 | td { 49 | word-break: break-word; 50 | vertical-align: middle; 51 | } 52 | 53 | th { 54 | color: rgb(45, 45, 45); 55 | background-color: rgb(176, 194, 207); 56 | } 57 | 58 | tr:nth-child(2n) { 59 | background-color: rgb(255, 235, 181); 60 | } 61 | 62 | tr:hover, 63 | tr:nth-child(2n):hover { 64 | background-color: white; 65 | } 66 | 67 | .text-center { 68 | display: flex; 69 | justify-content: center; 70 | } 71 | 72 | footer { 73 | margin: 5px; 74 | text-align: center; 75 | font-size: 12px; 76 | } 77 | 78 | input, 79 | select { 80 | border-radius: 5px; 81 | border: none; 82 | padding: 0 5px 0 5px; 83 | color: rgb(37, 37, 37); 84 | } 85 | 86 | .no-data { 87 | display: flex; 88 | justify-content: center; 89 | align-items: center; 90 | width: 600px; 91 | height: 100px; 92 | margin: 25px auto 25px auto; 93 | background-color: white; 94 | border: none; 95 | border-radius: 10px; 96 | } 97 | 98 | @media only screen and (max-width: 500px) { 99 | .filter-bar { 100 | flex-direction: column; 101 | padding: 10px 5px 10px 0; 102 | } 103 | 104 | .filter-bar .filter-item { 105 | margin-top: 5px; 106 | } 107 | .filter-bar .filter-item label { 108 | min-width: 100px; 109 | text-align: right; 110 | } 111 | .filter-bar .filter-item .control { 112 | width: 100%; 113 | } 114 | .hidden-on-mobile { 115 | display: none; 116 | } 117 | .no-data { 118 | display: flex; 119 | justify-content: center; 120 | align-items: center; 121 | width: 85%; 122 | height: 100px; 123 | margin: 8px auto 8px auto; 124 | padding: 8px; 125 | } 126 | } 127 | -------------------------------------------------------------------------------- /.github/workflows/nextjs.yml: -------------------------------------------------------------------------------- 1 | # Sample workflow for building and deploying a Next.js site to GitHub Pages 2 | # 3 | # To get started with Next.js see: https://nextjs.org/docs/getting-started 4 | # 5 | name: Deploy Next.js site to Pages 6 | 7 | on: 8 | # Runs on pushes targeting the default branch 9 | push: 10 | branches: ["main"] 11 | 12 | # Allows you to run this workflow manually from the Actions tab 13 | workflow_dispatch: 14 | 15 | # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages 16 | permissions: 17 | contents: read 18 | pages: write 19 | id-token: write 20 | 21 | # Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. 22 | # However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. 23 | concurrency: 24 | group: "pages" 25 | cancel-in-progress: false 26 | 27 | jobs: 28 | # Build job 29 | build: 30 | runs-on: ubuntu-latest 31 | steps: 32 | - name: Checkout 33 | uses: actions/checkout@v3 34 | - name: Detect package manager 35 | id: detect-package-manager 36 | run: | 37 | if [ -f "${{ github.workspace }}/yarn.lock" ]; then 38 | echo "manager=yarn" >> $GITHUB_OUTPUT 39 | echo "command=install" >> $GITHUB_OUTPUT 40 | echo "runner=yarn" >> $GITHUB_OUTPUT 41 | exit 0 42 | elif [ -f "${{ github.workspace }}/package.json" ]; then 43 | echo "manager=npm" >> $GITHUB_OUTPUT 44 | echo "command=ci" >> $GITHUB_OUTPUT 45 | echo "runner=npx --no-install" >> $GITHUB_OUTPUT 46 | exit 0 47 | else 48 | echo "Unable to determine package manager" 49 | exit 1 50 | fi 51 | - name: Setup Node 52 | uses: actions/setup-node@v3 53 | with: 54 | node-version: "16" 55 | cache: ${{ steps.detect-package-manager.outputs.manager }} 56 | - name: Setup Pages 57 | uses: actions/configure-pages@v3 58 | with: 59 | # Automatically inject basePath in your Next.js configuration file and disable 60 | # server side image optimization (https://nextjs.org/docs/api-reference/next/image#unoptimized). 61 | # 62 | # You may remove this line if you want to manage the configuration yourself. 63 | static_site_generator: next 64 | - name: Restore cache 65 | uses: actions/cache@v3 66 | with: 67 | path: | 68 | .next/cache 69 | # Generate a new cache whenever packages or source files change. 70 | key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json', '**/yarn.lock') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }} 71 | # If source files changed but packages didn't, rebuild from a prior cache. 72 | restore-keys: | 73 | ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json', '**/yarn.lock') }}- 74 | - name: Install dependencies 75 | run: ${{ steps.detect-package-manager.outputs.manager }} ${{ steps.detect-package-manager.outputs.command }} 76 | - name: Build with Next.js 77 | run: ${{ steps.detect-package-manager.outputs.runner }} next build 78 | - name: Static HTML export with Next.js 79 | run: ${{ steps.detect-package-manager.outputs.runner }} next export 80 | - name: Upload artifact 81 | uses: actions/upload-pages-artifact@v1 82 | with: 83 | path: ./out 84 | 85 | # Deployment job 86 | deploy: 87 | environment: 88 | name: github-pages 89 | url: ${{ steps.deployment.outputs.page_url }} 90 | runs-on: ubuntu-latest 91 | needs: build 92 | steps: 93 | - name: Deploy to GitHub Pages 94 | id: deployment 95 | uses: actions/deploy-pages@v2 96 | -------------------------------------------------------------------------------- /countries/sweden.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "Oneflow", 4 | "year-of-make": "2012", 5 | "industry": "Software Development", 6 | "city": "Stockholm", 7 | "number-of-employees": "300", 8 | "country": "Sweden", 9 | "linkedin": "https://www.linkedin.com/company/oneflowcom/jobs" 10 | }, 11 | { 12 | "name": "Digital Route AB", 13 | "year-of-make": "2000", 14 | "industry": "IT Services and IT Consulting", 15 | "city": "Stockholm", 16 | "number-of-employees": "300", 17 | "country": "Sweden", 18 | "linkedin": "https://www.linkedin.com/company/digital-route/jobs" 19 | }, 20 | { 21 | "name": "LeoVegas", 22 | "year-of-make": "2012", 23 | "industry": "Gambling Facilities and Casinos", 24 | "city": "Stockholm", 25 | "number-of-employees": "1000", 26 | "country": "Sweden", 27 | "linkedin": "https://www.linkedin.com/company/leovegasgroup/jobs" 28 | }, 29 | { 30 | "name": "Soltia AB", 31 | "year-of-make": "2012", 32 | "industry": "IT Services and IT Consulting", 33 | "city": "Stockholm", 34 | "number-of-employees": "100", 35 | "country": "Sweden", 36 | "linkedin": "https://www.linkedin.com/company/soltiaab/jobs" 37 | }, 38 | { 39 | "name": "Accedo", 40 | "year-of-make": "2004", 41 | "industry": "Software Development", 42 | "city": "Stockholm", 43 | "number-of-employees": "1000", 44 | "country": "Sweden", 45 | "linkedin": "https://www.linkedin.com/company/accedo-tv/jobs" 46 | }, 47 | { 48 | "name": "DoWhile", 49 | "year-of-make": "2017", 50 | "industry": "Software Development", 51 | "city": "Gothenburg", 52 | "number-of-employees": "100", 53 | "country": "Sweden", 54 | "linkedin": "https://www.linkedin.com/company/dowhile-consulting-scandinavia-ab/jobs" 55 | }, 56 | { 57 | "name": "Epidemic Sound", 58 | "year-of-make": "2009", 59 | "industry": "Musicians", 60 | "city": "Stockholm", 61 | "number-of-employees": "1000", 62 | "country": "Sweden", 63 | "linkedin": "https://www.linkedin.com/company/epidemic-sound/jobs" 64 | }, 65 | { 66 | "name": "King", 67 | "year-of-make": "2003", 68 | "industry": "Entertainment Providers", 69 | "city": "Stockholm", 70 | "number-of-employees": "4000", 71 | "country": "Sweden", 72 | "linkedin": "https://www.linkedin.com/company/king/jobs" 73 | }, 74 | { 75 | "name": "Klarna", 76 | "year-of-make": "2005", 77 | "industry": "Software Development", 78 | "city": "Stockholm", 79 | "number-of-employees": "6000", 80 | "country": "Sweden", 81 | "linkedin": "https://www.linkedin.com/company/klarna/jobs" 82 | }, 83 | { 84 | "name": "Rebtel", 85 | "year-of-make": "2006", 86 | "industry": "Internet Publishing", 87 | "city": "Stockholm", 88 | "number-of-employees": "100", 89 | "country": "Sweden", 90 | "linkedin": "https://www.linkedin.com/company/rebtel/jobs" 91 | }, 92 | { 93 | "name": "Spotify", 94 | "year-of-make": "2006", 95 | "industry": "Musicians", 96 | "city": "Stockholm", 97 | "number-of-employees": "14000", 98 | "country": "Sweden", 99 | "linkedin": "https://www.linkedin.com/company/spotify/jobs" 100 | }, 101 | { 102 | "name": "Tele2", 103 | "year-of-make": "1993", 104 | "industry": "Telecommunications", 105 | "city": "Kista", 106 | "number-of-employees": "6000", 107 | "country": "Sweden", 108 | "linkedin": "https://www.linkedin.com/company/tele2/jobs" 109 | }, 110 | { 111 | "name": "Truecaller", 112 | "year-of-make": "2009", 113 | "industry": "Technology, Information and Internet", 114 | "city": "Norrmalm", 115 | "number-of-employees": "600", 116 | "country": "Sweden", 117 | "linkedin": "https://www.linkedin.com/company/truecaller/jobs" 118 | }, 119 | { 120 | "name": "Explipro", 121 | "year-of-make": "2012", 122 | "industry": "Consulting company", 123 | "city": "Gothenburg", 124 | "number-of-employees": "50", 125 | "country": "Sweden", 126 | "linkedin": "https://www.linkedin.com/company/explipro-group-ab/jobs" 127 | } 128 | ] 129 | -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- 1 | "use client"; 2 | import { useEffect, useState } from "react"; 3 | import Image from "next/image"; 4 | import FilterItem from "./components/filter-item"; 5 | import FilterBar from "./components/filter-bar"; 6 | import { Company } from "./types/company.model"; 7 | import { getAggregatedCompaniesFromJsonFiles } from "./helper/companyHelper"; 8 | import SortableHeader, { SortType } from "./components/sortable-header"; 9 | import { ASCENDING } from "./constants/constants"; 10 | 11 | const allFetchedCompanies = getAggregatedCompaniesFromJsonFiles(); 12 | 13 | export default function Home() { 14 | const [companies, setCompanies] = useState(allFetchedCompanies); 15 | const [name, setName] = useState(""); 16 | const [country, setCountry] = useState(""); 17 | const [size, setSize] = useState(""); 18 | const hasAnyMatchedItem = companies && companies.length > 0; 19 | const [sortByColumn, setSortByColumn] = useState("name"); 20 | 21 | useEffect(() => { 22 | const newItems = allFetchedCompanies.filter( 23 | (item) => 24 | item.name.toLocaleLowerCase().includes(name.toLocaleLowerCase()) && 25 | item.country 26 | .toLocaleUpperCase() 27 | .includes(country === "--All--" ? "" : country.toLocaleUpperCase()) && 28 | Number(item.numberOfEmployees) >= Number(size === "--All--" ? 0 : size) 29 | ); 30 | setCompanies(newItems); 31 | }, [name, country, size]); 32 | 33 | const handleSortByColumn = ( 34 | columnName: keyof Company, 35 | sortType: SortType 36 | ) => { 37 | setSortByColumn(columnName); 38 | const sortedCompany = companies.sort((firstCompany, secondCompany) => 39 | sortType === ASCENDING 40 | ? firstCompany[columnName].localeCompare(secondCompany[columnName]) 41 | : secondCompany[columnName].localeCompare(firstCompany[columnName]) 42 | ); 43 | setCompanies([...sortedCompany]); 44 | }; 45 | 46 | return ( 47 |
48 | 49 | 50 | 51 | setName(e.target.value)} 56 | /> 57 | 58 | 59 | 60 | 81 | 82 | 83 | 84 | 104 | 105 | 106 | {hasAnyMatchedItem && ( 107 | 108 | 109 | 110 | 115 | 120 | 125 | 126 | 127 | 132 | 133 | 134 | {companies.map((company: Company) => { 135 | return ( 136 | 140 | 141 | 142 | 143 | 146 | 147 | 161 | 162 | ); 163 | })} 164 | 165 |
SizeJobs
{company.name}{company.country}{company.city} 144 | {company.numberOfEmployees} 145 | {company.industry} 148 | 153 | {`LinkedIn 159 | 160 |
166 | )} 167 | {!hasAnyMatchedItem && ( 168 |

169 | There is no company in our current database at the moment based on 170 | your filter. 171 |

172 | )} 173 | 183 |
184 | ); 185 | } 186 | -------------------------------------------------------------------------------- /countries/netherlands.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "DataChef", 4 | "year-of-make": "2019", 5 | "industry": "Information Technology & Services", 6 | "city": "Amesterdam", 7 | "number-of-employees": "50", 8 | "country": "Netherlands", 9 | "linkedin": "https://www.linkedin.com/company/datachefco/jobs" 10 | }, 11 | { 12 | "name": "Leaseweb", 13 | "year-of-make": "1997", 14 | "industry": "IT Services and IT Consulting", 15 | "city": "Amesterdam", 16 | "number-of-employees": "1000", 17 | "country": "Netherlands", 18 | "linkedin": "https://www.linkedin.com/company/leaseweb/jobs" 19 | }, 20 | { 21 | "name": "DPGMedia", 22 | "year-of-make": "2009", 23 | "industry": "Media Production", 24 | "city": "Amsterdam", 25 | "number-of-employees": "3000", 26 | "country": "Netherlands", 27 | "linkedin": "https://www.linkedin.com/company/dpg-media-nl/jobs" 28 | }, 29 | { 30 | "name": "IO Consultancy", 31 | "year-of-make": "2005", 32 | "industry": "Technology, Information and Internet", 33 | "city": "Amesterdam", 34 | "number-of-employees": "5000", 35 | "country": "Netherlands", 36 | "linkedin": "https://www.linkedin.com/company/iodigital-com/jobs" 37 | }, 38 | { 39 | "name": "Touchtribe", 40 | "year-of-make": "2007", 41 | "industry": "Technology, Information and Internet", 42 | "city": "Amesterdam", 43 | "number-of-employees": "50", 44 | "country": "Netherlands", 45 | "linkedin": "https://www.linkedin.com/company/touchtribe/jobs" 46 | }, 47 | { 48 | "name": "ING", 49 | "year-of-make": "1918", 50 | "industry": "Banking", 51 | "city": "Amsterdam", 52 | "number-of-employees": "70000", 53 | "country": "Netherlands", 54 | "linkedin": "https://www.linkedin.com/company/ing/jobs" 55 | }, 56 | { 57 | "name": "Profoto", 58 | "year-of-make": "1970", 59 | "industry": "Appliances, Electrical, and Electronics Manufacturing", 60 | "city": "Amesterdam", 61 | "number-of-employees": "300", 62 | "country": "Netherlands", 63 | "linkedin": "https://www.linkedin.com/company/profoto/jobs" 64 | }, 65 | { 66 | "name": "AIHR", 67 | "year-of-make": "2016", 68 | "industry": "Human Resources Services", 69 | "city": "Rotterdam", 70 | "number-of-employees": "200", 71 | "country": "Netherlands", 72 | "linkedin": "https://www.linkedin.com/school/aihr/jobs" 73 | }, 74 | { 75 | "name": "Mobiquity", 76 | "year-of-make": "2011", 77 | "industry": "IT Services and IT Consulting", 78 | "city": "Amesterdam", 79 | "number-of-employees": "300", 80 | "country": "Netherlands", 81 | "linkedin": "https://www.linkedin.com/company/mobiquity-inc-europe/jobs" 82 | }, 83 | { 84 | "name": "Backbase", 85 | "year-of-make": "2003", 86 | "industry": "Financial Services", 87 | "city": "Amesterdam", 88 | "number-of-employees": "2000", 89 | "country": "Netherlands", 90 | "linkedin": "https://www.linkedin.com/company/backbase/jobs" 91 | }, 92 | { 93 | "name": "Flow Traders", 94 | "year-of-make": "2004", 95 | "industry": "Financial Services", 96 | "city": "Amesterdam", 97 | "number-of-employees": "1000", 98 | "country": "Netherlands", 99 | "linkedin": "https://www.linkedin.com/company/flow-traders/jobs" 100 | }, 101 | { 102 | "name": "Farm21", 103 | "year-of-make": "2017", 104 | "industry": "Software Development", 105 | "city": "Amsterdam", 106 | "number-of-employees": "50", 107 | "country": "Netherlands", 108 | "linkedin": "https://www.linkedin.com/company/farm21/jobs" 109 | }, 110 | { 111 | "name": "JustEatTakeaway.com", 112 | "year-of-make": "2000", 113 | "industry": "Software Development", 114 | "city": "Amesterdam", 115 | "number-of-employees": "15000", 116 | "country": "Netherlands", 117 | "linkedin": "https://www.linkedin.com/company/just-eat-takeaway-com/jobs" 118 | }, 119 | { 120 | "name": "Lunatech", 121 | "year-of-make": "1993", 122 | "industry": "Software Development", 123 | "city": "Rotterdam", 124 | "number-of-employees": "200", 125 | "country": "Netherlands", 126 | "linkedin": "https://www.linkedin.com/company/lunatech-labs/jobs" 127 | }, 128 | { 129 | "name": "Catawiki", 130 | "year-of-make": "2008", 131 | "industry": "Internet Publishing", 132 | "city": "Amesterdam", 133 | "number-of-employees": "1000", 134 | "country": "Netherlands", 135 | "linkedin": "https://www.linkedin.com/company/catawiki/jobs" 136 | }, 137 | { 138 | "name": "Studocu", 139 | "year-of-make": "2010", 140 | "industry": "E-learning", 141 | "city": "Amesterdam", 142 | "number-of-employees": "200", 143 | "country": "Netherlands", 144 | "linkedin": "https://www.linkedin.com/company/studeersnel.nl/jobs" 145 | }, 146 | { 147 | "name": "Bunq", 148 | "year-of-make": "2012", 149 | "industry": "Banking", 150 | "city": "Amesterdam", 151 | "number-of-employees": "500", 152 | "country": "Netherlands", 153 | "linkedin": "https://www.linkedin.com/company/bunq/jobs" 154 | }, 155 | { 156 | "name": "NN", 157 | "year-of-make": "1880", 158 | "industry": "Financial Services", 159 | "city": "The Hague", 160 | "number-of-employees": "10000", 161 | "country": "Netherlands", 162 | "linkedin": "https://www.linkedin.com/company/nn/jobs" 163 | }, 164 | { 165 | "name": "Nearfield Instruments", 166 | "year-of-make": "2016", 167 | "industry": "Semiconductors", 168 | "city": "Rotterdam", 169 | "number-of-employees": "300", 170 | "country": "Netherlands", 171 | "linkedin": "https://www.linkedin.com/company/nearfield-instruments-bv/jobs" 172 | }, 173 | { 174 | "name": "Code nomadas", 175 | "year-of-make": "2017", 176 | "industry": "Information Technology & Services", 177 | "city": "Amesterdam", 178 | "number-of-employees": "50", 179 | "country": "Netherlands", 180 | "linkedin": "https://www.linkedin.com/company/code-nomads/jobs" 181 | }, 182 | { 183 | "name": "Mollie", 184 | "year-of-make": "2004", 185 | "industry": "Financial Services", 186 | "city": "Amsterdam", 187 | "number-of-employees": "1000", 188 | "country": "Netherlands", 189 | "linkedin": "https://www.linkedin.com/company/molliepayments/jobs" 190 | }, 191 | { 192 | "name": "bol.com", 193 | "year-of-make": "2012", 194 | "industry": "Retail", 195 | "city": "Amesterdam", 196 | "number-of-employees": "1000", 197 | "country": "Netherlands", 198 | "linkedin": "https://www.linkedin.com/company/bol-com/jobs" 199 | }, 200 | { 201 | "name": "Knab", 202 | "year-of-make": "2012", 203 | "industry": "Financial Services", 204 | "city": "Amesterdam", 205 | "number-of-employees": "1000", 206 | "country": "Netherlands", 207 | "linkedin": "https://www.linkedin.com/company/knab/jobs" 208 | }, 209 | { 210 | "name": "ASML", 211 | "year-of-make": "1984", 212 | "industry": "Semiconductor Manufacturing", 213 | "city": "Veldhoven", 214 | "number-of-employees": "35000", 215 | "country": "Netherlands", 216 | "linkedin": "https://www.linkedin.com/company/asml/jobs" 217 | }, 218 | { 219 | "name": "Company.info", 220 | "year-of-make": "1998", 221 | "industry": "IT Services and IT Consulting", 222 | "city": "Amesterdam", 223 | "number-of-employees": "200", 224 | "country": "Netherlands", 225 | "linkedin": "https://www.linkedin.com/company/company-info/jobs" 226 | }, 227 | { 228 | "name": "Eurail", 229 | "year-of-make": "2006", 230 | "industry": "Travel Arrangements", 231 | "city": "Utrecht", 232 | "number-of-employees": "200", 233 | "country": "Netherlands", 234 | "linkedin": "https://www.linkedin.com/company/eurail/jobs" 235 | }, 236 | { 237 | "name": "Picnic", 238 | "year-of-make": "2015", 239 | "industry": "Retail", 240 | "city": "Amsterdam", 241 | "number-of-employees": "3500", 242 | "country": "Netherlands", 243 | "linkedin": "https://www.linkedin.com/company/picnictechnologies/jobs" 244 | }, 245 | { 246 | "name": "Albelli", 247 | "year-of-make": "2003", 248 | "industry": "Software Development", 249 | "city": "Amsterdam", 250 | "number-of-employees": "1000", 251 | "country": "Netherlands", 252 | "linkedin": "https://www.linkedin.com/company/albelli-photoboxgroup/jobs" 253 | }, 254 | { 255 | "name": "AG5 Skills Management Software", 256 | "year-of-make": "2019", 257 | "industry": "IT Services and IT Consulting", 258 | "city": "Amsterdam", 259 | "number-of-employees": "50", 260 | "country": "Netherlands", 261 | "linkedin": "https://www.linkedin.com/company/ag5skillsintelligencesoftware/jobs" 262 | }, 263 | { 264 | "name": "dé VakantieDiscounter", 265 | "year-of-make": "1996", 266 | "industry": "Travel Arrangements", 267 | "city": "Amsterdam", 268 | "number-of-employees": "2000", 269 | "country": "Netherlands", 270 | "linkedin": "https://www.linkedin.com/company/vakantiediscounter/jobs" 271 | }, 272 | { 273 | "name": "Adevinta", 274 | "year-of-make": "2019", 275 | "industry": "Internet Publishing", 276 | "city": "Amesterdam", 277 | "number-of-employees": "200", 278 | "country": "Netherlands", 279 | "linkedin": "https://www.linkedin.com/company/adevinta/jobs" 280 | }, 281 | { 282 | "name": "Media.Monks", 283 | "year-of-make": "2001", 284 | "industry": "Advertising Services", 285 | "city": "Hilversum", 286 | "number-of-employees": "7000", 287 | "country": "Netherlands", 288 | "linkedin": "https://www.linkedin.com/company/mediamonks/jobs" 289 | }, 290 | { 291 | "name": "team.blue", 292 | "year-of-make": "2019", 293 | "industry": "Technology, Information and Internet", 294 | "city": "Ghent, Flemish Region", 295 | "number-of-employees": "5000", 296 | "country": "Netherlands", 297 | "linkedin": "https://www.linkedin.com/company/teamblue/jobs" 298 | }, 299 | { 300 | "name": "coolBlue", 301 | "year-of-make": "1999", 302 | "industry": "Computers and Electronics Manufacturing", 303 | "city": "Rotterdam, Zuid-Holland", 304 | "number-of-employees": "5000", 305 | "country": "Netherlands", 306 | "linkedin": "https://www.linkedin.com/company/coolblue/jobs" 307 | } 308 | ] 309 | -------------------------------------------------------------------------------- /countries/germany.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "Celonis", 4 | "year-of-make": "2011", 5 | "industry": "Consulting", 6 | "city": "Munich", 7 | "number-of-employees": "3000", 8 | "country": "Germany", 9 | "linkedin": "https://www.linkedin.com/company/celonis/jobs/" 10 | }, 11 | { 12 | "name": "Siemens AG", 13 | "year-of-make": "1847", 14 | "industry": "Conglomerate", 15 | "city": "Munich", 16 | "number-of-employees": "300000", 17 | "country": "Germany", 18 | "linkedin": "https://www.linkedin.com/company/future-energy-group-srl/jobs" 19 | }, 20 | { 21 | "name": "BASF SE", 22 | "year-of-make": "1865", 23 | "industry": "Chemicals", 24 | "city": "Ludwigshafen", 25 | "number-of-employees": "100000", 26 | "country": "Germany", 27 | "linkedin": "https://www.linkedin.com/company/basf/jobs" 28 | }, 29 | { 30 | "name": "Volkswagen AG", 31 | "year-of-make": "1937", 32 | "industry": "Automotive", 33 | "city": "Wolfsburg", 34 | "number-of-employees": "600000", 35 | "country": "Germany", 36 | "linkedin": "https://www.linkedin.com/company/volkswagen-group/jobs" 37 | }, 38 | { 39 | "name": "Deutsche Bank AG", 40 | "year-of-make": "1870", 41 | "industry": "Banking", 42 | "city": "Frankfurt", 43 | "number-of-employees": "80000", 44 | "country": "Germany", 45 | "linkedin": "https://www.linkedin.com/company/dkb/jobs" 46 | }, 47 | { 48 | "name": "SAP SE", 49 | "year-of-make": "1972", 50 | "industry": "Software", 51 | "city": "Walldorf", 52 | "number-of-employees": "100000", 53 | "country": "Germany", 54 | "linkedin": "https://www.linkedin.com/company/sap-deutschland-se-&-co.-kg/jobs" 55 | 56 | }, 57 | { 58 | "name": "Allianz SE", 59 | "year-of-make": "1890", 60 | "industry": "Insurance", 61 | "city": "Munich", 62 | "number-of-employees": "150000", 63 | "country": "Germany", 64 | "linkedin": "https://www.linkedin.com/company/allianz/jobs" 65 | }, 66 | { 67 | "name": "BMW AG", 68 | "year-of-make": "1916", 69 | "industry": "Automotive", 70 | "city": "Munich", 71 | "number-of-employees": "100000", 72 | "country": "Germany", 73 | "linkedin": "https://www.linkedin.com/company/bmw-group/jobs" 74 | }, 75 | { 76 | "name": "Daimler AG", 77 | "year-of-make": "1926", 78 | "industry": "Automotive", 79 | "city": "Stuttgart", 80 | "number-of-employees": "300000", 81 | "country": "Germany", 82 | "linkedin": "https://www.linkedin.com/company/daimlertruckag/jobs" 83 | }, 84 | { 85 | "name": "Fresenius SE & Co. KGaA", 86 | "year-of-make": "1912", 87 | "industry": "Healthcare", 88 | "city": "Bad Homburg", 89 | "number-of-employees": "300000", 90 | "country": "Germany", 91 | "linkedin": "https://www.linkedin.com/company/fresenius-se/jobs" 92 | }, 93 | { 94 | "name": "Bayer AG", 95 | "year-of-make": "1863", 96 | "industry": "Pharmaceuticals", 97 | "city": "Leverkusen", 98 | "number-of-employees": "100000", 99 | "country": "Germany", 100 | "linkedin": "https://www.linkedin.com/company/bayer-schweiz-ag/jobs" 101 | }, 102 | { 103 | "name": "IONOS", 104 | "year-of-make": "1988", 105 | "industry": "Cloud Computing", 106 | "city": "Karlsruhe", 107 | "number-of-employees": "4000", 108 | "country": "Germany", 109 | "linkedin": "https://www.linkedin.com/company/ionos/" 110 | }, 111 | { 112 | "name": "Deutsche Telekom AG", 113 | "year-of-make": "1995", 114 | "industry": "Telecommunications", 115 | "city": "Bonn", 116 | "number-of-employees": "200000", 117 | "country": "Germany", 118 | "linkedin": "https://www.linkedin.com/company/telekom/jobs" 119 | }, 120 | { 121 | "name": "Thyssenkrupp AG", 122 | "year-of-make": "1999", 123 | "industry": "Industrial", 124 | "city": "Essen", 125 | "number-of-employees": "150000", 126 | "country": "Germany", 127 | "linkedin": "https://www.linkedin.com/company/thyssenkrupp/jobs" 128 | }, 129 | { 130 | "name": "Henkel AG & Co. KGaA", 131 | "year-of-make": "1876", 132 | "industry": "Consumer Goods", 133 | "city": "Düsseldorf", 134 | "number-of-employees": "50000", 135 | "country": "Germany", 136 | "linkedin": "https://www.linkedin.com/company/henkel-ag-&-co.-kgaa/jobs" 137 | }, 138 | { 139 | "name": "Continental AG", 140 | "year-of-make": "1871", 141 | "industry": "Automotive", 142 | "city": "Hanover", 143 | "number-of-employees": "200000", 144 | "country": "Germany", 145 | "linkedin": "https://www.linkedin.com/company/continental/jobs" 146 | }, 147 | { 148 | "name": "Deutsche Lufthansa AG", 149 | "year-of-make": "1953", 150 | "industry": "Aviation", 151 | "city": "Cologne", 152 | "number-of-employees": "100000", 153 | "country": "Germany", 154 | "linkedin": "https://www.linkedin.com/company/lufthansa-group/jobs" 155 | }, 156 | { 157 | "name": "Merck KGaA", 158 | "year-of-make": "1668", 159 | "industry": "Pharmaceuticals", 160 | "city": "Darmstadt", 161 | "number-of-employees": "60000", 162 | "country": "Germany", 163 | "linkedin": "https://www.linkedin.com/company/emd-affiliates-of-merck-kgaa-darmstadt-germany/jobs" 164 | }, 165 | { 166 | "name": "Deutsche Post DHL Group", 167 | "year-of-make": "1995", 168 | "industry": "Logistics", 169 | "city": "Bonn", 170 | "number-of-employees": "550000", 171 | "country": "Germany", 172 | "linkedin": "https://www.linkedin.com/showcase/dpdhl-investor-relations/jobs" 173 | }, 174 | { 175 | "name": "Robert Bosch GmbH", 176 | "year-of-make": "1886", 177 | "industry": "Engineering", 178 | "city": "Gerlingen", 179 | "number-of-employees": "400000", 180 | "country": "Germany", 181 | "linkedin": "https://www.linkedin.com/company/bosch/jobs" 182 | }, 183 | { 184 | "name": "Evonik Industries AG", 185 | "year-of-make": "2007", 186 | "industry": "Chemicals", 187 | "city": "Essen", 188 | "number-of-employees": "32000", 189 | "country": "Germany", 190 | "linkedin": "https://www.linkedin.com/company/evonik/jobs" 191 | }, 192 | { 193 | "name": "Infineon Technologies AG", 194 | "year-of-make": "1999", 195 | "industry": "Semiconductor", 196 | "city": "Neubiberg", 197 | "number-of-employees": "46000", 198 | "country": "Germany", 199 | "linkedin": "https://www.linkedin.com/company/infineon-technologies/jobs" 200 | }, 201 | { 202 | "name": "Beiersdorf AG", 203 | "year-of-make": "1882", 204 | "industry": "Consumer Goods", 205 | "city": "Hamburg", 206 | "number-of-employees": "20000", 207 | "country": "Germany", 208 | "linkedin": "https://www.linkedin.com/company/beiersdorf/jobs" 209 | }, 210 | { 211 | "name": "Lanxess AG", 212 | "year-of-make": "2004", 213 | "industry": "Chemicals", 214 | "city": "Cologne", 215 | "number-of-employees": "14000", 216 | "country": "Germany", 217 | "linkedin": "https://www.linkedin.com/company/lanxess/jobs" 218 | }, 219 | { 220 | "name": "HeidelbergCement AG", 221 | "year-of-make": "1873", 222 | "industry": "Construction", 223 | "city": "Heidelberg", 224 | "number-of-employees": "50000", 225 | "country": "Germany", 226 | "linkedin": "https://www.linkedin.com/company/heidelbergcementfrance/jobs" 227 | }, 228 | { 229 | "name": "Osram Licht AG", 230 | "year-of-make": "1906", 231 | "industry": "Lighting", 232 | "city": "Munich", 233 | "number-of-employees": "20000", 234 | "country": "Germany", 235 | "linkedin": "https://www.linkedin.com/company/osram-licht-ag/jobs" 236 | }, 237 | { 238 | "name": "Wacker Neuson Linz GmbH", 239 | "year-of-make": "1848", 240 | "industry": "Construction Equipment", 241 | "city": "Munich", 242 | "number-of-employees": "5000", 243 | "country": "Germany", 244 | "linkedin": "https://www.linkedin.com/company/wacker-neuson-linz-gmbh/jobs" 245 | }, 246 | { 247 | "name": "Kärcher GmbH & Co. KG", 248 | "year-of-make": "1935", 249 | "industry": "Cleaning Equipment", 250 | "city": "Winnenden", 251 | "number-of-employees": "13000", 252 | "country": "Germany", 253 | "linkedin": "https://www.linkedin.com/company/alfred-k%C3%A4rcher-gmbh-&-co.-kg/jobs" 254 | }, 255 | { 256 | "name": "Metro AG", 257 | "year-of-make": "1964", 258 | "industry": "Wholesale", 259 | "city": "Düsseldorf", 260 | "number-of-employees": "100000", 261 | "country": "Germany", 262 | "linkedin": "https://www.linkedin.com/company/metro-ag/jobs" 263 | }, 264 | { 265 | "name": "Bilfinger SE", 266 | "year-of-make": "1880", 267 | "industry": "Engineering", 268 | "city": "Mannheim", 269 | "number-of-employees": "30000", 270 | "country": "Germany", 271 | "linkedin": "https://www.linkedin.com/company/bilfinger/jobs" 272 | }, 273 | { 274 | "name": "RWE AG", 275 | "year-of-make": "1898", 276 | "industry": "Energy", 277 | "city": "Essen", 278 | "number-of-employees": "20000", 279 | "country": "Germany", 280 | "linkedin": "https://www.linkedin.com/company/rwe-/jobs" 281 | }, 282 | { 283 | "name": "MTU Aero Engines AG", 284 | "year-of-make": "1934", 285 | "industry": "Aerospace", 286 | "city": "Munich", 287 | "number-of-employees": "10000", 288 | "country": "Germany", 289 | "linkedin": "https://www.linkedin.com/company/mtu-aero-engines/jobs" 290 | }, 291 | { 292 | "name": "Metro Markets", 293 | "year-of-make": "2018", 294 | "industry": "Internet Marketplace Platforms", 295 | "city": "Düsseldorf", 296 | "number-of-employees": "700", 297 | "country": "Germany", 298 | "linkedin": "https://www.linkedin.com/company/metro-markets-gmbh/jobs" 299 | }, 300 | { 301 | "name": "Fresenius Medical Care AG & Co. KGaA", 302 | "year-of-make": "1996", 303 | "industry": "Healthcare", 304 | "city": "Bad Homburg", 305 | "number-of-employees": "120000", 306 | "country": "Germany", 307 | "linkedin": "https://www.linkedin.com/company/freseniusmedicalcare/jobs" 308 | }, 309 | { 310 | "name": "Deutsche Bahn AG", 311 | "year-of-make": "1994", 312 | "industry": "Transportation", 313 | "city": "Berlin", 314 | "number-of-employees": "300000", 315 | "country": "Germany", 316 | "linkedin": "https://www.linkedin.com/company/deutschebahn/jobs" 317 | }, 318 | { 319 | "name": "E.ON SE", 320 | "year-of-make": "2000", 321 | "industry": "Energy", 322 | "city": "Essen", 323 | "number-of-employees": "70000", 324 | "country": "Germany", 325 | "linkedin": "https://www.linkedin.com/company/e-on/jobs" 326 | }, 327 | { 328 | "name": "FUCHS PETROLUB SE", 329 | "year-of-make": "1931", 330 | "industry": "Chemicals", 331 | "city": "Mannheim", 332 | "number-of-employees": "5000", 333 | "country": "Germany", 334 | "linkedin": "https://www.linkedin.com/company/fuchs-petrolub-se/jobs" 335 | }, 336 | { 337 | "name": "Evonik Resource Efficiency GmbH", 338 | "year-of-make": "2007", 339 | "industry": "Specialty Chemicals", 340 | "city": "Essen", 341 | "number-of-employees": "10000", 342 | "country": "Germany", 343 | "linkedin": "https://www.linkedin.com/company/evonik-resource-efficiency-gmbh/jobs" 344 | }, 345 | { 346 | "name": "Deutsche Wohnen SE", 347 | "year-of-make": "1998", 348 | "industry": "Real Estate", 349 | "city": "Berlin", 350 | "number-of-employees": "14000", 351 | "country": "Germany", 352 | "linkedin": "https://www.linkedin.com/company/deutsche-wohnen-gruppe/jobs" 353 | }, 354 | { 355 | "name": "Symrise AG", 356 | "year-of-make": "2003", 357 | "industry": "Flavors and Fragrances", 358 | "city": "Holzminden", 359 | "number-of-employees": "10000", 360 | "country": "Germany", 361 | "linkedin": "https://www.linkedin.com/company/symrise/jobs" 362 | }, 363 | { 364 | "name": "Brenntag AG", 365 | "year-of-make": "1874", 366 | "industry": "Chemicals Distribution", 367 | "city": "Essen", 368 | "number-of-employees": "17000", 369 | "country": "Germany", 370 | "linkedin": "https://www.linkedin.com/company/brenntag/jobs" 371 | }, 372 | { 373 | "name": "ProSiebenSat.1 Media SE", 374 | "year-of-make": "2000", 375 | "industry": "Media", 376 | "city": "Unterföhring", 377 | "number-of-employees": "7000", 378 | "country": "Germany", 379 | "linkedin": "https://www.linkedin.com/company/prosiebensat1-media-se/jobs" 380 | }, 381 | { 382 | "name": "PUMA SE", 383 | "year-of-make": "1948", 384 | "industry": "Apparel", 385 | "city": "Herzogenaurach", 386 | "number-of-employees": "13000", 387 | "country": "Germany", 388 | "linkedin": "https://www.linkedin.com/company/puma/jobs" 389 | }, 390 | { 391 | "name": "Celesio AG", 392 | "year-of-make": "1835", 393 | "industry": "Healthcare", 394 | "city": "Stuttgart", 395 | "number-of-employees": "40000", 396 | "country": "Germany", 397 | "linkedin": "https://www.linkedin.com/company/celesio-ag/jobs" 398 | }, 399 | { 400 | "name": "KION Group AG", 401 | "year-of-make": "2006", 402 | "industry": "Material Handling", 403 | "city": "Frankfurt", 404 | "number-of-employees": "35000", 405 | "country": "Germany", 406 | "linkedin": "https://www.linkedin.com/company/kiongroup/jobs" 407 | }, 408 | { 409 | "name": "Wacker Chemie AG", 410 | "year-of-make": "1914", 411 | "industry": "Chemicals", 412 | "city": "Munich", 413 | "number-of-employees": "14000", 414 | "country": "Germany", 415 | "linkedin": "https://www.linkedin.com/company/wacker/jobs" 416 | }, 417 | { 418 | "name": "Osram Continental GmbH", 419 | "year-of-make": "2018", 420 | "industry": "Automotive Lighting", 421 | "city": "Munich", 422 | "number-of-employees": "10000", 423 | "country": "Germany", 424 | "linkedin": "https://www.linkedin.com/company/osram-continental/jobs" 425 | }, 426 | { 427 | "name": "TÜV SÜD AG", 428 | "year-of-make": "1866", 429 | "industry": "Testing and Certification", 430 | "city": "Munich", 431 | "number-of-employees": "25000", 432 | "country": "Germany", 433 | "linkedin": "https://www.linkedin.com/company/tuvsud/jobs" 434 | }, 435 | { 436 | "name": "Knorr-Bremse AG", 437 | "year-of-make": "1905", 438 | "industry": "Automotive", 439 | "city": "Munich", 440 | "number-of-employees": "29000", 441 | "country": "Germany", 442 | "linkedin": "https://www.linkedin.com/company/knorr-bremse/jobs" 443 | }, 444 | { 445 | "name": "Stada Arzneimittel AG", 446 | "year-of-make": "1895", 447 | "industry": "Pharmaceuticals", 448 | "city": "Bad Vilbel", 449 | "number-of-employees": "12000", 450 | "country": "Germany", 451 | "linkedin": "https://www.linkedin.com/company/stada-arzneimittel-gmbh/jobs" 452 | }, 453 | { 454 | "name": "Ceconomy AG", 455 | "year-of-make": "2017", 456 | "industry": "Consumer Electronics", 457 | "city": "Düsseldorf", 458 | "number-of-employees": "50000", 459 | "country": "Germany", 460 | "linkedin": "https://www.linkedin.com/company/ceconomy/jobs" 461 | }, 462 | { 463 | "name": "Deutsche Pfandbriefbank AG", 464 | "year-of-make": "2009", 465 | "industry": "Banking", 466 | "city": "Munich", 467 | "number-of-employees": "2000", 468 | "country": "Germany", 469 | "linkedin": "https://www.linkedin.com/company/deutsche-pfandbriefbank-ag/jobs" 470 | }, 471 | { 472 | "name": "Merck Life Science GmbH", 473 | "year-of-make": "1668", 474 | "industry": "Life Sciences", 475 | "city": "Darmstadt", 476 | "number-of-employees": "10000", 477 | "country": "Germany", 478 | "linkedin": "https://www.linkedin.com/company/merck-life-science/jobs" 479 | }, 480 | { 481 | "name": "ABB AG", 482 | "year-of-make": "1883", 483 | "industry": "Industrial Automation", 484 | "city": "Mannheim", 485 | "number-of-employees": "110000", 486 | "country": "Germany", 487 | "linkedin": "https://www.linkedin.com/company/abb/jobs" 488 | }, 489 | { 490 | "name": "ALTANA AG", 491 | "year-of-make": "1977", 492 | "industry": "Specialty Chemicals", 493 | "city": "Wesel", 494 | "number-of-employees": "6000", 495 | "country": "Germany", 496 | "linkedin": "https://www.linkedin.com/company/altana-ag/jobs" 497 | }, 498 | { 499 | "name": "Wacker Silicones GmbH", 500 | "year-of-make": "1903", 501 | "industry": "Silicones", 502 | "city": "Munich", 503 | "number-of-employees": "14000", 504 | "country": "Germany", 505 | "linkedin": "https://www.linkedin.com/company/wacker/jobs" 506 | }, 507 | { 508 | "name": "METROPOLE INVESTMENTS LTD.", 509 | "year-of-make": "2016", 510 | "industry": "Real Estate", 511 | "city": "Berlin", 512 | "number-of-employees": "2000", 513 | "country": "Germany" 514 | }, 515 | { 516 | "name": "Dürr AG", 517 | "year-of-make": "1895", 518 | "industry": "Machinery and Equipment", 519 | "city": "Stuttgart", 520 | "number-of-employees": "17000", 521 | "country": "Germany", 522 | "linkedin": "https://www.linkedin.com/company/duerr/jobs" 523 | }, 524 | { 525 | "name": "Klüber Lubrication München SE & Co. KG", 526 | "year-of-make": "1929", 527 | "industry": "Lubricants", 528 | "city": "Munich", 529 | "number-of-employees": "2000", 530 | "country": "Germany", 531 | "linkedin": "https://www.linkedin.com/company/kluber-lubrication_102925/jobs" 532 | }, 533 | { 534 | "name": "EnBW Energie Baden-Württemberg AG", 535 | "year-of-make": "1997", 536 | "industry": "Energy", 537 | "city": "Karlsruhe", 538 | "number-of-employees": "24000", 539 | "country": "Germany", 540 | "linkedin": "https://www.linkedin.com/company/enbw/jobs" 541 | }, 542 | { 543 | "name": "Deutsche Apotheker- und Ärztebank eG", 544 | "year-of-make": "1902", 545 | "industry": "Banking", 546 | "city": "Düsseldorf", 547 | "number-of-employees": "3000", 548 | "country": "Germany", 549 | "linkedin": "https://www.linkedin.com/company/apobank/jobs" 550 | }, 551 | { 552 | "name": "KWS SAAT SE & Co. KGaA", 553 | "year-of-make": "1856", 554 | "industry": "Agriculture", 555 | "city": "Einbeck", 556 | "number-of-employees": "5000", 557 | "country": "Germany", 558 | "linkedin": "https://www.linkedin.com/company/kwsgroup/jobs" 559 | }, 560 | { 561 | "name": "Axel Springer SE", 562 | "year-of-make": "1946", 563 | "industry": "Media", 564 | "city": "Berlin", 565 | "number-of-employees": "16000", 566 | "country": "Germany", 567 | "linkedin": "https://www.linkedin.com/company/axelspringer/jobs" 568 | }, 569 | { 570 | "name": "Munich Re Group", 571 | "year-of-make": "1880", 572 | "industry": "Insurance", 573 | "city": "Munich", 574 | "number-of-employees": "40000", 575 | "country": "Germany" 576 | }, 577 | { 578 | "name": "Rheinmetall AG", 579 | "year-of-make": "1889", 580 | "industry": "Defense Automotive", 581 | "city": "Düsseldorf", 582 | "number-of-employees": "25000", 583 | "country": "Germany", 584 | "linkedin": "https://www.linkedin.com/company/rheinmetall/jobs" 585 | }, 586 | { 587 | "name": "Fielmann AG", 588 | "year-of-make": "1972", 589 | "industry": "Optics and Eyewear", 590 | "city": "Hamburg", 591 | "number-of-employees": "21000", 592 | "country": "Germany", 593 | "linkedin": "https://www.linkedin.com/company/fielmann-ag/jobs" 594 | }, 595 | { 596 | "name": "Schaeffler AG", 597 | "year-of-make": "1946", 598 | "industry": "Automotive and Industrial", 599 | "city": "Herzogenaurach", 600 | "number-of-employees": "83000", 601 | "country": "Germany", 602 | "linkedin": "https://www.linkedin.com/company/schaeffler/jobs" 603 | }, 604 | { 605 | "name": "TRUMPF GmbH + Co. KG", 606 | "year-of-make": "1923", 607 | "industry": "Machine Tools", 608 | "city": "Ditzingen", 609 | "number-of-employees": "14000", 610 | "country": "Germany", 611 | "linkedin": "https://www.linkedin.com/company/trumpf-se-co-kg/jobs" 612 | }, 613 | { 614 | "name": "Commerzbank AG", 615 | "year-of-make": "1870", 616 | "industry": "Banking and Financial Services", 617 | "city": "Frankfurt", 618 | "number-of-employees": "39000", 619 | "country": "Germany", 620 | "linkedin": "https://www.linkedin.com/company/commerzbank-ag/jobs" 621 | }, 622 | { 623 | "name": "TÜV Rheinland AG", 624 | "year-of-make": "1872", 625 | "industry": "Testing Inspection and Certification", 626 | "city": "Cologne", 627 | "number-of-employees": "20000", 628 | "country": "Germany", 629 | "linkedin": "https://www.linkedin.com/company/tuv-rheinland-group/jobs" 630 | }, 631 | { 632 | "name": "Linde plc", 633 | "year-of-make": "1879", 634 | "industry": "Industrial Gases", 635 | "city": "Munich", 636 | "number-of-employees": "80000", 637 | "country": "Germany", 638 | "linkedin": "https://www.linkedin.com/company/linde/jobs" 639 | }, 640 | { 641 | "name": "Vodafone GmbH", 642 | "year-of-make": "1988", 643 | "industry": "Telecommunications", 644 | "city": "Düsseldorf", 645 | "number-of-employees": "10000", 646 | "country": "Germany", 647 | "linkedin": "https://www.linkedin.com/company/vodafone/jobs" 648 | }, 649 | { 650 | "name": "EON SE", 651 | "year-of-make": "2000", 652 | "industry": "Utilities", 653 | "city": "Essen", 654 | "number-of-employees": "75000", 655 | "country": "Germany", 656 | "linkedin": "https://www.linkedin.com/company/eon-inc/jobs" 657 | }, 658 | { 659 | "name": "Wintershall Dea GmbH", 660 | "year-of-make": "1894", 661 | "industry": "Oil and Gas", 662 | "city": "Kassel", 663 | "number-of-employees": "2000", 664 | "country": "Germany", 665 | "linkedin": "https://www.linkedin.com/company/wintershalldea/jobs" 666 | }, 667 | { 668 | "name": "Uniper SE", 669 | "year-of-make": "2016", 670 | "industry": "Utilities", 671 | "city": "Düsseldorf", 672 | "number-of-employees": "11000", 673 | "country": "Germany", 674 | "linkedin": "https://www.linkedin.com/company/uniper-se/jobs" 675 | }, 676 | { 677 | "name": "Nordex SE", 678 | "year-of-make": "1985", 679 | "industry": "Renewable Energy", 680 | "city": "Hamburg", 681 | "number-of-employees": "8000", 682 | "country": "Germany", 683 | "linkedin": "https://www.linkedin.com/company/nordex/jobs" 684 | }, 685 | { 686 | "name": "adidas AG", 687 | "year-of-make": "1949", 688 | "industry": "Apparel and Footwear", 689 | "city": "Herzogenaurach", 690 | "number-of-employees": "60000", 691 | "country": "Germany", 692 | "linkedin": "https://www.linkedin.com/company/adidas/jobs" 693 | }, 694 | { 695 | "name": "MANN+HUMMEL GmbH", 696 | "year-of-make": "1941", 697 | "industry": "Automotive and Industrial Filters", 698 | "city": "Ludwigsburg", 699 | "number-of-employees": "20000", 700 | "country": "Germany", 701 | "linkedin": "https://www.linkedin.com/company/mannhummel/jobs" 702 | }, 703 | { 704 | "name": "Fresenius Kabi Deutschland GmbH", 705 | "year-of-make": "1912", 706 | "industry": "Healthcare", 707 | "city": "Bad Homburg", 708 | "number-of-employees": "40000", 709 | "country": "Germany", 710 | "linkedin": "https://www.linkedin.com/company/freseniuskabi/jobs" 711 | }, 712 | { 713 | "name": "Carl Zeiss AG", 714 | "year-of-make": "1846", 715 | "industry": "Optics and Optoelectronics", 716 | "city": "Oberkochen", 717 | "number-of-employees": "30000", 718 | "country": "Germany", 719 | "linkedin": "https://www.linkedin.com/company/carl-zeiss-do-brasil/jobs" 720 | }, 721 | { 722 | "name": "Miele & Cie. KG", 723 | "year-of-make": "1899", 724 | "industry": "Home Appliances", 725 | "city": "Gütersloh", 726 | "number-of-employees": "20000", 727 | "country": "Germany", 728 | "linkedin": "" 729 | }, 730 | { 731 | "name": "Fraport AG", 732 | "year-of-make": "1924", 733 | "industry": "Airport Services", 734 | "city": "Frankfurt", 735 | "number-of-employees": "22000", 736 | "country": "Germany", 737 | "linkedin": "https://www.linkedin.com/company/fraport-ag/jobs" 738 | }, 739 | { 740 | "name": "Covestro Deutschland AG", 741 | "year-of-make": "2015", 742 | "industry": "Chemicals", 743 | "city": "Leverkusen", 744 | "number-of-employees": "17000", 745 | "country": "Germany", 746 | "linkedin": "https://www.linkedin.com/company/covestro-deutschland-ag/jobs" 747 | }, 748 | { 749 | "name": "Siemens Energy AG", 750 | "year-of-make": "2020", 751 | "industry": "Energy", 752 | "city": "Munich", 753 | "number-of-employees": "90000", 754 | "country": "Germany", 755 | "linkedin": "https://www.linkedin.com/company/siemens-energy/jobs" 756 | }, 757 | { 758 | "name": "Innogy SE", 759 | "year-of-make": "2016", 760 | "industry": "Energy", 761 | "city": "Essen", 762 | "number-of-employees": "40000", 763 | "country": "Germany", 764 | "linkedin": "https://www.linkedin.com/company/innogy-se/jobs" 765 | }, 766 | { 767 | "name": "EWE AG", 768 | "year-of-make": "1936", 769 | "industry": "Energy and Telecommunications", 770 | "city": "Oldenburg", 771 | "number-of-employees": "10000", 772 | "country": "Germany", 773 | "linkedin": "https://www.linkedin.com/company/ewe-ag/jobs" 774 | }, 775 | { 776 | "name": "Drägerwerk AG & Co. KGaA", 777 | "year-of-make": "1889", 778 | "industry": "Medical and Safety Technology", 779 | "city": "Lübeck", 780 | "number-of-employees": "14000", 781 | "country": "Germany" 782 | }, 783 | { 784 | "name": "TUI AG", 785 | "year-of-make": "1923", 786 | "industry": "Tourism and Travel", 787 | "city": "Hannover", 788 | "number-of-employees": "70000", 789 | "country": "Germany", 790 | "linkedin": "https://www.linkedin.com/company/tuigroup/jobs" 791 | }, 792 | { 793 | "name": "ZF Friedrichshafen AG", 794 | "year-of-make": "1915", 795 | "industry": "Automotive Technology", 796 | "city": "Friedrichshafen", 797 | "number-of-employees": "160000", 798 | "country": "Germany", 799 | "linkedin": "https://www.linkedin.com/company/zf-group/jobs" 800 | }, 801 | { 802 | "name": "Hilti Deutschland AG", 803 | "year-of-make": "1952", 804 | "industry": "Construction Technology", 805 | "city": "Kaufering", 806 | "number-of-employees": "30000", 807 | "country": "Germany", 808 | "linkedin": "https://www.linkedin.com/company/hiltideutschlandag/jobs" 809 | }, 810 | { 811 | "name": "AUDI AG", 812 | "year-of-make": "1909", 813 | "industry": "Automotive", 814 | "city": "Ingolstadt", 815 | "number-of-employees": "90000", 816 | "country": "Germany", 817 | "linkedin": "https://www.linkedin.com/company/audi-ag/jobs" 818 | }, 819 | { 820 | "name": "Osram GmbH", 821 | "year-of-make": "1906", 822 | "industry": "Lighting Solutions", 823 | "city": "Munich", 824 | "number-of-employees": "26000", 825 | "country": "Germany", 826 | "linkedin": "https://www.linkedin.com/company/ams-osram/jobs" 827 | }, 828 | { 829 | "name": "B. Braun Melsungen AG", 830 | "year-of-make": "1839", 831 | "industry": "Medical Technology", 832 | "city": "Melsungen", 833 | "number-of-employees": "63000", 834 | "country": "Germany", 835 | "linkedin": "https://www.linkedin.com/company/bbraun-group/jobs" 836 | }, 837 | { 838 | "name": "Bertelsmann SE & Co. KGaA", 839 | "year-of-make": "1835", 840 | "industry": "Media", 841 | "city": "Gütersloh", 842 | "number-of-employees": "126000", 843 | "country": "Germany", 844 | "linkedin": "https://www.linkedin.com/company/bertelsmann/jobs" 845 | }, 846 | { 847 | "name": "KfW Bank", 848 | "year-of-make": "1948", 849 | "industry": "Development Bank", 850 | "city": "Frankfurt", 851 | "number-of-employees": "6000", 852 | "country": "Germany", 853 | "linkedin": "https://www.linkedin.com/company/kfw/jobs" 854 | }, 855 | { 856 | "name": "DZ BANK AG", 857 | "year-of-make": "1872", 858 | "industry": "Cooperative Banking", 859 | "city": "Frankfurt", 860 | "number-of-employees": "29000", 861 | "country": "Germany", 862 | "linkedin": "https://www.linkedin.com/company/dzbank/jobs" 863 | }, 864 | { 865 | "name": "Deutsche Börse AG", 866 | "year-of-make": "1992", 867 | "industry": "Financial Services", 868 | "city": "Eschborn", 869 | "number-of-employees": "6000", 870 | "country": "Germany", 871 | "linkedin": "https://www.linkedin.com/company/deutscheboerse/jobs" 872 | }, 873 | { 874 | "name": "Merck Group", 875 | "year-of-make": "1668", 876 | "industry": "Science and Technology", 877 | "city": "Darmstadt", 878 | "number-of-employees": "58000", 879 | "country": "Germany", 880 | "linkedin": "https://www.linkedin.com/company/merck-group/jobs" 881 | }, 882 | { 883 | "name": "Freudenberg Group", 884 | "year-of-make": "1849", 885 | "industry": "Diversified Industries", 886 | "city": "Weinheim", 887 | "number-of-employees": "52000", 888 | "country": "Germany", 889 | "linkedin": "https://www.linkedin.com/company/freudenberg-group/jobs" 890 | }, 891 | { 892 | "name": "KPMG AG Wirtschaftsprüfungsgesellschaft", 893 | "year-of-make": "1890", 894 | "industry": "Audit Tax and Advisory", 895 | "city": "Berlin", 896 | "number-of-employees": "12000", 897 | "country": "Germany" 898 | }, 899 | { 900 | "name": "Boehringer Ingelheim GmbH", 901 | "year-of-make": "1885", 902 | "industry": "Pharmaceuticals", 903 | "city": "Ingelheim", 904 | "number-of-employees": "51000", 905 | "country": "Germany", 906 | "linkedin": "https://www.linkedin.com/company/boehringer-ingelheim/jobs" 907 | }, 908 | { 909 | "name": "T-Systems International GmbH", 910 | "year-of-make": "2000", 911 | "industry": "IT and Telecommunications", 912 | "city": "Frankfurt", 913 | "number-of-employees": "37000", 914 | "country": "Germany", 915 | "linkedin": "https://www.linkedin.com/company/t-systems/jobs" 916 | }, 917 | { 918 | "name": "Siemens Healthineers AG", 919 | "year-of-make": "2018", 920 | "industry": "Medical Technology", 921 | "city": "Erlangen", 922 | "number-of-employees": "54000", 923 | "country": "Germany", 924 | "linkedin": "https://www.linkedin.com/company/siemens-healthineers/jobs" 925 | }, 926 | { 927 | "name": "Dr. Ing. h.c. F. Porsche AG", 928 | "year-of-make": "1931", 929 | "industry": "Automotive", 930 | "city": "Stuttgart", 931 | "number-of-employees": "35000", 932 | "country": "Germany", 933 | "linkedin": "https://www.linkedin.com/company/porsche-ag/jobs" 934 | }, 935 | { 936 | "name": "PwC Germany", 937 | "year-of-make": "1900", 938 | "industry": "Accounting and Consulting", 939 | "city": "Frankfurt", 940 | "number-of-employees": "11000", 941 | "country": "Germany", 942 | "linkedin": "https://www.linkedin.com/company/pwc-deutschland/jobs" 943 | }, 944 | { 945 | "name": "Ernst & Young GmbH Wirtschaftsprüfungsgesellschaft", 946 | "year-of-make": "1895", 947 | "industry": "Accounting and Consulting", 948 | "city": "Stuttgart", 949 | "number-of-employees": "10000", 950 | "country": "Germany", 951 | "linkedin": "https://www.linkedin.com/company/ernst-&-young-gmbh-wirtschaftspr%C3%BCfungsgesellschaft/jobs" 952 | }, 953 | { 954 | "name": "Deloitte GmbH Wirtschaftsprüfungsgesellschaft", 955 | "year-of-make": "1896", 956 | "industry": "Accounting and Consulting", 957 | "city": "Munich", 958 | "number-of-employees": "12000", 959 | "country": "Germany" 960 | }, 961 | { 962 | "name": "Volkswagen Commercial Vehicles", 963 | "year-of-make": "1947", 964 | "industry": "Automotive", 965 | "city": "Hanover", 966 | "number-of-employees": "17000", 967 | "country": "Germany", 968 | "linkedin": "https://www.linkedin.com/company/volkswagen-commercial-vehicles-/jobs" 969 | }, 970 | { 971 | "name": "MAN Truck & Bus AG", 972 | "year-of-make": "1758", 973 | "industry": "Automotive", 974 | "city": "Munich", 975 | "number-of-employees": "37000", 976 | "country": "Germany", 977 | "linkedin": "https://www.linkedin.com/company/man-commercial-vehicles/jobs" 978 | }, 979 | { 980 | "name": "SAP Concur", 981 | "year-of-make": "1993", 982 | "industry": "Software", 983 | "city": "Munich", 984 | "number-of-employees": "7000", 985 | "country": "Germany", 986 | "linkedin": "https://www.linkedin.com/company/sapconcur/jobs" 987 | }, 988 | { 989 | "name": "Zalando SE", 990 | "year-of-make": "2008", 991 | "industry": "E-commerce", 992 | "city": "Berlin", 993 | "number-of-employees": "14000", 994 | "country": "Germany", 995 | "linkedin": "https://www.linkedin.com/company/zalando/jobs" 996 | }, 997 | { 998 | "name": "Delivery Hero SE", 999 | "year-of-make": "2011", 1000 | "industry": "Food Delivery", 1001 | "city": "Berlin", 1002 | "number-of-employees": "27000", 1003 | "country": "Germany", 1004 | "linkedin": "https://www.linkedin.com/company/delivery-hero-se/jobs" 1005 | }, 1006 | { 1007 | "name": "HelloFresh SE", 1008 | "year-of-make": "2011", 1009 | "industry": "Meal Kit Delivery", 1010 | "city": "Berlin", 1011 | "number-of-employees": "11000", 1012 | "country": "Germany", 1013 | "linkedin": "https://www.linkedin.com/company/hellofresh/jobs" 1014 | }, 1015 | { 1016 | "name": "N26 GmbH", 1017 | "year-of-make": "2013", 1018 | "industry": "Banking and Finance", 1019 | "city": "Berlin", 1020 | "number-of-employees": "4000", 1021 | "country": "Germany", 1022 | "linkedin": "https://www.linkedin.com/company/n26/jobs" 1023 | }, 1024 | { 1025 | "name": "FlixBus GmbH", 1026 | "year-of-make": "2013", 1027 | "industry": "Transportation", 1028 | "city": "Munich", 1029 | "number-of-employees": "3000", 1030 | "country": "Germany", 1031 | "linkedin": "https://www.linkedin.com/company/flixbus/jobs" 1032 | }, 1033 | { 1034 | "name": "TeamViewer AG", 1035 | "year-of-make": "2005", 1036 | "industry": "Software", 1037 | "city": "Göppingen", 1038 | "number-of-employees": "1000", 1039 | "country": "Germany", 1040 | "linkedin": "https://www.linkedin.com/company/teamviewer/jobs" 1041 | }, 1042 | { 1043 | "name": "Bosch Rexroth AG", 1044 | "year-of-make": "1795", 1045 | "industry": "Engineering and Technology", 1046 | "city": "Lohr am Main", 1047 | "number-of-employees": "29000", 1048 | "country": "Germany", 1049 | "linkedin": "https://www.linkedin.com/company/bosch-rexroth/jobs" 1050 | }, 1051 | { 1052 | "name": "Mercedes-Benz AG", 1053 | "year-of-make": "1926", 1054 | "industry": "Automotive", 1055 | "city": "Stuttgart", 1056 | "number-of-employees": "150000", 1057 | "country": "Germany", 1058 | "linkedin": "https://www.linkedin.com/company/mercedes-benz_ag/jobs" 1059 | }, 1060 | { 1061 | "name": "Fresenius Helios", 1062 | "year-of-make": "1995", 1063 | "industry": "Healthcare and Hospitals", 1064 | "city": "Berlin", 1065 | "number-of-employees": "120000", 1066 | "country": "Germany", 1067 | "linkedin": "https://www.linkedin.com/company/helios-kliniken-gmbh/jobs" 1068 | }, 1069 | { 1070 | "name": "Bosch Gruppe", 1071 | "year-of-make": "1886", 1072 | "industry": "Engineering and Technology", 1073 | "city": "Gerlingen", 1074 | "number-of-employees": "400000", 1075 | "country": "Germany", 1076 | "linkedin": "https://www.linkedin.com/company/bosch/jobs" 1077 | }, 1078 | { 1079 | "name": "Deutsche Bundesbank", 1080 | "year-of-make": "1957", 1081 | "industry": "Central Banking", 1082 | "city": "Frankfurt", 1083 | "number-of-employees": "9000", 1084 | "country": "Germany", 1085 | "linkedin": "https://www.linkedin.com/company/deutsche-bundesbank/jobs" 1086 | }, 1087 | { 1088 | "name": "Schenker AG", 1089 | "year-of-make": "1872", 1090 | "industry": "Freight Transportation and Logistics", 1091 | "city": "Essen", 1092 | "number-of-employees": "76000", 1093 | "country": "Germany", 1094 | "linkedin": "https://www.linkedin.com/company/dbschenker/jobs" 1095 | }, 1096 | { 1097 | "name": "PricewaterhouseCoopers GmbH", 1098 | "year-of-make": "1849", 1099 | "industry": "Professional Services and Audit", 1100 | "city": "Frankfurt", 1101 | "number-of-employees": "10000", 1102 | "country": "Germany", 1103 | "linkedin": "https://www.linkedin.com/company/pwc/jobs" 1104 | }, 1105 | { 1106 | "name": "IBM Deutschland GmbH", 1107 | "year-of-make": "1910", 1108 | "industry": "Information Technology and Services", 1109 | "city": "Ehningen", 1110 | "number-of-employees": "20000", 1111 | "country": "Germany", 1112 | "linkedin": "https://www.linkedin.com/company/ibm/jobs" 1113 | }, 1114 | { 1115 | "name": "Amazon Deutschland Services GmbH", 1116 | "year-of-make": "1994", 1117 | "industry": "E-commerce and Retail", 1118 | "city": "Munich", 1119 | "number-of-employees": "20000", 1120 | "country": "Germany", 1121 | "linkedin": "https://www.linkedin.com/company/amazon/jobs" 1122 | }, 1123 | { 1124 | "name": "Kühne + Nagel International AG", 1125 | "year-of-make": "1890", 1126 | "industry": "Logistics and Supply Chain Management", 1127 | "city": "Bremen", 1128 | "number-of-employees": "82000", 1129 | "country": "Germany" 1130 | }, 1131 | { 1132 | "name": "HUGO BOSS AG", 1133 | "year-of-make": "1924", 1134 | "industry": "Fashion and Apparel", 1135 | "city": "Metzingen", 1136 | "number-of-employees": "14000", 1137 | "country": "Germany", 1138 | "linkedin": "https://www.linkedin.com/company/hugo-boss/jobs" 1139 | }, 1140 | { 1141 | "name": "Fujitsu Technology Solutions GmbH", 1142 | "year-of-make": "2009", 1143 | "industry": "Information Technology and Services", 1144 | "city": "Munich", 1145 | "number-of-employees": "1400", 1146 | "country": "Germany", 1147 | "linkedin": "https://www.linkedin.com/company/fujitsu/jobs" 1148 | }, 1149 | { 1150 | "name": "Kuehne + Nagel (AG & Co.) KG", 1151 | "year-of-make": "1890", 1152 | "industry": "Logistics and Freight Forwarding", 1153 | "city": "Hamburg", 1154 | "number-of-employees": "78000", 1155 | "country": "Germany", 1156 | "linkedin": "https://www.linkedin.com/company/kuehne-nagel/jobs" 1157 | }, 1158 | { 1159 | "name": "Merz Pharma GmbH & Co. KGaA", 1160 | "year-of-make": "1908", 1161 | "industry": "Pharmaceuticals and Aesthetics", 1162 | "city": "Frankfurt", 1163 | "number-of-employees": "3000", 1164 | "country": "Germany", 1165 | "linkedin": "https://www.linkedin.com/company/merz-pharma-gmbh-co-kgaa-reinheim/jobs" 1166 | }, 1167 | { 1168 | "name": "Aldi Group", 1169 | "year-of-make": "1946", 1170 | "industry": "Retail and Grocery", 1171 | "city": "Essen", 1172 | "number-of-employees": "100000", 1173 | "country": "Germany", 1174 | "linkedin": "https://www.linkedin.com/company/aldi-sued/jobs" 1175 | }, 1176 | { 1177 | "name": "Schwarz Gruppe", 1178 | "year-of-make": "1930", 1179 | "industry": "Retail and Grocery", 1180 | "city": "Neckarsulm", 1181 | "number-of-employees": "450000", 1182 | "country": "Germany", 1183 | "linkedin": "https://www.linkedin.com/company/schwarzgruppeint/jobs" 1184 | }, 1185 | { 1186 | "name": "DMK Group", 1187 | "year-of-make": "2001", 1188 | "industry": "Dairy and Food Processing", 1189 | "city": "Zeven", 1190 | "number-of-employees": "8000", 1191 | "country": "Germany", 1192 | "linkedin": "https://www.linkedin.com/company/dmkrestaurants/jobs" 1193 | }, 1194 | { 1195 | "name": "KUKA Robotics GmbH", 1196 | "year-of-make": "1898", 1197 | "industry": "Automation and Robotics", 1198 | "city": "Augsburg", 1199 | "number-of-employees": "10000", 1200 | "country": "Germany", 1201 | "linkedin": "https://www.linkedin.com/company/kukaglobal/jobs" 1202 | }, 1203 | { 1204 | "name": "FlixMobility GmbH", 1205 | "year-of-make": "2013", 1206 | "industry": "Mobility and Transportation", 1207 | "city": "Munich", 1208 | "number-of-employees": "3000", 1209 | "country": "Germany", 1210 | "linkedin": "https://www.linkedin.com/company/flixmobility-gmbh/jobs" 1211 | }, 1212 | { 1213 | "name": "Sartorius AG", 1214 | "year-of-make": "1870", 1215 | "industry": "Biotechnology and Life Sciences", 1216 | "city": "Gottingen", 1217 | "number-of-employees": "10000", 1218 | "country": "Germany", 1219 | "linkedin": "https://www.linkedin.com/company/sartorius/jobs" 1220 | }, 1221 | { 1222 | "name": "Wayfair GmbH", 1223 | "year-of-make": "2014", 1224 | "industry": "E-commerce and Home Goods", 1225 | "city": "Berlin", 1226 | "number-of-employees": "5000", 1227 | "country": "Germany", 1228 | "linkedin": "https://www.linkedin.com/company/wayfair/jobs" 1229 | }, 1230 | { 1231 | "name": "Home24 SE", 1232 | "year-of-make": "2009", 1233 | "industry": "E-commerce and Home Furniture", 1234 | "city": "Berlin", 1235 | "number-of-employees": "2000", 1236 | "country": "Germany", 1237 | "linkedin": "https://www.linkedin.com/company/home24/jobs" 1238 | }, 1239 | { 1240 | "name": "Mister Spex GmbH", 1241 | "year-of-make": "2007", 1242 | "industry": "E-commerce and Eyewear", 1243 | "city": "Berlin", 1244 | "number-of-employees": "2000", 1245 | "country": "Germany", 1246 | "linkedin": "https://www.linkedin.com/company/mister-spex/jobs" 1247 | }, 1248 | { 1249 | "name": "Auto1 Group GmbH", 1250 | "year-of-make": "2012", 1251 | "industry": "Automotive and Technology", 1252 | "city": "Berlin", 1253 | "number-of-employees": "4000", 1254 | "country": "Germany", 1255 | "linkedin": "https://www.linkedin.com/company/auto1-group/jobs" 1256 | }, 1257 | { 1258 | "name": "Foodspring GmbH", 1259 | "year-of-make": "2013", 1260 | "industry": "Health and Nutrition", 1261 | "city": "Berlin", 1262 | "number-of-employees": "1000", 1263 | "country": "Germany", 1264 | "linkedin": "https://www.linkedin.com/company/foodspring/jobs" 1265 | }, 1266 | { 1267 | "name": "Raisin GmbH", 1268 | "year-of-make": "2012", 1269 | "industry": "Fintech and Banking", 1270 | "city": "Berlin", 1271 | "number-of-employees": "1000", 1272 | "country": "Germany", 1273 | "linkedin": "https://www.linkedin.com/company/join-raisin-ds/jobs" 1274 | }, 1275 | { 1276 | "name": "smallpdf GmbH", 1277 | "year-of-make": "2013", 1278 | "industry": "Software and Technology", 1279 | "city": "Berlin", 1280 | "number-of-employees": "100-249", 1281 | "country": "Germany", 1282 | "linkedin": "https://www.linkedin.com/company/smallpdf/jobs" 1283 | }, 1284 | { 1285 | "name": "Jimdo GmbH", 1286 | "year-of-make": "2007", 1287 | "industry": "Website Building and E-commerce", 1288 | "city": "Hamburg", 1289 | "number-of-employees": "250-499", 1290 | "country": "Germany", 1291 | "linkedin": "https://www.linkedin.com/company/jimdo/jobs" 1292 | }, 1293 | { 1294 | "name": "Personio GmbH", 1295 | "year-of-make": "2015", 1296 | "industry": "Human Resources and Software", 1297 | "city": "Munich", 1298 | "number-of-employees": "250-499", 1299 | "country": "Germany", 1300 | "linkedin": "https://www.linkedin.com/company/personio/jobs" 1301 | }, 1302 | { 1303 | "name": "Marley Spoon AG", 1304 | "year-of-make": "2014", 1305 | "industry": "Meal Kits and Food Delivery", 1306 | "city": "Berlin", 1307 | "number-of-employees": "250-499", 1308 | "country": "Germany", 1309 | "linkedin": "https://www.linkedin.com/company/marley-spoon/jobs" 1310 | }, 1311 | { 1312 | "name": "HomeToGo GmbH", 1313 | "year-of-make": "2014", 1314 | "industry": "Travel and Vacation Rentals", 1315 | "city": "Berlin", 1316 | "number-of-employees": "250-499", 1317 | "country": "Germany", 1318 | "linkedin": "https://www.linkedin.com/company/hometogo/jobs" 1319 | }, 1320 | { 1321 | "name": "Grover Group GmbH", 1322 | "year-of-make": "2015", 1323 | "industry": "Consumer Electronics and Rentals", 1324 | "city": "Berlin", 1325 | "number-of-employees": "250-499", 1326 | "country": "Germany", 1327 | "linkedin": "https://www.linkedin.com/company/grover/jobs" 1328 | }, 1329 | { 1330 | "name": "reBuy reCommerce GmbH", 1331 | "year-of-make": "2009", 1332 | "industry": "E-commerce and Used Goods", 1333 | "city": "Berlin", 1334 | "number-of-employees": "250-499", 1335 | "country": "Germany", 1336 | "linkedin": "https://www.linkedin.com/company/rebuy-recommerce-gmbh/jobs" 1337 | }, 1338 | { 1339 | "name": "8fit GmbH", 1340 | "year-of-make": "2014", 1341 | "industry": "Health and Fitness", 1342 | "city": "Berlin", 1343 | "number-of-employees": "250-499", 1344 | "country": "Germany", 1345 | "linkedin": "https://www.linkedin.com/company/8fit/jobs" 1346 | }, 1347 | { 1348 | "name": "Personify XP GmbH", 1349 | "year-of-make": "2014", 1350 | "industry": "Artificial Intelligence and Personalization", 1351 | "city": "Munich", 1352 | "number-of-employees": "250-499", 1353 | "country": "Germany", 1354 | "linkedin": "https://www.linkedin.com/company/personify-xp/jobs" 1355 | }, 1356 | { 1357 | "name": "Sensorberg GmbH", 1358 | "year-of-make": "2013", 1359 | "industry": "Internet of Things (IoT) and Proptech", 1360 | "city": "Berlin", 1361 | "number-of-employees": "50-99", 1362 | "country": "Germany", 1363 | "linkedin": "https://www.linkedin.com/company/sensorberg-gmbh/jobs" 1364 | }, 1365 | { 1366 | "name": "4tiitoo GmbH", 1367 | "year-of-make": "2011", 1368 | "industry": "Human-Computer Interaction and Software", 1369 | "city": "Munich", 1370 | "number-of-employees": "50-99", 1371 | "country": "Germany", 1372 | "linkedin": "https://www.linkedin.com/company/4tiitoo/jobs" 1373 | }, 1374 | { 1375 | "name": "Emteria GmbH", 1376 | "year-of-make": "2015", 1377 | "industry": "Embedded Systems and Software", 1378 | "city": "Karlsruhe", 1379 | "number-of-employees": "50-99", 1380 | "country": "Germany", 1381 | "linkedin": "https://www.linkedin.com/company/emteria/jobs" 1382 | }, 1383 | { 1384 | "name": "Vizibl GmbH", 1385 | "year-of-make": "2014", 1386 | "industry": "Supply Chain and Procurement", 1387 | "city": "Munich", 1388 | "number-of-employees": "50-99", 1389 | "country": "Germany", 1390 | "linkedin": "https://www.linkedin.com/company/vizibl/jobs" 1391 | }, 1392 | { 1393 | "name": "Joonko GmbH", 1394 | "year-of-make": "2018", 1395 | "industry": "Human Resources and Diversity", 1396 | "city": "Berlin", 1397 | "number-of-employees": "50-99", 1398 | "country": "Germany", 1399 | "linkedin": "https://www.linkedin.com/company/joonkorecruitmentsoftware/jobs" 1400 | }, 1401 | { 1402 | "name": "Carla Cargo GmbH", 1403 | "year-of-make": "2016", 1404 | "industry": "E-mobility and Logistics", 1405 | "city": "Berlin", 1406 | "number-of-employees": "10-49", 1407 | "country": "Germany", 1408 | "linkedin": "https://www.linkedin.com/company/carlacargo/jobs" 1409 | }, 1410 | { 1411 | "name": "KINEXON GmbH", 1412 | "year-of-make": "2012", 1413 | "industry": "Internet of Things (IoT) and Sports Analytics", 1414 | "city": "Munich", 1415 | "number-of-employees": "10-49", 1416 | "country": "Germany", 1417 | "linkedin": "https://www.linkedin.com/company/kinexon/jobs" 1418 | }, 1419 | { 1420 | "name": "EyeEm Mobile GmbH", 1421 | "year-of-make": "?", 1422 | "industry": "Photography and Artificial Intelligence", 1423 | "city": "Berlin", 1424 | "number-of-employees": "50-99", 1425 | "country": "Germany", 1426 | "linkedin": "https://www.linkedin.com/company/eyeem/jobs" 1427 | }, 1428 | { 1429 | "name": "Contentful GmbH", 1430 | "year-of-make": "?", 1431 | "industry": "Content Management and Headless CMS", 1432 | "city": "Berlin", 1433 | "number-of-employees": "250-499", 1434 | "country": "Germany", 1435 | "linkedin": "https://www.linkedin.com/company/contentful/jobs" 1436 | }, 1437 | { 1438 | "name": "Aiven GmbH", 1439 | "year-of-make": "?", 1440 | "industry": "Cloud Computing and Database Management", 1441 | "city": "Berlin", 1442 | "number-of-employees": "50-99", 1443 | "country": "Germany", 1444 | "linkedin": "https://www.linkedin.com/company/aiven/jobs" 1445 | }, 1446 | { 1447 | "name": "Signavio GmbH", 1448 | "year-of-make": "?", 1449 | "industry": "Business Process Management and Software", 1450 | "city": "Berlin", 1451 | "number-of-employees": "250-499", 1452 | "country": "Germany", 1453 | "linkedin": "https://www.linkedin.com/company/signavio/jobs" 1454 | }, 1455 | { 1456 | "name": "Coyo GmbH", 1457 | "year-of-make": "?", 1458 | "industry": "Internal Communications and Collaboration", 1459 | "city": "Hamburg", 1460 | "number-of-employees": "50-99", 1461 | "country": "Germany", 1462 | "linkedin": "https://www.linkedin.com/company/haiilo/jobs" 1463 | }, 1464 | { 1465 | "name": "InVision GmbH", 1466 | "year-of-make": "?", 1467 | "industry": "Digital Product Design and Prototyping", 1468 | "city": "Berlin", 1469 | "number-of-employees": "250-499", 1470 | "country": "Germany", 1471 | "linkedin": "https://www.linkedin.com/company/invisionapp/jobs" 1472 | }, 1473 | { 1474 | "name": "Zenjob GmbH", 1475 | "year-of-make": "?", 1476 | "industry": "On-demand Staffing and Gig Economy", 1477 | "city": "Berlin", 1478 | "number-of-employees": "250-499", 1479 | "country": "Germany", 1480 | "linkedin": "https://www.linkedin.com/company/zenjob/jobs" 1481 | }, 1482 | { 1483 | "name": "Spryker Systems GmbH", 1484 | "year-of-make": "?", 1485 | "industry": "E-commerce and Cloud Commerce", 1486 | "city": "Berlin", 1487 | "number-of-employees": "250-499", 1488 | "country": "Germany", 1489 | "linkedin": "https://www.linkedin.com/company/spryker/jobs" 1490 | }, 1491 | { 1492 | "name": "Mambu GmbH", 1493 | "year-of-make": "?", 1494 | "industry": "Banking and Financial Technology", 1495 | "city": "Berlin", 1496 | "number-of-employees": "250-499", 1497 | "country": "Germany", 1498 | "linkedin": "https://www.linkedin.com/company/mambu/jobs" 1499 | }, 1500 | { 1501 | "name": "TIER Mobility GmbH", 1502 | "year-of-make": "?", 1503 | "industry": "Micro-mobility and E-scooters", 1504 | "city": "Berlin", 1505 | "number-of-employees": "250-499", 1506 | "country": "Germany", 1507 | "linkedin": "https://www.linkedin.com/company/tiermobility/jobs" 1508 | }, 1509 | { 1510 | "name": "Quobyte GmbH", 1511 | "year-of-make": "?", 1512 | "industry": "Data Storage and Software-defined Storage", 1513 | "city": "Berlin", 1514 | "number-of-employees": "50-99", 1515 | "country": "Germany", 1516 | "linkedin": "https://www.linkedin.com/company/quobyte/jobs" 1517 | }, 1518 | { 1519 | "name": "Zattoo Europa AG", 1520 | "year-of-make": "?", 1521 | "industry": "Streaming TV and Video", 1522 | "city": "Berlin", 1523 | "number-of-employees": "250-499", 1524 | "country": "Germany", 1525 | "linkedin": "https://www.linkedin.com/company/zattoo/jobs" 1526 | }, 1527 | { 1528 | "name": "eGym GmbH", 1529 | "year-of-make": "?", 1530 | "industry": "Fitness and Health Technology", 1531 | "city": "Munich", 1532 | "number-of-employees": "250-499", 1533 | "country": "Germany", 1534 | "linkedin": "https://www.linkedin.com/company/egym-global/jobs" 1535 | }, 1536 | { 1537 | "name": "Cirplus GmbH", 1538 | "year-of-make": "?", 1539 | "industry": "Circular Economy and Sustainable Materials", 1540 | "city": "Berlin", 1541 | "number-of-employees": "50-99", 1542 | "country": "Germany", 1543 | "linkedin": "https://www.linkedin.com/company/cirplus/jobs" 1544 | }, 1545 | { 1546 | "name": "CoachHub GmbH", 1547 | "year-of-make": "?", 1548 | "industry": "Professional Coaching and EdTech", 1549 | "city": "Berlin", 1550 | "number-of-employees": "250-499", 1551 | "country": "Germany", 1552 | "linkedin": "https://www.linkedin.com/company/coachhub/jobs" 1553 | }, 1554 | { 1555 | "name": "Beekeeper AG", 1556 | "year-of-make": "?", 1557 | "industry": "Internal Communication and Workplace Collaboration", 1558 | "city": "Berlin", 1559 | "number-of-employees": "250-499", 1560 | "country": "Germany", 1561 | "linkedin": "https://www.linkedin.com/company/beekeeper/jobs" 1562 | }, 1563 | { 1564 | "name": "unu GmbH", 1565 | "year-of-make": "?", 1566 | "industry": "Electric Mobility and Urban Mobility", 1567 | "city": "Berlin", 1568 | "number-of-employees": "50-99", 1569 | "country": "Germany", 1570 | "linkedin": "https://www.linkedin.com/company/unu-ug/jobs" 1571 | }, 1572 | { 1573 | "name": "wefox Germany GmbH", 1574 | "year-of-make": "?", 1575 | "industry": "InsurTech and Digital Insurance", 1576 | "city": "Berlin", 1577 | "number-of-employees": "250-499", 1578 | "country": "Germany", 1579 | "linkedin": "https://www.linkedin.com/company/wefox/jobs" 1580 | }, 1581 | { 1582 | "name": "Styla GmbH", 1583 | "year-of-make": "?", 1584 | "industry": "Content Commerce and Digital Marketing", 1585 | "city": "Berlin", 1586 | "number-of-employees": "50-99", 1587 | "country": "Germany", 1588 | "linkedin": "https://www.linkedin.com/company/styla-com/jobs" 1589 | }, 1590 | { 1591 | "name": "Camunda Services GmbH", 1592 | "year-of-make": "?", 1593 | "industry": "Business Process Automation and Workflow Management", 1594 | "city": "Berlin", 1595 | "number-of-employees": "250-499", 1596 | "country": "Germany", 1597 | "linkedin": "https://www.linkedin.com/company/camunda/jobs" 1598 | }, 1599 | { 1600 | "name": "Airbus Group", 1601 | "year-of-make": "1970", 1602 | "industry": "Aerospace and Defense", 1603 | "city": "Hamburg", 1604 | "number-of-employees": "10000", 1605 | "country": "Germany", 1606 | "linkedin": "https://www.linkedin.com/showcase/airbus/jobs" 1607 | }, 1608 | { 1609 | "name": "Montblanc International GmbH", 1610 | "year-of-make": "1906", 1611 | "industry": "Luxury Goods and Writing Instruments", 1612 | "city": "Hamburg", 1613 | "number-of-employees": "1000-4999", 1614 | "country": "Germany", 1615 | "linkedin": "https://www.linkedin.com/company/montblanc/jobs" 1616 | }, 1617 | { 1618 | "name": "OTTO GmbH & Co. KG", 1619 | "year-of-make": "1949", 1620 | "industry": "E-commerce and Retail", 1621 | "city": "Hamburg", 1622 | "number-of-employees": "5000-9999", 1623 | "country": "Germany", 1624 | "linkedin": "https://www.linkedin.com/company/otto/jobs" 1625 | }, 1626 | { 1627 | "name": "Tchibo GmbH", 1628 | "year-of-make": "1949", 1629 | "industry": "Retail and Consumer Goods", 1630 | "city": "Hamburg", 1631 | "number-of-employees": "10000", 1632 | "country": "Germany", 1633 | "linkedin": "https://www.linkedin.com/company/tchibo/jobs" 1634 | }, 1635 | { 1636 | "name": "Jungheinrich AG", 1637 | "year-of-make": "1953", 1638 | "industry": "Material Handling and Intralogistics", 1639 | "city": "Hamburg", 1640 | "number-of-employees": "10000", 1641 | "country": "Germany", 1642 | "linkedin": "https://www.linkedin.com/company/jungheinrich-ag/jobs" 1643 | }, 1644 | { 1645 | "name": "Aurubis AG", 1646 | "year-of-make": "1866", 1647 | "industry": "Metal Processing and Recycling", 1648 | "city": "Hamburg", 1649 | "number-of-employees": "5000-9999", 1650 | "country": "Germany", 1651 | "linkedin": "https://www.linkedin.com/company/aurubis/jobs" 1652 | }, 1653 | { 1654 | "name": "Gruner + Jahr GmbH", 1655 | "year-of-make": "1948", 1656 | "industry": "Media and Publishing", 1657 | "city": "Hamburg", 1658 | "number-of-employees": "1000-4999", 1659 | "country": "Germany", 1660 | "linkedin": "https://www.linkedin.com/company/gruner-jahr-gmbh/jobs" 1661 | }, 1662 | { 1663 | "name": "Eppendorf AG", 1664 | "year-of-make": "1945", 1665 | "industry": "Biotechnology and Life Sciences", 1666 | "city": "Hamburg", 1667 | "number-of-employees": "1000-4999", 1668 | "country": "Germany", 1669 | "linkedin": "https://www.linkedin.com/company/eppendorf/jobs" 1670 | }, 1671 | { 1672 | "name": "Körber AG", 1673 | "year-of-make": "2018", 1674 | "industry": "Supply Chain Solutions and Technology", 1675 | "city": "Hamburg", 1676 | "number-of-employees": "5000-9999", 1677 | "country": "Germany", 1678 | "linkedin": "https://www.linkedin.com/company/k%C3%B6rber/jobs" 1679 | }, 1680 | { 1681 | "name": "DESY (Deutsches Elektronen-Synchrotron)", 1682 | "year-of-make": "1959", 1683 | "industry": "Research and Particle Physics", 1684 | "city": "Hamburg", 1685 | "number-of-employees": "1000-4999", 1686 | "country": "Germany", 1687 | "linkedin": "https://www.linkedin.com/company/desy/jobs" 1688 | }, 1689 | { 1690 | "name": "Hapag-Lloyd AG", 1691 | "year-of-make": "1970", 1692 | "industry": "Shipping and Logistics", 1693 | "city": "Hamburg", 1694 | "number-of-employees": "5000-9999", 1695 | "country": "Germany", 1696 | "linkedin": "https://www.linkedin.com/company/hapag-lloyd-ag/jobs" 1697 | }, 1698 | { 1699 | "name": "Hermes Germany GmbH", 1700 | "year-of-make": "1972", 1701 | "industry": "E-commerce and Logistics", 1702 | "city": "Hamburg", 1703 | "number-of-employees": "1000-4999", 1704 | "country": "Germany", 1705 | "linkedin": "https://www.linkedin.com/company/hermes/jobs" 1706 | }, 1707 | { 1708 | "name": "XING SE", 1709 | "year-of-make": "2003", 1710 | "industry": "Professional Networking and Career Services", 1711 | "city": "Hamburg", 1712 | "number-of-employees": "1000-4999", 1713 | "country": "Germany", 1714 | "linkedin": "https://www.linkedin.com/company/xing-marketing-solutions-gmbh/jobs" 1715 | }, 1716 | { 1717 | "name": "Haspa Finanzholding", 1718 | "year-of-make": "1827", 1719 | "industry": "Banking and Financial Services", 1720 | "city": "Hamburg", 1721 | "number-of-employees": "1000-4999", 1722 | "country": "Germany", 1723 | "linkedin": "https://www.linkedin.com/company/hamburger-sparkasse/jobs" 1724 | }, 1725 | { 1726 | "name": "Gerresheimer AG", 1727 | "year-of-make": "1864", 1728 | "industry": "Healthcare", 1729 | "city": "Düsseldorf", 1730 | "number-of-employees": "10000", 1731 | "country": "Germany", 1732 | "linkedin": "https://www.linkedin.com/company/gerresheimer/jobs" 1733 | }, 1734 | { 1735 | "name": "C&A Mode GmbH & Co. KG", 1736 | "year-of-make": "1841", 1737 | "industry": "Retail", 1738 | "city": "Düsseldorf", 1739 | "number-of-employees": "35000", 1740 | "country": "Germany", 1741 | "linkedin": "https://www.linkedin.com/company/c-&-a-mode-gmbh-&-co.-kg/jobs" 1742 | }, 1743 | { 1744 | "name": "GEA Group AG", 1745 | "year-of-make": "1881", 1746 | "industry": "Industrial Equipment", 1747 | "city": "Düsseldorf", 1748 | "number-of-employees": "19000", 1749 | "country": "Germany", 1750 | "linkedin": "https://www.linkedin.com/company/geagroup/jobs" 1751 | }, 1752 | { 1753 | "name": "Trivago GmbH", 1754 | "year-of-make": "2005", 1755 | "industry": "Online Travel", 1756 | "city": "Düsseldorf", 1757 | "number-of-employees": "1400", 1758 | "country": "Germany", 1759 | "linkedin": "https://www.linkedin.com/company/trivagonv/jobs" 1760 | }, 1761 | { 1762 | "name": "Klöckner & Co SE", 1763 | "year-of-make": "1906", 1764 | "industry": "Metal Processing", 1765 | "city": "Düsseldorf", 1766 | "number-of-employees": "8000", 1767 | "country": "Germany", 1768 | "linkedin": "https://www.linkedin.com/company/kl%C3%B6ckner-&-co-se/jobs" 1769 | }, 1770 | { 1771 | "name": "Qiagen GmbH", 1772 | "year-of-make": "1984", 1773 | "industry": "Biotechnology", 1774 | "city": "Düsseldorf", 1775 | "number-of-employees": "5600", 1776 | "country": "Germany", 1777 | "linkedin": "https://www.linkedin.com/company/qiagen/jobs" 1778 | }, 1779 | { 1780 | "name": "SICK AG", 1781 | "year-of-make": "1946", 1782 | "industry": "Sensors", 1783 | "city": "Düsseldorf", 1784 | "number-of-employees": "10000", 1785 | "country": "Germany", 1786 | "linkedin": "https://www.linkedin.com/company/sicksensorintelligence/jobs" 1787 | }, 1788 | { 1789 | "name": "Talanx AG", 1790 | "year-of-make": "1903", 1791 | "industry": "Insurance", 1792 | "city": "Düsseldorf", 1793 | "number-of-employees": "23000", 1794 | "country": "Germany", 1795 | "linkedin": "https://www.linkedin.com/company/talanx/jobs" 1796 | }, 1797 | { 1798 | "name": "Amprion GmbH", 1799 | "year-of-make": "2009", 1800 | "industry": "Energy", 1801 | "city": "Düsseldorf", 1802 | "number-of-employees": "1700", 1803 | "country": "Germany", 1804 | "linkedin": "https://www.linkedin.com/company/amprion-gmbh/jobs" 1805 | }, 1806 | { 1807 | "name": "AWISTA Gesellschaft für Abfallwirtschaft und Stadtreinigung mbH", 1808 | "year-of-make": "1989", 1809 | "industry": "Waste Management", 1810 | "city": "Düsseldorf", 1811 | "number-of-employees": "1800", 1812 | "country": "Germany", 1813 | "linkedin": "https://www.linkedin.com/company/awista-gesellschaft-f%C3%A3%C2%BCr-abfallwirtschaft-und-stadtreinigung-mbh/jobs" 1814 | }, 1815 | { 1816 | "name": "GESCO AG", 1817 | "year-of-make": "1977", 1818 | "industry": "Industrial Services", 1819 | "city": "Düsseldorf", 1820 | "number-of-employees": "1100", 1821 | "country": "Germany", 1822 | "linkedin": "https://www.linkedin.com/company/gesco/jobs" 1823 | }, 1824 | { 1825 | "name": "RHEINPFALZ Verlag und Druckerei GmbH & Co. KG", 1826 | "year-of-make": "1946", 1827 | "industry": "Media", 1828 | "city": "Düsseldorf", 1829 | "number-of-employees": "1300", 1830 | "country": "Germany", 1831 | "linkedin": "https://www.linkedin.com/company/rheinpfalz-verlag-und-druckerei-gmbh-&-co.-kg/jobs" 1832 | }, 1833 | { 1834 | "name": "Käte Ahlmann Stiftung GmbH", 1835 | "year-of-make": "1972", 1836 | "industry": "Non-profit", 1837 | "city": "Düsseldorf", 1838 | "number-of-employees": "N/A", 1839 | "country": "Germany", 1840 | "linkedin": "https://www.linkedin.com/company/eggelbusch-gmbh/jobs" 1841 | }, 1842 | { 1843 | "name": "MAN SE", 1844 | "year-of-make": "1758", 1845 | "industry": "Automotive", 1846 | "city": "Munich", 1847 | "number-of-employees": "35708", 1848 | "country": "Germany", 1849 | "linkedin": "https://www.linkedin.com/company/man-commercial-vehicles/jobs" 1850 | }, 1851 | { 1852 | "name": "HypoVereinsbank - Unicredit Bank AG", 1853 | "year-of-make": "1998", 1854 | "industry": "Banking", 1855 | "city": "Munich", 1856 | "number-of-employees": "18500", 1857 | "country": "Germany", 1858 | "linkedin": "https://www.linkedin.com/company/hypovereinsbank-unicredit-bank-ag/jobs" 1859 | }, 1860 | { 1861 | "name": "ADAC SE", 1862 | "year-of-make": "1903", 1863 | "industry": "Automotive Services", 1864 | "city": "Munich", 1865 | "number-of-employees": "10000", 1866 | "country": "Germany", 1867 | "linkedin": "https://www.linkedin.com/company/adac/jobs" 1868 | }, 1869 | { 1870 | "name": "Giesecke+Devrient GmbH", 1871 | "year-of-make": "1852", 1872 | "industry": "Security Technology", 1873 | "city": "Munich", 1874 | "number-of-employees": "11000", 1875 | "country": "Germany", 1876 | "linkedin": "https://www.linkedin.com/company/giesecke-devrient/jobs" 1877 | }, 1878 | { 1879 | "name": "Knorr-Bremse Systeme für Nutzfahrzeuge GmbH", 1880 | "year-of-make": "2002", 1881 | "industry": "Automotive", 1882 | "city": "Munich", 1883 | "number-of-employees": "1800", 1884 | "country": "Germany", 1885 | "linkedin": "https://www.linkedin.com/company/knorr-bremse-systeme-f%C3%BCr-nutzfahrzeuge-gmbh/jobs" 1886 | }, 1887 | { 1888 | "name": "Rohde & Schwarz GmbH & Co KG", 1889 | "year-of-make": "1933", 1890 | "industry": "Electronics", 1891 | "city": "Munich", 1892 | "number-of-employees": "12000", 1893 | "country": "Germany", 1894 | "linkedin": "https://www.linkedin.com/company/rohde-&-schwarz/jobs" 1895 | }, 1896 | { 1897 | "name": "Munich Airport", 1898 | "year-of-make": "1948", 1899 | "industry": "Aviation", 1900 | "city": "Munich", 1901 | "number-of-employees": "10000", 1902 | "country": "Germany", 1903 | "linkedin": "https://www.linkedin.com/company/munich-airport-international-gmbh/jobs" 1904 | }, 1905 | { 1906 | "name": "Konica Minolta Business Solutions Europe GmbH", 1907 | "year-of-make": "2006", 1908 | "industry": "Office Solutions", 1909 | "city": "Munich", 1910 | "number-of-employees": "2500", 1911 | "country": "Germany", 1912 | "linkedin": "https://www.linkedin.com/company/konica-minolta-business-solutions-europe-gmbh/jobs" 1913 | }, 1914 | { 1915 | "name": "Altran Deutschland S.A.S. & Co. KG", 1916 | "year-of-make": "1982", 1917 | "industry": "Engineering", 1918 | "city": "Munich", 1919 | "number-of-employees": "50000", 1920 | "country": "Germany", 1921 | "linkedin": "https://www.linkedin.com/company/altran/jobs" 1922 | }, 1923 | { 1924 | "name": "Metaio GmbH", 1925 | "year-of-make": "2003", 1926 | "industry": "Augmented Reality", 1927 | "city": "Munich", 1928 | "number-of-employees": "N/A", 1929 | "country": "Germany", 1930 | "linkedin": "https://www.linkedin.com/company/metaio/jobs" 1931 | }, 1932 | { 1933 | "name": "KraussMaffei Group GmbH", 1934 | "year-of-make": "1838", 1935 | "industry": "Machinery", 1936 | "city": "Munich", 1937 | "number-of-employees": "5500", 1938 | "country": "Germany", 1939 | "linkedin": "https://www.linkedin.com/company/krauss-maffei/jobs" 1940 | }, 1941 | { 1942 | "name": "The Boston Consulting Group GmbH", 1943 | "year-of-make": "1963", 1944 | "industry": "Consulting", 1945 | "city": "Munich", 1946 | "number-of-employees": "18500", 1947 | "country": "Germany", 1948 | "linkedin": "https://www.linkedin.com/company/boston-consulting-group/jobs" 1949 | }, 1950 | { 1951 | "name": "All for One Group AG", 1952 | "year-of-make": "1984", 1953 | "industry": "IT Services", 1954 | "city": "Munich", 1955 | "number-of-employees": "1700", 1956 | "country": "Germany", 1957 | "linkedin": "https://www.linkedin.com/company/all-for-one-group-se/jobs" 1958 | }, 1959 | { 1960 | "name": "BFFT GmbH", 1961 | "year-of-make": "1998", 1962 | "industry": "Automotive Engineering", 1963 | "city": "Munich", 1964 | "number-of-employees": "800", 1965 | "country": "Germany", 1966 | "linkedin": "https://www.linkedin.com/company/edaggroup/jobs" 1967 | }, 1968 | { 1969 | "name": "ERGO Group AG", 1970 | "year-of-make": "1997", 1971 | "industry": "Insurance", 1972 | "city": "Munich", 1973 | "number-of-employees": "3700", 1974 | "country": "Germany", 1975 | "linkedin": "https://www.linkedin.com/company/ergo-group-ag/jobs" 1976 | }, 1977 | { 1978 | "name": "Hubert Burda Media", 1979 | "year-of-make": "1898", 1980 | "industry": "Media", 1981 | "city": "Munich", 1982 | "number-of-employees": "12500", 1983 | "country": "Germany", 1984 | "linkedin": "https://www.linkedin.com/company/hubert-burda-media/jobs" 1985 | }, 1986 | { 1987 | "name": "Dallmeier electronic GmbH & Co. KG", 1988 | "year-of-make": "1984", 1989 | "industry": "Video Surveillance", 1990 | "city": "Munich", 1991 | "number-of-employees": "1000", 1992 | "country": "Germany", 1993 | "linkedin": "https://www.linkedin.com/company/dallmeier-electronic/jobs" 1994 | }, 1995 | { 1996 | "name": "Nemetschek Group", 1997 | "year-of-make": "1963", 1998 | "industry": "Software", 1999 | "city": "Munich", 2000 | "number-of-employees": "3000", 2001 | "country": "Germany", 2002 | "linkedin": "https://www.linkedin.com/company/nemetschekgroup/jobs" 2003 | }, 2004 | { 2005 | "name": "Knauf Gips KG", 2006 | "year-of-make": "1932", 2007 | "industry": "Building Materials", 2008 | "city": "Munich", 2009 | "number-of-employees": "35000", 2010 | "country": "Germany", 2011 | "linkedin": "https://www.linkedin.com/company/knauf-gips-kg/jobs" 2012 | }, 2013 | { 2014 | "name": "ATOS IT Solutions and Services GmbH", 2015 | "year-of-make": "1997", 2016 | "industry": "IT Services", 2017 | "city": "Munich", 2018 | "number-of-employees": "100000+", 2019 | "country": "Germany", 2020 | "linkedin": "https://www.linkedin.com/company/atos-it-solutions-and-services-a-s/jobs" 2021 | }, 2022 | { 2023 | "name": "MicroNova AG", 2024 | "year-of-make": "1987", 2025 | "industry": "Automotive Electronics", 2026 | "city": "Munich", 2027 | "number-of-employees": "700", 2028 | "country": "Germany", 2029 | "linkedin": "https://www.linkedin.com/company/micronova/jobs" 2030 | }, 2031 | { 2032 | "name": "Secunet Security Networks AG", 2033 | "year-of-make": "1997", 2034 | "industry": "IT Security", 2035 | "city": "Munich", 2036 | "number-of-employees": "800", 2037 | "country": "Germany", 2038 | "linkedin": "https://www.linkedin.com/company/secunet-security-networks-ag/jobs" 2039 | }, 2040 | { 2041 | "name": "ESG Elektroniksystem- und Logistik-GmbH", 2042 | "year-of-make": "1967", 2043 | "industry": "Defense and Aviation", 2044 | "city": "Munich", 2045 | "number-of-employees": "3500", 2046 | "country": "Germany", 2047 | "linkedin": "https://www.linkedin.com/company/esg-gmbh/jobs" 2048 | }, 2049 | { 2050 | "name": "Nemak Europe GmbH", 2051 | "year-of-make": "1979", 2052 | "industry": "Automotive", 2053 | "city": "Munich", 2054 | "number-of-employees": "27000", 2055 | "country": "Germany", 2056 | "linkedin": "https://www.linkedin.com/company/nemak/jobs" 2057 | }, 2058 | { 2059 | "name": "Sandoz GmbH", 2060 | "year-of-make": "1886", 2061 | "industry": "Pharmaceuticals", 2062 | "city": "Munich", 2063 | "number-of-employees": "10000", 2064 | "country": "Germany", 2065 | "linkedin": "https://www.linkedin.com/company/sandoz/jobs" 2066 | }, 2067 | { 2068 | "name": "REWE Group", 2069 | "year-of-make": "1927", 2070 | "industry": "Retail", 2071 | "city": "Munich", 2072 | "number-of-employees": "300000+", 2073 | "country": "Germany", 2074 | "linkedin": "https://www.linkedin.com/company/rewegroup/jobs" 2075 | }, 2076 | { 2077 | "name": "KPMG AG", 2078 | "year-of-make": "1890", 2079 | "industry": "Professional Services", 2080 | "city": "Munich", 2081 | "number-of-employees": "20000", 2082 | "country": "Germany", 2083 | "linkedin": "https://www.linkedin.com/company/kpmg-deutschland/jobs" 2084 | }, 2085 | { 2086 | "name": "Unify Communications GmbH & Co. KG", 2087 | "year-of-make": "1847", 2088 | "industry": "Communications", 2089 | "city": "Munich", 2090 | "number-of-employees": "N/A", 2091 | "country": "Germany", 2092 | "linkedin": "https://www.linkedin.com/company/unify-communications-and-collaboration-gmbh-&-co.-kg-/jobs" 2093 | }, 2094 | { 2095 | "name": "Sixt SE", 2096 | "year-of-make": "1912", 2097 | "industry": "Car Rental", 2098 | "city": "Munich", 2099 | "number-of-employees": "7000", 2100 | "country": "Germany", 2101 | "linkedin": "https://www.linkedin.com/company/sixt/jobs" 2102 | }, 2103 | { 2104 | "name": "Hubert Haupt Immobilien Holding GmbH", 2105 | "year-of-make": "1957", 2106 | "industry": "Real Estate", 2107 | "city": "Munich", 2108 | "number-of-employees": "1000", 2109 | "country": "Germany", 2110 | "linkedin": "https://www.linkedin.com/company/hubert-haupt-immobilien-holding/jobs" 2111 | }, 2112 | { 2113 | "name": "Linde Material Handling GmbH", 2114 | "year-of-make": "1904", 2115 | "industry": "Material Handling", 2116 | "city": "Munich", 2117 | "number-of-employees": "12000", 2118 | "country": "Germany", 2119 | "linkedin": "https://www.linkedin.com/company/linde-material-handling/jobs" 2120 | }, 2121 | { 2122 | "name": "Santander Consumer Bank AG", 2123 | "year-of-make": "1957", 2124 | "industry": "Banking", 2125 | "city": "Munich", 2126 | "number-of-employees": "13000", 2127 | "country": "Germany", 2128 | "linkedin": "https://www.linkedin.com/company/nadia-taurino-finanziamenti/jobs" 2129 | }, 2130 | { 2131 | "name": "DELO Industrial Adhesives", 2132 | "year-of-make": "1961", 2133 | "industry": "Adhesives", 2134 | "city": "Munich", 2135 | "number-of-employees": "700", 2136 | "country": "Germany", 2137 | "linkedin": "https://de.linkedin.com/company/delo-industrial-adhesives/jobs" 2138 | }, 2139 | { 2140 | "name": "MCM Klosterfrau Vertriebsgesellschaft mbH", 2141 | "year-of-make": "1826", 2142 | "industry": "Healthcare", 2143 | "city": "Munich", 2144 | "number-of-employees": "2000", 2145 | "country": "Germany", 2146 | "linkedin": "https://www.linkedin.com/company/mcm-klosterfrau-vertriebsgesellschaft-mbh/jobs" 2147 | }, 2148 | { 2149 | "name": "Technische Universität München (TUM)", 2150 | "year-of-make": "1868", 2151 | "industry": "Education", 2152 | "city": "Munich", 2153 | "number-of-employees": "N/A", 2154 | "country": "Germany", 2155 | "linkedin": "https://www.linkedin.com/company/technische-universitat-munchen/jobs" 2156 | }, 2157 | { 2158 | "name": "DocuWare GmbH", 2159 | "year-of-make": "1988", 2160 | "industry": "Document Management", 2161 | "city": "Munich", 2162 | "number-of-employees": "400", 2163 | "country": "Germany", 2164 | "linkedin": "https://www.linkedin.com/company/docuware-corporation/jobs" 2165 | }, 2166 | { 2167 | "name": "Limbach Gruppe SE", 2168 | "year-of-make": "1997", 2169 | "industry": "Engineering", 2170 | "city": "Munich", 2171 | "number-of-employees": "1500", 2172 | "country": "Germany", 2173 | "linkedin": "https://www.linkedin.com/company/limbach-gruppe-se/jobs" 2174 | }, 2175 | { 2176 | "name": "ABALON Recruitment GmbH", 2177 | "year-of-make": "1986", 2178 | "industry": "Recruitment", 2179 | "city": "Munich", 2180 | "number-of-employees": "100", 2181 | "country": "Germany", 2182 | "linkedin": "https://www.linkedin.com/company/abalon-group/jobs" 2183 | }, 2184 | { 2185 | "name": "Flughafen München GmbH", 2186 | "year-of-make": "1948", 2187 | "industry": "Aviation", 2188 | "city": "Munich", 2189 | "number-of-employees": "10000", 2190 | "country": "Germany", 2191 | "linkedin": "https://www.linkedin.com/company/munich-airport/jobs" 2192 | }, 2193 | { 2194 | "name": "Candis GmbH", 2195 | "year-of-make": "2015", 2196 | "industry": "Software", 2197 | "city": "Berlin", 2198 | "number-of-employees": "100", 2199 | "country": "Germany", 2200 | "linkedin": "https://www.linkedin.com/company/candis-gmbh/jobs" 2201 | }, 2202 | { 2203 | "name": "OneFootball GmbH", 2204 | "year-of-make": "2008", 2205 | "industry": "Software", 2206 | "city": "Berlin", 2207 | "number-of-employees": "500", 2208 | "country": "Germany", 2209 | "linkedin": "https://www.linkedin.com/company/onefootball/jobs" 2210 | }, 2211 | { 2212 | "name": "Check24", 2213 | "year-of-make": "1999", 2214 | "industry": "Technology, Information and Internet", 2215 | "city": "Munich", 2216 | "number-of-employees": "3000", 2217 | "country": "Germany", 2218 | "linkedin": "https://www.linkedin.com/company/check24-vergleichsportal-gmbh/jobs" 2219 | }, 2220 | { 2221 | "name": "Sportradar", 2222 | "year-of-make": "2001", 2223 | "industry": "Information Services", 2224 | "city": "St. Gallen", 2225 | "number-of-employees": "3000", 2226 | "country": "Germany", 2227 | "linkedin": "https://www.linkedin.com/company/sportradar/jobs" 2228 | }, 2229 | { 2230 | "name": "Blinkist", 2231 | "year-of-make": "2012", 2232 | "industry": "E-Learning Providers", 2233 | "city": "Berlin", 2234 | "number-of-employees": "500", 2235 | "country": "Germany", 2236 | "linkedin": "https://www.linkedin.com/company/blinkist/jobs" 2237 | }, 2238 | { 2239 | "name": "MBition", 2240 | "year-of-make": "2012", 2241 | "industry": "Software Development", 2242 | "city": "Berlin", 2243 | "number-of-employees": "1000", 2244 | "country": "Germany", 2245 | "linkedin": "https://www.linkedin.com/company/mbitiongmbh/jobs" 2246 | }, 2247 | { 2248 | "name": "Trade Republic", 2249 | "year-of-make": "2014", 2250 | "industry": "Financial Services", 2251 | "city": "Berlin", 2252 | "number-of-employees": "1000", 2253 | "country": "Germany", 2254 | "linkedin": "https://www.linkedin.com/company/trade-republic/jobs" 2255 | }, 2256 | { 2257 | "name": "Holidu", 2258 | "year-of-make": "2014", 2259 | "industry": "IT Services and IT Consulting", 2260 | "city": "Munich", 2261 | "number-of-employees": "700", 2262 | "country": "Germany", 2263 | "linkedin": "https://www.linkedin.com/company/holidu/jobs" 2264 | }, 2265 | { 2266 | "name": "Taxdoo", 2267 | "year-of-make": "2016", 2268 | "industry": "IT Services and IT Consulting", 2269 | "city": "Hamburg", 2270 | "number-of-employees": "300", 2271 | "country": "Germany", 2272 | "linkedin": "https://www.linkedin.com/company/taxdoo/jobs" 2273 | }, 2274 | { 2275 | "name": "Vimcar", 2276 | "year-of-make": "2014", 2277 | "industry": "IT Services and IT Consulting", 2278 | "city": "Berlin", 2279 | "number-of-employees": "200", 2280 | "country": "Germany", 2281 | "linkedin": "https://www.linkedin.com/company/vimcar/jobs" 2282 | }, 2283 | { 2284 | "name": "DataGuard", 2285 | "year-of-make": "2018", 2286 | "industry": "IT Services and IT Consulting", 2287 | "city": "Munich", 2288 | "number-of-employees": "300", 2289 | "country": "Germany", 2290 | "linkedin": "https://www.linkedin.com/company/dataguard1/jobs" 2291 | }, 2292 | { 2293 | "name": "Alasco", 2294 | "year-of-make": "2018", 2295 | "industry": "Software Development", 2296 | "city": "Munich", 2297 | "number-of-employees": "300", 2298 | "country": "Germany", 2299 | "linkedin": "https://www.linkedin.com/company/alasco-software/jobs" 2300 | }, 2301 | { 2302 | "name": "SENSORY-MINDS GMBH", 2303 | "year-of-make": "2009", 2304 | "industry": "IT Services and IT Consulting", 2305 | "city": "Darmstadt", 2306 | "number-of-employees": "100", 2307 | "country": "Germany", 2308 | "linkedin": "https://www.linkedin.com/company/sensory-minds/jobs" 2309 | }, 2310 | { 2311 | "name": "Energy Robotics", 2312 | "year-of-make": "2019", 2313 | "industry": "Automation Machinery Manufacturing", 2314 | "city": "Darmstadt", 2315 | "number-of-employees": "100", 2316 | "country": "Germany", 2317 | "linkedin": "https://www.linkedin.com/company/energy-robotics/jobs" 2318 | }, 2319 | { 2320 | "name": "AppsFactory", 2321 | "year-of-make": "2009", 2322 | "industry": "IT Services and IT Consulting", 2323 | "city": "Leipzig", 2324 | "number-of-employees": "300", 2325 | "country": "Germany", 2326 | "linkedin": "https://www.linkedin.com/company/appsfactory/jobs" 2327 | }, 2328 | { 2329 | "name": "OWWN", 2330 | "year-of-make": "2018", 2331 | "industry": "Social Networking Platforms", 2332 | "city": "Berlin", 2333 | "number-of-employees": "50", 2334 | "country": "Germany", 2335 | "linkedin": "https://www.linkedin.com/company/owwnapp/jobs" 2336 | }, 2337 | { 2338 | "name": "Solvians", 2339 | "year-of-make": "2006", 2340 | "industry": "Information Technology & Services", 2341 | "city": "Frankfurt", 2342 | "number-of-employees": "79", 2343 | "country": "Germany", 2344 | "linkedin": "https://www.linkedin.com/company/solvians-it-solutions-gmbh/jobs" 2345 | }, 2346 | { 2347 | "name": "Babbel", 2348 | "year-of-make": "2007", 2349 | "industry": "E-Learning Providers", 2350 | "city": "Berlin", 2351 | "number-of-employees": "1300", 2352 | "country": "Germany", 2353 | "linkedin": "https://www.linkedin.com/company/babbel-com/jobs" 2354 | }, 2355 | { 2356 | "name": "Adjust", 2357 | "year-of-make": "2012", 2358 | "industry": "Advertising Services", 2359 | "city": "Berlin", 2360 | "number-of-employees": "1000", 2361 | "country": "Germany", 2362 | "linkedin": "https://www.linkedin.com/company/adjustcom/jobs" 2363 | }, 2364 | { 2365 | "name": "Gameforge", 2366 | "year-of-make": "2003", 2367 | "industry": "Computer Games", 2368 | "city": "Karlsruhe", 2369 | "number-of-employees": "400", 2370 | "country": "Germany", 2371 | "linkedin": "https://www.linkedin.com/company/gameforge/jobs" 2372 | }, 2373 | { 2374 | "name": "The unbelievable Machine Company GmbH", 2375 | "year-of-make": "2008", 2376 | "industry": "IT Services and IT Consulting", 2377 | "city": "Berlin", 2378 | "number-of-employees": "50", 2379 | "country": "Germany", 2380 | "linkedin": "https://www.linkedin.com/company/the-unbelievable-machine-company-gmbh/jobs" 2381 | }, 2382 | { 2383 | "name": "Scout24 Group", 2384 | "year-of-make": "2012", 2385 | "industry": "Technology, Information and Internet", 2386 | "city": "Munich", 2387 | "number-of-employees": "1000", 2388 | "country": "Germany", 2389 | "linkedin": "https://www.linkedin.com/company/scout24-group/jobs" 2390 | }, 2391 | { 2392 | "name": "Mercedes-Benz Leasing Deutschland", 2393 | "year-of-make": "2020", 2394 | "industry": "Financial Services", 2395 | "city": "Stuttgart", 2396 | "number-of-employees": "300", 2397 | "country": "Germany", 2398 | "linkedin": "https://www.linkedin.com/company/mercedes-benz-leasing-deutschland/jobs" 2399 | }, 2400 | { 2401 | "name": "JITpay™ Group", 2402 | "year-of-make": "2016", 2403 | "industry": "Financial Services", 2404 | "city": "Braunschweig", 2405 | "number-of-employees": "80", 2406 | "country": "Germany", 2407 | "linkedin": "https://www.linkedin.com/company/jitpay-gmbh/jobs" 2408 | }, 2409 | { 2410 | "name": "Pixida", 2411 | "year-of-make": "2008", 2412 | "industry": "Information Technology & Services", 2413 | "city": "Munich", 2414 | "number-of-employees": "200", 2415 | "country": "Germany", 2416 | "linkedin": "https://www.linkedin.com/company/pixida-gmbh/jobs/" 2417 | }, 2418 | { 2419 | "name": "Enmacc", 2420 | "year-of-make": "2016", 2421 | "industry": "Software Development", 2422 | "city": "Munich", 2423 | "number-of-employees": "200", 2424 | "country": "Germany", 2425 | "linkedin": "https://www.linkedin.com/company/enmacc/jobs/" 2426 | } 2427 | ] 2428 | --------------------------------------------------------------------------------