-
Notifications
You must be signed in to change notification settings - Fork 2
Closed
Description
"C" : 1,
"params" : [
2,
{"A" : 3,
"B" : [
{
"C" : 4,
${params.1.B.0.C:} : 10,
"D" : 5,
${params}[1]['B'][0]['D'] : 11,
"E" : ["020", {"021" : "022"}],
"F" : {"023" : ["024", "025"]}
},
6
]
},
7
]
Result:
'Invalid key name: ${}. A pair of curly brackets is empty!!!'
But there is no empty pair of curly brackets.
The error is caused by an additional colon inside
${params.1.B.0.C:}
The key name 'C:' is invalid. That's all. The second part of the error message is wrong.
I miss the usual second part of the naming convention error message: Key names are limited to letters, digits and the following characters: _ + - * /