The “_v” field in Mongoose is the versionKey is a property set on each document when first created by Mongoose. This key-value contains the internal revision of the document. The name of this document property is configurable. So the default is __v.
The application you can configure as follows:-
new Schema({..}, { versionKey: '_somethingElse' })