entity Departments : cuid {
    name      : String(100);
    employees : Association to many Employees on employees.department = $self;
};

entity Employees : cuid {
    name       : String(100);
    department : Association to Departments;
};