Indeed · Schema

JobPostingList

A paginated list of job postings.

CareersEmploymentHiringJob SearchJobsRecruiting

Properties

Name Type Description
jobPostings array
totalCount integer Total number of job postings matching the query.
pageInfo object
View JSON Schema on GitHub

JSON Schema

indeed-jobpostinglist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/JobPostingList",
  "title": "JobPostingList",
  "type": "object",
  "description": "A paginated list of job postings.",
  "properties": {
    "jobPostings": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/JobPosting"
      },
      "example": []
    },
    "totalCount": {
      "type": "integer",
      "description": "Total number of job postings matching the query.",
      "example": 10
    },
    "pageInfo": {
      "$ref": "#/components/schemas/PageInfo"
    }
  }
}