{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ColumnInput", "title": "ColumnInput", "type": "object", "required": [ "name", "type" ], "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "required": { "type": "boolean", "default": false }, "defaultValue": { "type": "string" }, "options": { "type": "array", "items": { "type": "string" } } } }