I’m having trouble modifying a ticket description using an ADF table structure through the REST API. When I try to send my request, I keep getting an error saying “Operation value must be a string”. I’m not sure what’s going wrong since the ADF format seems correct to me.
{
"fields": {
"description": {
"version": 1,
"type": "doc",
"content": [
{
"type": "table",
"attrs": {
"isNumberColumnEnabled": false,
"layout": "default"
},
"content": [
{
"type": "tableRow",
"content": [
{
"type": "tableCell",
"attrs": {},
"content": [
{
"type": "paragraph",
"content": [
{
"type": "text",
"text": "First row, first column"
}
]
}
]
},
{
"type": "tableCell",
"attrs": {},
"content": [
{
"type": "paragraph",
"content": [
{
"type": "text",
"text": "First row, second column"
}
]
}
]
}
]
}
]
}
]
}
}
}
I’m working with Jira Cloud and trying to use the REST API to achieve this. Any ideas what might be causing this issue?