export interface ValidationErrorInterface { name: string; errors: Array; } export interface ValidationPayloadInterface { property: string; constraints: Record; }