Skip to main content
Use this mapper to build a new list by repeating the input value a fixed number of times. The value it receives becomes the value that fills every slot, and you choose how many slots there are and at which position the list starts counting. This is useful when a target system expects a list of a known length, or when you need to repeat a placeholder value a set number of times.

Fields

Sample data

This example repeats an incoming status value three times.
FieldValue
Start0
Length3
Input:
"pending"
Output:
["pending", "pending", "pending"]
With Start set to 2 instead, the same input produces a keyed object numbered from that position: { "2": "pending", "3": "pending", "4": "pending" }.