Bindbee · Schema

DepartmentsResponse

List of departments.

ATSHR IntegrationHRISWorkforce

Properties

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

JSON Schema

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