Interface RenameKeysNodeParameters

Source
interface RenameKeysNodeParameters {
    additionalOptions?: {
        regexReplacement?: {
            replacements: {
                options?: {
                    caseInsensitive?: boolean;
                    depth?: number;
                };
                regExNotice?: string;
                replaceRegex?: string;
                searchRegex?: string;
            }[];
        };
    };
    keys?: {
        key: { currentKey?: string; newKey?: string }[];
    };
}

Properties§

§readonly additionalOptions?: { ... }

Default: {}

§readonly keys?: { ... }

Adds a key which should be renamed Default: {} Type options: {"multipleValues":true,"sortable":true}