For instance:
{
"Sql2005 orLower": false,
"OutputPath": "C:\\"
}
If I try use the first property like this:
{{ Sql2005 orLower }}
It errors out, even though that's valid JSON and Javascript? I tried putting a single quote around it but it doesn't like it, what is the solution for this?
You need to use the literal reference syntax i.e. {{[foo bar]}} and {{[foo bar]/expression}} if you are trying to access {"foo bar": "baz"} or {"foo bar": {expression: "baz"}}
Most helpful comment
You need to use the literal reference syntax i.e.
{{[foo bar]}}and{{[foo bar]/expression}}if you are trying to access{"foo bar": "baz"}or{"foo bar": {expression: "baz"}}