Bindbee · Schema

EmployeesResponse

Paginated list of employee records.

ATSHR IntegrationHRISWorkforce

Properties

Name Type Description
data array Array of employee records.
next_cursor string Cursor for next page.
has_more boolean Whether more records exist.
View JSON Schema on GitHub

JSON Schema

bindbee-employees-response-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "EmployeesResponse",
  "type": "object",
  "description": "Paginated list of employee records.",
  "properties": {
    "data": {
      "type": "array",
      "description": "Array of employee records.",
      "items": {
        "$ref": "#/components/schemas/Employee"
      }
    },
    "next_cursor": {
      "type": "string",
      "description": "Cursor for next page.",
      "example": "cursor-xyz"
    },
    "has_more": {
      "type": "boolean",
      "description": "Whether more records exist.",
      "example": true
    }
  }
}