Does MongoDB have a naming convention for collection and field naming?

Hi @DhammikaMare,

Welcome to MongoDB community.

We do not have any specific convention however we do have naming limitations and antipattern:
https://docs.mongodb.com/manual/reference/limits/#naming-restrictions

Having said that, internally you might notice that we use a known js convention of camle casing any word starting from the second word:

thisIsMyField : ...

Best
Pavel

3 Likes