let str_entity = {};
if(action.data.newKey != action.data.oldKey) {
for(let key in state.structure) {
if(key == action.data.oldKey) {
str_entity[action.data.newKey] = action.data.newValue;
} else {
str_entity[key] = state.structure[key];
}
}
}