Although JSON technically allows duplicate keys, using them is at best confusing.
Most JSON parsers will ignore all but the last value for a given key.
It’s generally best to ensure that each key in a JSON object is unique.
If your project is a rare one that intentionally goes against standard conventions for JSON, you can turn off this rule.
You might consider using Flint disable comments and/or configuration file disables for those specific situations instead of completely disabling this rule.