const results = []

for (const item of items[0].json["users"]) {

      results.push({
        json: item
      })
    
}

return results;