now
now(): DateTime
Returns a DateTime
object with the current date and time.
Transform
1
2
3
4
5
6
7
8
%dw 2.0
output application/json
---
{
a: now(),
b: now().day,
c: now().minutes
}
Output
1
2
3
4
5
{
"a": "2015-12-04T18:15:04.091Z",
"b": 4,
"c": 15
}
See DataWeave Selectors for a list of possible selectors to use here.