freshworks · Schema
SubDepartment
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | Unique ID of the sub-department. |
| name | string | Name of the sub-department. |
| department_id | integer | ID of the parent department. |
| created_at | string | Timestamp when created. |
| updated_at | string | Timestamp when last updated. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SubDepartment",
"title": "SubDepartment",
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "Unique ID of the sub-department."
},
"name": {
"type": "string",
"description": "Name of the sub-department."
},
"department_id": {
"type": "integer",
"description": "ID of the parent department."
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "Timestamp when created."
},
"updated_at": {
"type": "string",
"format": "date-time",
"description": "Timestamp when last updated."
}
}
}