I'm developing a web api for common CRUD operations (entities like Products, Categories) and I want to know pro/cons to suppress null properties and what should I take care choosing to ignore or not ignore these fields.
Example:
{
"name": "Product A",
"description": null
}
or
{
"name": "Product A"
}