// If your field is a map and you want to perform
// validation of each item in the map you must
// specify a special each: true decorator option:
import { MinLength, MaxLength } from 'class-validator';
export class Post {
@MaxLength(20, {
each: true,
})
tags: Map<string, string>;
}