I have also user this:-
var lodash = require("lodash.min.js");
if (event.request.payload.resource) {
lodash._.each(event.request.payload.resource, function( record ) {
if (record.name.length > 15) {
throw 'annual_revenue must be > 0';
}
});
}
Still wont work