static descriptionValidator(input: string): any {
    const regexPattern = '^[^`~!@#$%^*+={}[]|\\:;“’<>?๐฿]*$';
    const regex = new RegExp(regexPattern);
    const test = regex.test(input);
    if (!test) {