-
Notifications
You must be signed in to change notification settings - Fork 2
Closed
Labels
Milestone
Description
JSON input:
{
"val01" : "string",
"val02" : 123,
"val03" : "${val01}",
"val04" : ["A", "B", "C"],
"val05" : {"A" : "${val01}", "B" : "${val02}", "C" : "${val03}"},
"val06" : true,
"val07" : false,
"val08" : null
}
JsonPreprocessor output:
{'val01': 'string',
'val02': 123,
'val03': 'string',
'val04': ['A', 'B', 'C'],
'val05': {'A': 'string', 'B': 123, 'C': '${val01}'},
'val06': True,
'val07': False,
'val08': None}
The value of val05.C is '${val01}', even in case of the value of val03 is already 'string'.
Expected: The value of val05.C is 'string'.
Metadata
Metadata
Assignees
Labels
Projects
Status
Done