My automation should remove a value from fix versions when a label is changed. The trigger works fine but I can't get the correct syntax to remove a value from the fixVersions field using the Edit Issue action.
I'm getting the error: "Error while parsing additional fields. Not valid JSON."
In the "Additional Fields" box I've tried a few variations of json:
{
"update": {
"fixVersions": [
{
"remove": [{version.asJsonObjectArray("check")}]
}
]
}
}and
{
"update": {
"fixVersions": [
{
"remove": [{"name":"check"}]
}
]
}
} 