class Grape::Validations::Validators::ValuesValidator

def required_for_root_scope?

def required_for_root_scope?
  return false unless @required
  scope = @scope
  scope = scope.parent while scope.lateral?
  scope.root?
end