|
ENTITY Project; id : STRING; name : STRING; description : OPTIONAL STRING; responsible_organizations : SET [0:?] OF Organization; planned_start_date : OPTIONAL date_or_event; planned_end_date : OPTIONAL date_or_event; actual_start_date : OPTIONAL date_or_date_time_select; actual_end_date : OPTIONAL date_or_date_time_select; END_ENTITY; -- Project |
Entity data types and their attributesProjectid: STRING; name: STRING; (OPT) description: STRING; responsible_organizations: SET [0:?] OF Organization; (OPT) planned_start_date: date_or_event; (OPT) planned_end_date: date_or_event; (OPT) actual_start_date: date_or_date_time_select; (OPT) actual_end_date: date_or_date_time_select; |
Global rules for this entity data type- |