I've noticed that each time I'm using Azure Logic Apps Tools for Visual Studio (v2.11.15) and perform a Save, it surrounds some of the parameters in the josn file with curly brackets.
Eg, for a webhook, "@triggerBody()"
becomes "@{triggerBody()}"
and
"@parameters('myKey')"
is updated to "@{parameters('myKey')}"
What is the difference between the two syntaxes? I've noticed a string encoding when the curly brackets are added, but is this to be expected when using braces?