I have a json object in this structure :
{
  "a": {
    "a": "10",
    "q": "dumb text"
  },
  "b": {
    "a": "23:00",
    "q": "dumb text"
  },
  "c": {
    "a": null,
    "q": "dumb text"
  }
}And i'm looking to get an array from this object like :
[{ "a": "10", "q": "dumb text 1" }, { "a": "20", "q": "dumb text 2" },{ "a": "30", "q": "dumb text 3" }]Is there a way to achieve this result ?
