Bindbee · Schema
Employee
A normalized employee record from a connected HRIS system.
ATSHR IntegrationHRISWorkforce
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Bindbee employee ID. |
| first_name | string | Employee first name. |
| last_name | string | Employee last name. |
| string | Employee work email. | |
| job_title | string | Job title. |
| department | string | Department name. |
| employment_status | string | Employment status. |
| start_date | string | Employment start date. |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Employee",
"type": "object",
"description": "A normalized employee record from a connected HRIS system.",
"properties": {
"id": {
"type": "string",
"description": "Bindbee employee ID.",
"example": "emp-abc123"
},
"first_name": {
"type": "string",
"description": "Employee first name.",
"example": "Jane"
},
"last_name": {
"type": "string",
"description": "Employee last name.",
"example": "Smith"
},
"email": {
"type": "string",
"description": "Employee work email.",
"example": "[email protected]"
},
"job_title": {
"type": "string",
"description": "Job title.",
"example": "Software Engineer"
},
"department": {
"type": "string",
"description": "Department name.",
"example": "Engineering"
},
"employment_status": {
"type": "string",
"description": "Employment status.",
"enum": [
"active",
"inactive",
"terminated"
],
"example": "active"
},
"start_date": {
"type": "string",
"format": "date",
"description": "Employment start date.",
"example": "2022-03-15"
}
}
}