Double quotes dilemma in JSON validation, when variable sometimes null

Hi, everyone!

I’m trying to make api post request with variable. Sometimes variable is null, and sometimes it has value.
“UpdatedYT”: “{{updated}}”
I can’t figure out what I should do with double quotes.
I can’t remove quotes, because Wappler doesn’t allow to save it (cause it wouldn’t be valid json).
And I can’t work with quotes, because “Задачи/UpdatedYT”: “null” isn’t vaild either and because of that I get bad response.

So, problem solved. I thought it was about how Wappler validates json data in post api request. Turned out, I was paste null in the variable in a wrong way.
I was write it as null so Wappler read it like regular text and add double qoutes. And it causes the error.
When I write it as {{null}}, it all became working well.
image