I want to get a list of all model's properties that have failed validation.
For example say my model is as the one below
var OfferModel = Backbone.Model.extend({
    , defaults: function () {
        return {
            Name: '',
            FunnyUrl: "",
            StartDate: "",
            EndDate: ""
        };
    }
    , validation: {
        Name: { required: true, msg: "Name is required." },
        FunnyUrl: [{ required: true, msg: "Funny Url is required." },
                   { pattern: 'url', msg: 'Enter valid URL, eg : http://yassershaikh.com'}],        
        StartDate: { required: true, fn: 'validateStartDate' },
        EndDate: { required: false, fn: 'validateEndDate' }
    }
});
My model contains too many properties I have kept only few to explain my problem better.
So say in my model if Name and FunnyUrl are not filled, I want a list of these properties name like 
- Name
- FunnyList
I wanted the list of properties name that failed validation.
Please advice.
