Why does the stats API Call return an Array instead of just an object?
Example Response:
{ "statistics": [ { "total_questions": 723903, "total_unanswered": 114097, "total_answers": 2002231, "total_comments": 2838514, "total_votes": 7046950, "total_badges": 725485, "total_users": 260132, "questions_per_minute": 1.89, "answers_per_minute": 3.79, "badges_per_minute": 1.45, "api_version": { "version": "0.8", "revision": "2010.6.9.1" }, "display_name": "Stack Overflow" } ] } Instead of:
{ "statistics": { "total_questions": 723903, "total_unanswered": 114097, "total_answers": 2002231, "total_comments": 2838514, "total_votes": 7046950, "total_badges": 725485, "total_users": 260132, "questions_per_minute": 1.89, "answers_per_minute": 3.79, "badges_per_minute": 1.45, "api_version": { "version": "0.8", "revision": "2010.6.9.1" }, "display_name": "Stack Overflow" } } Is there plans to return more than one element ever?