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

FIELDTYPESHORT DESCRIPTION
id / posting_idstringUnique ID for the job, with field name depending on the endpoint.
job_titlestringFree text of the job title.
employer_namestringThe name of the employer. (This is used to find the industry of this work experience.)
employment_typeenumFull- or part-time nature of the role, if known.
posting_statusenumThe job posting status.
summarystringThe full text of the job posting.
is_internshipbooleanWhether or not the job is an internship.
is_staffingbooleanWhether or not the job was posted by a staffing/recruiting firm.
posting_datedateThe date when the job was posted.
skillsarray of stringsThe skills stated in the job posting.
certificationsarray of stringsThe certifications stated in the job posting.
urlstringThe URL for the job posting.
employment_location_typeenumThe in-person nature of the job.
locationobjectThe location for the job posting. (For schema information see location.)
salary.minfloatThe minimum stated salary.
salary.maxfloatThe maximum stated salary.
salary.periodenumThe pay period of the job.
salary.currencystringThe ISO 4217 alphabetic currency code for the salary.
shift.hours_startintegerThe start time of the shift in 0-23 hour format.
shift.hours_endintegerThe end time of the shift in 0-23 hour format.
employment_term.date_startdateThe start date of the job.
employment_term.date_enddateThe end date of the job.
employment_term.durationintegerThe duration of the job in days.
educationarray of objectsThe education requirements or preferences for the job. For schema information, see job education.
years_of_experience.minintegerThe minimum years of experience requested of candidates.
years_of_experience.maxintegerThe maximum years of experience requested of candidates.
onet_2019_codestringThe 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",
			"Medical Practices",
			"Administration of Medications",
			"Nursing",
			"Patient Advocacy",
			"Physician Patient Privilege",
			"Medical Privacy",
			"Preventive Healthcare",
			"Safety Principles",
			"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": {}
	}
}