I want to force the user not to send a property in JSON string if it is null, even if it is nullable.
Basically:
Data { "NullableVariable": "Nullable Value" }
Correct.
Data { }
Correct.
Data { "NullableVariable": null }
Incorrect.
Is there a way to achieve this?