@Gary Mullen-Schultz
You are having array of json and trying to extract name value as attribute to the flowfile.
Configure EvaluateJsonPath processor as below:
thename
$.[0].name
So by using above path we are navigate array and extracting name value.
Correct way of doing this is..
Use SplitJson processor
Configure processor as
$.*
Using splitjson processor we are splitting json array into individual flowfiles..
then use EvaluateJsonPath processor add new property as
thename
$.name
-
If the Answer helped to resolve your issue, Click on Accept button below to accept the answer, That would be great help to Community users to find solution quickly for these kind of issues.