Suppose you map this to datasource then
>>>
When jsonData.status === “available” then you can get jsonData.items
jsonData.items is an array. Therefore you need to convert to Json with
const myjsonstring = JSON.stringify(jsonData.items)
if you map with microflow, you should return to object anyway. and this will be an array items.
hope this help