datamaker icon indicating copy to clipboard operation
datamaker copied to clipboard

Add Repeater / Looper

Open DSigmund opened this issue 4 years ago • 0 comments

Something like {{loop 5}} ... e.g.

{
"id":"{{uuidv4}}",
"values: [
 {{loop 5}}
  {
  "value":"{{float}}",
  "key":"{{loop index}}"
  }
 {{loop end}}
]
}

result:

{
"id":"12310723-01d3-4844-a909-7db67d1528eb",
"values: [
  {
  "value":"1.2",
  "key":"0"
  },
 {
  "value":"1.5",
  "key":"1"
  },
 {
  "value":"10.2",
  "key":"2"
  },
 {
  "value":"0.7",
  "key":"3"
  },
 {
  "value":"1.2",
  "key":"4"
  }
]
}

DSigmund avatar Oct 27 '20 15:10 DSigmund