Add a comment line to the developper code of a dashboard

Hi,
I am cloning dashboards with the developer view.
I copy the code into my c++ IDE to use the find and replace feature to change device and user.
Can I add to that code one or several header lines that will be ignored, just to comment?
Which should be the syntax for that, something like beginning the line with # or // ?
Thank you in advance

Hi @rin67630

Sadly, per the JSON standard comments are not allowed. Given that the dashboard configuration is a JSON file, we can’t support this.

As an alternative you could for example use the dashboard description, which would place it at the top of the dashboard file:

{
  "description": "Place here a dashboard description",
  "name": "dashboard tests",
   ...
}