Job
Overview
Job describes a job opening. The following fields are used by our matching algorithms to assess the fit between a Candidate and a job: job_title, employer_name, skills, certifications, education. The remaining fields may be used in Job Search to filter for job postings that meet search requirements.
Schema
| FIELD | TYPE | SHORT DESCRIPTION | 
|---|---|---|
| id/posting_id | string | Unique ID for the job, with field name depending on the endpoint. | 
| job_title | string | Free text of the job title. | 
| employer_name | string | The name of the employer. (This is used to find the industry of this work experience.) | 
| employment_type | enum | Full- or part-time nature of the role, if known. | 
| posting_status | enum | The job posting status. | 
| summary | string | The full text of the job posting. | 
| is_internship | boolean | Whether or not the job is an internship. | 
| is_staffing | boolean | Whether or not the job was posted by a staffing/recruiting firm. | 
| posting_date | date | The date when the job was posted. | 
| skills | array of strings | The skills stated in the job posting. | 
| certifications | array of strings | The certifications stated in the job posting. | 
| url | string | The URL for the job posting. | 
| employment_location_type | enum | The in-person nature of the job. | 
| location | object | The location for the job posting. (For schema information see location.) | 
| salary.min | float | The minimum stated salary. | 
| salary.max | float | The maximum stated salary. | 
| salary.period | enum | The pay period of the job. | 
| salary.currency | string | The ISO 4217 alphabetic currency code for the salary. | 
| shift.hours_start | integer | The start time of the shift in 0-23 hour format. | 
| shift.hours_end | integer | The end time of the shift in 0-23 hour format. | 
| employment_term.date_start | date | The start date of the job. | 
| employment_term.date_end | date | The end date of the job. | 
| employment_term.duration | integer | The duration of the job in days. | 
| education | array of objects | The education requirements or preferences for the job. For schema information, see job education. | 
| years_of_experience.min | integer | The minimum years of experience requested of candidates. | 
| years_of_experience.max | integer | The maximum years of experience requested of candidates. | 
| onet_2019_code | string | The ONET 2019 code inferred for the job. | 
Job Example
{
	"job": {
		"posting_id": "086d880ee1cb4e3f9ab08ee6ee735199",    
		"job_title": "Nurse",
		"employer_name": "Trinity Health",
		"employment_type": "PART_TIME",
		"posting_status": "active",
    "certifications": [
      "Cardiopulmonary Resuscitation (CPR) Certification"
    ],
		"education": [
			{
				"degree_type": null,
				"level": "UNKNOWN",
				"required": false,
				"subject": null
			}
		],
		"employment_location_type": "UNKNOWN",
		"employment_term": {
      "date_start": "01/01/2025",
      "date_end": "12/31/2025",
      "duration": 365
    },
		"is_internship": false,
		"is_staffing": false,
		"location": {
			"city": "Woonsocket",
			"country": "US",
			"postal_code": null,
			"state": "RI",
			"street_address": null
		},
		"onet_2019_code": "29-1141.00",
		"posting_date": "04/10/2025",
		"salary": {
      "min": 50000,
      "max": 100000,
      "period": "ANNUAL",
      "currency": "USD"
    },
		"shift": {
      "hours_start": 8,
      "hours_end": 14
    },
    "url": "https://www.indeed.com/viewjob?jk=bdf7ba01b492bf1a",
		"years_of_experience": {
			"max": 2,
			"min": 50
		},
		"skills": [
			"Communication Skills",
			"Receptivity",
			"Medical Records",
			"Health Administration",
			"Health Care",
			"Health Insurance Portability and Accountability Act Compliance",
			"Nursing",
			"Patient Advocacy",
			"Medical Privacy",
			"Preventive Healthcare",
			"Treatment Plans"
		],
		"summary": "We are seeking a dedicated and compassionate Nurses to join our healthcare team. The ideal candidate will provide high-quality patient care, ensuring comfort and safety while adhering to medical protocols and standards. This role requires a strong commitment to patient advocacy and the ability to work collaboratively with other healthcare professionals., * Deliver direct patient care, including administering medications and treatments as prescribed.\n     * Monitor and assess patient conditions, documenting changes in medical records accurately.\n     * Collaborate with physicians and other healthcare staff to develop and implement individualized care plans.\n     * Educate patients and their families on health management, treatment plans, and preventive care.\n     * Maintain compliance with HIPAA regulations to protect patient confidentiality.\n     * Participate in ongoing training and professional development to stay current with medical practices and technologies.",
  		"custom_attributes": {}
	}
}Updated about 1 month ago