Hi
I have a a workflow exracting data from an API. I have got almsot everything I need from the JSON but need to get as single description field. The JSON structures breaks the description into sever parts all nested within the description part. The number of parts varies by feature.
I essentially need all the text elements in the image below

When I use a JSON exposer it asks me to specificy each indexed element, but I do not know how many there will be in any given feature

I imagine there is something really obvious I am missing here
Closest I have got is adding another JSON extractor using the query:
json["fields"]["description"]["content"][*]
is giving me:
{"type":"paragraph","content":[{"type":"text","text":"This Jira ticket is for all activities related to the implementation of 365 – "},{"type":"text","text":"Office.com","marks":[{"type":"link","attrs":{"href":"http://Office.com"}}]},{"type":"text","text":" rollout."}]}
Or using:
json["fields"]["description"]["content"][*]["content"][*]["text"]
is giving me each text entry in a new row



