%dw 2.0
output application/json
---
{ price: randomInt(1000) }
DataWeave
randomInt
randomInt(Number): Number
Returns a pseudo-random whole number from 0
to the specified number
(exclusive).
Parameters
Name | Description |
---|---|
|
A number that sets the upper bound of the random number. |
Example
This example returns an integer from 0 to 1000 (exclusive).
Source
Output
{ "price": 442.0 }
JSON