const makeRemovedNode = (value, key) => ({
  type: 'removed',
  key,
  children: _.isObject(value) ? _.map(value, makeRemovedNode) : [],
});