/** * Advanced options for schema generation. */ export interface EditSchemaGenerationConfigAdvancedOptions { /** Whether to parse table regions as arrays of objects. Defaults to `false`. */ tableParsingEnabled?: boolean; /** Whether to model radio fields as enums. This ensures only one radio widget is selected. Defaults to `false`. */ radioEnumsEnabled?: boolean; /** If enabled, only native AcroForm fields from the PDF will be imported and used in the schema, skipping object detection. Defaults to `false`. */ nativeFieldsOnly?: boolean; }