Problem with define custom "_id" in "dburles:factory"?

I have problem with custom _id

Factory.define('location', Location, {
    _id: function () {
        return '001';
    },
    name: faker.address.city()
});