objectid
ObjectId is a 12-byte identifier used by MongoDB as the default value for the _id field of documents. It is typically represented as a 24-character hexadecimal string and is designed to be unique within a deployment while also encoding creation time information.
The 12 bytes are arranged in three parts: a 4-byte Unix timestamp (in seconds since the epoch),
ObjectIds can be generated on the client side or by the server, allowing documents to be created
In MongoDB, the _id field is indexed by default, making ObjectId an efficient and unique primary key