Skip to content

Parameter inside dictionary not resolved #79

@HolQue

Description

@HolQue

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

Projects

Status

Done

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions