I am using module (in Magento 1.9.3.10) that extends the default Mage/Product model by adding a new attribute named Status with a corresponding file named Status.php residing in Package\ModuleName\Model\Catalog\Product\Attribute.
The Status attribute also extends Mage_Eav_Model_Entity_Attribute_Source_Abstract.
If I try to access the REST API for products on either my development and production servers (with the required OAuth parameters), i.e http://localhost/magento/api/rest/products causes a 500 internal error whiles every other rest endpoint do not fail.
How can I include the custom attribute in the REST API without causing 500 internal errors?
NB: I am using an OAuth consumer which has been verified and I am able to fetch products IFF the custom module is uninstalled