Bindbee · Schema

Department

An organizational department from a connected HRIS system.

ATSHR IntegrationHRISWorkforce

Properties

Name Type Description
id string Department ID.
name string Department name.
parent_id string Parent department ID for nested structures.
View JSON Schema on GitHub

JSON Schema

bindbee-department-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Department",
  "type": "object",
  "description": "An organizational department from a connected HRIS system.",
  "properties": {
    "id": {
      "type": "string",
      "description": "Department ID.",
      "example": "dept-abc123"
    },
    "name": {
      "type": "string",
      "description": "Department name.",
      "example": "Engineering"
    },
    "parent_id": {
      "type": "string",
      "nullable": true,
      "description": "Parent department ID for nested structures.",
      "example": null
    }
  }
}