{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "user_settings_update_request", "type": "object", "properties": { "settings": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "value": { "type": "string", "nullable": true, "description": "if value is null or empty string then setting will be removed" } } } } } }