I've asked this before, but people just want to label this a duplicate instead of answering it.
Looking for a simple answer here. Can the below be done or not?
I have a huge schema that I inherited. It has an array of objects and I am targeting an array of objects nested within that. cssClass is what I'm trying to update. Here is the schema
board: {
"lists": [
{ "id": 12,
"cards": [
{ "id": 123,
"cssClass": "default"
},
{ "id": 124,
"cssClass": "default"
}
]
}
]
}