import type * as Extend from "../index"; /** * The generated schema and optional mapping metadata. */ export interface EditSchemaGenerationResponse { /** The final generated schema after mapping. If no input schema was provided this will be the same as the annotatedSchema. */ schema: Extend.EditRootJson; /** The original schema that was detected and annotated from the file. */ annotatedSchema: Extend.EditRootJson | null; /** Mapping information between `inputSchema` paths and detected form fields when an input schema was provided. */ mappingResult: Extend.EditSchemaGenerationMappingResult | null; }