Variable RoleConfigConst

RoleConfig: {
    ABS_PARTICIPANT_MAXIMUM: 100;
    ABS_PARTICIPANT_MINIMUM: 1;
    DEFAULT_VALUE_MAX_LENGTH: 30;
    DESCRIPTION_MAX_LENGTH: 240;
    NAME_MAX_LENGTH: 30;
} = ...

Type declaration

  • ReadonlyABS_PARTICIPANT_MAXIMUM: 100

    The absolute maximum number of participants allowed for a role.

    This is 100 because a role cannot have more than 100 participants. Only applicable to roles that require participants.

    TODO: Enforce this limit in actual code.

  • ReadonlyABS_PARTICIPANT_MINIMUM: 1

    The absolute minimum number of participants required for a role.

    This is always 1 because a role must have at least one participant. Only applicable to roles that require participants.

    TODO: Bind the actual minimum number of participants to this value.

  • ReadonlyDEFAULT_VALUE_MAX_LENGTH: 30
  • ReadonlyDESCRIPTION_MAX_LENGTH: 240
  • ReadonlyNAME_MAX_LENGTH: 30