madr icon indicating copy to clipboard operation
madr copied to clipboard

Add UML Diagramm

Open koppor opened this issue 8 months ago • 0 comments

classDiagram

class MADR {
  + Title
  + Status?
  + Date?
  + DecisionMakers?
  + Consulted?
  + Informed?
  + MoreInformation?
}

class Context
class DecisionDriver

class Option {
  + Description?
  + Pros [0..*]
  + Neutral [0..*]
  + Cons [0..*]
}

class DecisionOutcome

MADR o--> "0..1" Context
MADR o--> "*" DecisionDriver

MADR o--> "1..n" Option : considered
MADR *--> "1" DecisionOutcome
DecisionOutcome "1" --> "1" Option
DecisionOutcome *--> "0..n" Consequence
DecisionOutcome *--> "1" Confirmation
classDiagram

class MADR {
  + Title
  + Status?
  + Date?
  + DecisionMakers?
  + Consulted?
  + Informed?
  + MoreInformation?
}

class Context
class DecisionDriver

class Option {
  + Description?
  + Pros [0..*]
  + Neutral [0..*]
  + Cons [0..*]
}

class DecisionOutcome

MADR o--> "0..1" Context
MADR o--> "*" DecisionDriver

MADR o--> "1..n" Option : considered
MADR *--> "1" DecisionOutcome
DecisionOutcome "1" --> "1" Option
DecisionOutcome *--> "0..n" Consequence
DecisionOutcome *--> "1" Confirmation

koppor avatar Jun 23 '25 07:06 koppor