Context Diagram
Domain Glossary System Context DiagramΒΆ
How to View the ER DiagramΒΆ
The Mermaid erDiagram
syntax may not render properly on this site due to limitations of the current Mermaid version.
To view the ER diagram correctly, follow these steps:
π€ Steps to View in Mermaid Live EditorΒΆ
- Open the Mermaid Live Editor.
- Copy the content below and paste it into the left-hand editor panel.
- Click the "Full screen" button in the top-right to expand the diagram.
π Diagram Code (copy this)ΒΆ
C4Context
title Context diagram for Domain Glossary System
Boundary(dgsBoundary, "Domain Glossay System Boundary") {
Person(admin, "Admin", "A user who is going to resposnible <br/> to manage organizations, <br/> users and other everything")
Person(managers, "Managers", "A user who is going to resposnible <br/> to manage projects, <br/> contexts,terms and project assignment")
Person(members, "Members", "A user who is belongs to <br/> one or many projects <br/> and know project doamin using context and terms")
System(doaminGlossarySystem, "Domain Glossary System", "Allows managers to manager <br/> glossary of doamin")
}
Rel(admin, doaminGlossarySystem, "Uses")
Rel(managers, doaminGlossarySystem, "Uses")
Rel(members, doaminGlossarySystem, "Uses")
UpdateLayoutConfig($c4ShapeInRow="2", $c4BoundaryInRow="1")