model Company
-- classes
class Employee
attributes
name : String
salary : Integer
end
class Department
attributes
name : String
location : String
budget : Integer
end
class Project
attributes
name : String
budget : Integer
end
-- associations
association WorksIn between
Employee[*]
Department[1..*]
end
association WorksOn between
Employee[*]
Project[*]
end
association Controls between
Department[1]
Project[*]
end