{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "user_settings_response", "type": "object", "properties": { "data": { "type": "object", "properties": { "settings": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "value": { "type": "string" } } } } } }, "user": { "type": "object", "properties": { "id": { "type": "integer" }, "type": { "type": "string" }, "name": { "type": "string" } } }, "status": { "type": "object", "properties": { "code": { "type": "string", "example": "ok" } } } } }