module Grape::DSL::Callbacks::ClassMethods

def before_validation(&block)

coercion.
Execute the given block after `before`, but prior to validation or
def before_validation(&block)
  namespace_stackable(:before_validations, block)
end