type SplitterOutput = {
splits: Split[];
};
type Split = {
classificationId: string; // The id of the classification type (set in the processor config)
type: string; // The type of the split document (set in the processor config), corresponds to the classificationId.
startPage: number; // The start page of the split document
endPage: number; // The end page of the split document
// Fields included in outputs, but not required for creating an evaluation set item
identifier?: string; // Identifier for the split document (e.g. invoice number)
observation?: string; // Explanation of the results
};