Bindbee · Schema

CandidatesResponse

List of candidates.

ATSHR IntegrationHRISWorkforce

Properties

Name Type Description
data array Array of candidate records.
View JSON Schema on GitHub

JSON Schema

bindbee-candidates-response-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CandidatesResponse",
  "type": "object",
  "description": "List of candidates.",
  "properties": {
    "data": {
      "type": "array",
      "description": "Array of candidate records.",
      "items": {
        "$ref": "#/components/schemas/Candidate"
      }
    }
  }
}