ValueInput stores the current input value as a any (any JS value) and contains a path value to identify the position in the current context.
ValueInput
input
any
path
path is an array of either string values (field names of an object) or number values (index inside an array).
string
number
The input JavaScript value. It can be any value of any type.
When decoders traverse an array or object value, they will pass only the currently inspected element to the next decoder and not the source value.
The current path for this value input.
ValueInput
stores the currentinput
value as aany
(any JS value) and contains apath
value to identify the position in the current context.path
is an array of eitherstring
values (field names of an object) ornumber
values (index inside an array).