const newFrontAttributes = frontAttributes.map((item: IFrontAttribute) => {
return Object.entries(item).reduce((acc: Partial<IFrontAttribute>, [key, value]: ??????) => {
acc[key] = { ...value, ...validate(value.value) };
return acc;
}, {});
});