← Entity Types

Employee

Represents an individual employee within the organization, including their role, department, reporting structure, location, and hire date.

Display label: name

Schema v1 · 11ae277a-1db9-480e-b5f5-4e841655a3ba

Properties

Name Type Required Description
id integer required Unique identifier for the employee.
name string required Full name of the employee.
title string required Job title of the employee (e.g., CEO, CTO, CFO).
department_id string optional Reference to the department the employee belongs to. May be null if not assigned.
manager_id integer optional Reference to the employee ID of this employee's manager. Null for top-level employees.
location string required Office location or city where the employee is based.
hire_date date required The date the employee was hired.

Danger Zone