{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FormField", "title": "FormField", "properties": { "choices": { "$ref": "#/components/schemas/property_FormField_choices" }, "created_at": { "format": "date-time", "type": "string" }, "default_value": { "type": "string" }, "description": { "type": "string" }, "id": { "type": "string" }, "is_active": { "type": "boolean" }, "is_required": { "type": "boolean" }, "max": { "type": "number" }, "max_length": { "type": "number" }, "min": { "type": "number" }, "min_length": { "type": "number" }, "name": { "type": "string" }, "order": { "type": "number" }, "pattern": { "type": "string" }, "type": { "enum": [ "TEXT", "TEXTAREA", "NUMBER", "EMAIL", "URL", "DATE", "TIME", "DATETIME", "PHONE", "BOOLEAN", "SINGLE_SELECT", "MULTIPLE_SELECT", "FILE_UPLOAD", "RATING", "SCALE", "MATRIX", "SECTION_HEADER", "OTHER" ], "type": "string", "x-speakeasy-unknown-values": "allow" }, "updated_at": { "format": "date-time", "type": "string" } }, "required": [ "name", "type" ], "type": "object" }