Properties
| Name | Type | Description |
|---|---|---|
| _id | string | Unique identifier of the department. |
| name | string | Name of the department. |
| managerId | string | ID of the department manager. |
| parentId | string | ID of the parent department if hierarchical. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/absence-io/refs/heads/main/json-schema/department-schema.json",
"title": "Department",
"description": "An organizational department.",
"type": "object",
"properties": {
"_id": {
"type": "string",
"description": "Unique identifier of the department.",
"example": "500999"
},
"name": {
"type": "string",
"description": "Name of the department.",
"example": "Engineering"
},
"managerId": {
"type": "string",
"description": "ID of the department manager.",
"example": "500456"
},
"parentId": {
"type": "string",
"description": "ID of the parent department if hierarchical.",
"example": "500000"
}
}
}