import type * as Extend from "../index"; export interface LegacyExtractionField { /** Unique identifier for the field. */ id: string; /** Human-readable name for the field. */ name: string; /** The type of the field. */ type: Extend.LegacyExtractionFieldType; /** Detailed description of the field, including expected content and format. */ description: string; /** Required when type is "array" or "object". Contains nested field definitions. */ schema?: Extend.LegacyExtractionField[]; /** Required when type is "enum". List of allowed values. */ enum?: Extend.Enum[]; }