interface DocumentBinaryInputLoaderNodeParameters {
binaryDataKey?: string;
column?: string;
loader?:
| "csvLoader"
| "docxLoader"
| "epubLoader"
| "jsonLoader"
| "pdfLoader"
| "textLoader";
options?: {
metadata?: {
metadataValues: { name: string; value?: string }[];
};
};
pointers?: string;
separator?: string;
splitPages?: boolean;
}Properties§
§§§§§§
readonly binary Data Key?: string§
readonly column?: stringColumn to extract from CSV
readonly loader?:
| "csvLoader"
| "docxLoader"
| "epubLoader"
| "jsonLoader"
| "pdfLoader"
| "textLoader"Default: "jsonLoader"
readonly options?: { ... }Default: {}
readonly pointers?: stringPointers to extract from JSON, e.g. "/text" or "/text, /meta/title"
readonly separator?: stringSeparator to use for CSV Default: ","
readonly split Pages?: booleanDefault: true
Name of the binary property from which to read the file buffer Default: "data"