LinkedIn Job Postings Dataset
A Comprehensive Dataset of Job Postings and Companies on LinkedIn
@kaggle.rajatraj0502_linkedin_job_2023
A Comprehensive Dataset of Job Postings and Companies on LinkedIn
@kaggle.rajatraj0502_linkedin_job_2023
This dataset contains information about job postings on LinkedIn. The data is divided into several files, each containing different aspects of the job postings:
job_postings.csv: This file contains detailed information about each job posting, including the job title, description, salary, work type, location, and more.companies.csv: This file contains detailed information about each company that posted a job, including the company name, website, description, size, location, and more.company_industries.csv: This file contains the industries associated with each company.company_specialities.csv: This file contains the specialties associated with each company.employee_counts.csv: This file contains the employee and follower counts for each company.benefits.csv: This file contains the benefits associated with each job.job_industries.csv: This file contains the industries associated with each job.job_skills.csv: This file contains the skills associated with each job.This dataset can be used for various purposes such as:
This dataset was collected from LinkedIn. Please note that the data may be subject to LinkedIn's terms of use.
This dataset is released under the Open Database License (ODbL).
CREATE TABLE benefits (
"job_id" BIGINT,
"inferred" BIGINT,
"type" VARCHAR
);CREATE TABLE companies (
"company_id" BIGINT,
"name" VARCHAR,
"description" VARCHAR,
"company_size" DOUBLE,
"state" VARCHAR,
"country" VARCHAR,
"city" VARCHAR,
"zip_code" VARCHAR,
"address" VARCHAR,
"url" VARCHAR
);CREATE TABLE company_industries (
"company_id" BIGINT,
"industry" VARCHAR
);CREATE TABLE company_specialities (
"company_id" BIGINT,
"speciality" VARCHAR
);CREATE TABLE employee_counts (
"company_id" BIGINT,
"employee_count" BIGINT,
"follower_count" BIGINT,
"time_recorded" DOUBLE
);CREATE TABLE job_industries (
"job_id" BIGINT,
"industry_id" BIGINT
);CREATE TABLE job_postings (
"job_id" BIGINT,
"company_id" DOUBLE,
"title" VARCHAR,
"description" VARCHAR,
"max_salary" DOUBLE,
"med_salary" DOUBLE,
"min_salary" DOUBLE,
"pay_period" VARCHAR,
"formatted_work_type" VARCHAR,
"location" VARCHAR,
"applies" DOUBLE,
"original_listed_time" DOUBLE,
"remote_allowed" DOUBLE,
"views" DOUBLE,
"job_posting_url" VARCHAR,
"application_url" VARCHAR,
"application_type" VARCHAR,
"expiry" DOUBLE,
"closed_time" DOUBLE,
"formatted_experience_level" VARCHAR,
"skills_desc" VARCHAR,
"listed_time" DOUBLE,
"posting_domain" VARCHAR,
"sponsored" BIGINT,
"work_type" VARCHAR,
"currency" VARCHAR,
"compensation_type" VARCHAR
);CREATE TABLE job_skills (
"job_id" BIGINT,
"skill_abr" VARCHAR
);Anyone who has the link will be able to view this.