With the ConvertRecord processor I have converted a csv text file to a json file which looks like this:
[
{"A":1001,"B":"20170101","C":0.3},
{"A":1001,"B":"20170102","C":0.1},
.....]
I tried with evaluate Json Path to get the pathes like:
a: $.A
b: $.B
....
But I got only null values.
Im not sure do I need to split this JSON file with SplitJson processor before using evaluateJsonPath and when yes, what do I need to enter in the processor?
I tried
$.*
But it didn't work.
Or do I just need to use other JsonPath values in evaluateJsonPath processor?