SmartRecruiters · Schema

CandidateListResult

Human ResourcesRecruitingTalent AcquisitionApplicant TrackingHR Technology

Properties

Name Type Description
limit integer
offset integer
totalFound integer
content array
View JSON Schema on GitHub

JSON Schema

smartrecruiters-candidatelistresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CandidateListResult",
  "title": "CandidateListResult",
  "type": "object",
  "properties": {
    "limit": {
      "type": "integer"
    },
    "offset": {
      "type": "integer"
    },
    "totalFound": {
      "type": "integer"
    },
    "content": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Candidate"
      }
    }
  }
}