{
"company": "Corndel",
"department": {
"name": "Software Engineering",
"employees": [
{
"name": "John Doe",
"position": "PDE",
},
{
"name": "Jane Smith",
"position": "Software Developer",
}
]
}
}
erDiagram
COMPANY {
string companyName
}
DEPARTMENT {
string departmentName
}
EMPLOYEE {
string employeeName
string position
}
COMPANY ||--|| DEPARTMENT : has
DEPARTMENT ||--o{ EMPLOYEE : includes