For the JSON below, I want to add/update an item to "bonuses". Is there a way I can directly put a the variable {"name": "ham", "bonus": 12} ?
{
"abilities": {
"FGI": {
"score": 10,
"mod": 1,
"bonuses": [
{
"name": "spam",
"bonus": 1
},
{
"name": "eggs",
"bonus": 1
}
]
}
}
}
NOTE: I should clarify that the "JSON" is a Python Object built from a JSON String.