This is in reference to v0.6.0.
I use active_interaction for services in lots of my projects, and recently started using this gem to enforce JSONAPI spec more easily.
When I have an ActiveInteraction instance - interaction - and pass it into jsonapi_render_errors json: interaction in my controller, I get TypeError: no implicit conversion of Symbol into Integer because it tries to sanitize the errors. However, ActiveInteraction's errors follows the same interface as ActiveRecord's errors. The first line of JSONAPI::Utils::Response::Formatters#jsonapi_format_errors would work for ActiveInteraction, except that it's explicitly checking if data is an active_record_obj?, which of course it isn't.
Would it be possible to make this not rely on whether it's an ActiveRecord object, but instead just check that it responds to the necessary methods?