Created
July 22, 2024 14:41
-
-
Save petecheslock/b7c0fe8de4c0e68aa720d7e23160cb14 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
```mermaid | |
erDiagram | |
APPLICATION { | |
int id | |
string name | |
string description | |
} | |
ASSESSMENT_DEFINITION { | |
int id | |
string name | |
string description | |
} | |
ASSESSMENT_RATING { | |
int id | |
int application_id | |
int assessment_definition_id | |
string rating | |
} | |
APPLICATION_GROUP { | |
int id | |
string name | |
} | |
DATA_TYPE { | |
int id | |
string name | |
} | |
LOGICAL_FLOW { | |
int id | |
int source_application_id | |
int target_application_id | |
string description | |
} | |
APPLICATION ||--o{ ASSESSMENT_RATING : has | |
ASSESSMENT_DEFINITION ||--o{ ASSESSMENT_RATING : includes | |
APPLICATION_GROUP ||--o{ APPLICATION : contains | |
DATA_TYPE ||--o{ LOGICAL_FLOW : classifies | |
APPLICATION ||--o{ LOGICAL_FLOW : participates in | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment