Indeed · Schema

CandidateList

A paginated list of candidates.

CareersEmploymentHiringJob SearchJobsRecruiting

Properties

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

JSON Schema

indeed-candidatelist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CandidateList",
  "title": "CandidateList",
  "type": "object",
  "description": "A paginated list of candidates.",
  "properties": {
    "candidates": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Candidate"
      },
      "example": []
    },
    "totalCount": {
      "type": "integer",
      "description": "Total number of candidates matching the query.",
      "example": 42
    },
    "pageInfo": {
      "$ref": "#/components/schemas/PageInfo"
    }
  }
}