Change_column_value with money or numbers

Hello,

I am trying to update a single money column (but also an number column). I am struggling to find the correct syntax and the docs do not have enough information to troubleshoot.

mutation {
change_column_value(
board_id:1,
item_id:2,
column_id: size_____max,
value: “{"WHAT-GOES-HERE?": "2.00"}”)
{id}}

I have tried, value, float, number, integer, money … All result in the same error message

{
“error_code”: “ColumnValueException”,
“status_code”: 200,
“error_message”: “invalid value, please check our API documentation for the correct data structure for this column. https://api.developer.monday.com/docs/change-column-values”,
“error_data”: {
“column_value”: “{"value"=>"2.00"}”,
“column_type”: “NumericColumn”
}
}

Thank you.

Did you ever find your answer?