Skip to content

Instantly share code, notes, and snippets.

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