Source: app/data/enum/ChatRoundValidation.js

/**
 * Minimal character length in the input
 * @type {number}
 */
export const MIN_LENGTH = 3;

/**
 * Maximal character length in the input
 * @type {number}
 */
export const MAX_LENGTH = 750;