{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SchemaFieldInput", "title": "SchemaFieldInput", "type": "object", "description": "Input for creating a schema field", "required": [ "name", "display_name", "type" ], "properties": { "name": { "type": "string", "description": "Field name" }, "display_name": { "type": "string", "description": "Human-readable display name" }, "type": { "type": "string", "description": "Data type of the field", "enum": [ "string", "number", "boolean", "timestamp" ] }, "description": { "type": "string", "description": "Description of the field" } } }