Given the following JSON:
[
{
"command": "1",
"response": [
"a",
"b",
"c"
],
"guild_id": "guild"
},
{
"command": "1",
"response": "d",
"guild_id": "guild"
},
]
How can this be converted to the following using jq?
[
{
"command": "1",
"response": "a",
"guild_id": "guild"
},
{
"command": "1",
"response": "b",
"guild_id": "guild"
},
{
"command": "1",
"response": "c",
"guild_id": "guild"
},
{
"command": "1",
"response": "d",
"guild_id": "guild"
},
]