module Grape::DSL::Callbacks::ClassMethods

def after_validation(&block)

any endpoint code.
Execute the given block after validations and coercions, but before
def after_validation(&block)
  namespace_stackable(:after_validations, block)
end