Combine Arrays
Overview
Combine Arrays concatenates one or more additional arrays onto a main array, using the main array’s item structure as the output shape.
Input
Main Array
string requiredSelect the main array to which additional arrays will be concatenated. This array defines the structure of the output array.
Allow different array object structures
booleanIf enabled, additional arrays may use a thinner object schema than the main array: missing properties are filled with defaults ("" for string, 0 for number, false for boolean, [] for array; nested objects filled recursively), and extra properties on additional items are dropped. Shared property types must still match. Different item kinds (for example array[string] vs array[number]) are never allowed.
If disabled, additional arrays must be compatible with the main array shape (additional must cover the main schema).
Default: false
Additional arrays
array requiredArrays to append after the main array. Shown after the main array type is resolved. At least one additional array is required.
Output
outValue
arrayCombined array. Item type follows the selected main array.
Array Size
integerNumber of items in the combined array.