{ "type": "object", "description": "SettingObject", "additionalProperties": false, "required": ["id", "created_at", "updated_at", "name", "value"], "properties": { "id": { "type": "integer", "minimum": 1 }, "created_at": { "type": "integer", "minimum": 1, "description": "Created Unix time with milliseconds" }, "updated_at": { "type": "integer", "minimum": 1, "description": "Updated Unix time with milliseconds" }, "name": { "type": "string", "minLength": 2, "maxLength": 100 }, "description": { "type": "string", "minLength": 0, "maxLength": 100 }, "value": { "oneOf": [ { "type": "array" }, { "type": "boolean" }, { "type": "object" }, { "type": "integer" }, { "type": "string" } ] } } }