Skip to content

Commit

Permalink
Add attributes to the Event class in plant uml diagram, and in the md…
Browse files Browse the repository at this point in the history
… file (#26)
  • Loading branch information
chenejac committed May 27, 2024
1 parent bfe729f commit 654543f
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
8 changes: 8 additions & 0 deletions diagrams/core.puml
Original file line number Diff line number Diff line change
Expand Up @@ -369,8 +369,16 @@

!startsub Event
class "Event" #ffffff {
name : Multilingual_String
acronym : Multilingual_String
description : Multilingual_String
dateRange : Date_Range
contacts : List<Contact_Information>
}

"Event" ..> "Date_Range"
"Event" ..> "0..*" "Contact_Information"

class "Event_Series" #ffffff {
}

Expand Down
12 changes: 12 additions & 0 deletions entities/Event.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,18 @@ Events include scientific and other conferences, workshops, seminars or any othe
It can be one particular event (for instance the [CRIS 2024](https://cris2024.eurocris.org/) conference),
or a series of events (for instance the [euroCRIS Webinar series](https://eurocris.org/eurocris-events)).

## Attributes

name : [Multilingual String](../datatypes/Multilingual_String.md)

acronym : [Multilingual String](../datatypes/Multilingual_String.md)

description : [Multilingual String](../datatypes/Multilingual_String.md)

dateRange : [Date Range](../datatypes/Date_Range.md)

contacts : List<[Contact_Information](../datatypes/Contact_Information.md)>

## Relationships

<a name="rel__has-contribution">has-contribution</a> / [has-target](../entities/Contribution_to_Event.md#user-content-rel__has-target) : An Event can have any number of [contributions](../entities/Contribution_to_Event.md) that helped it take place or arise.
Expand Down

0 comments on commit 654543f

Please sign in to comment.