I have the following problem:
I want to create a document with a settings subdocument.
These settings can be updated later and filled with "real" values.
Should the settings that are left empty at creation, be filled with an empty string:
"settings": {
"logo": "",
"background": "",
"color": "",
"active": false
},
filled with null:
"settings": {
"logo": null,
"background": null,
"color": null,
"active": false
},
or completely left out:
"settings": {
"active": false
},