Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save petecheslock/b7c0fe8de4c0e68aa720d7e23160cb14 to your computer and use it in GitHub Desktop.
Save petecheslock/b7c0fe8de4c0e68aa720d7e23160cb14 to your computer and use it in GitHub Desktop.
```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