/** * A successful mapping between an input schema path and a detected form field. */ export interface EditSchemaGenerationMappingMatch { /** The path from the provided `inputSchema`. */ inputPath: string; /** The detected form field key matched to the input path. */ formFieldKey: string; }