Dates and Times
Generate a Zulu Date and/or Time value for a property in your schema, which will be generated and added to the Record at the time a Record is created. Use the following variables in the format
as you see fit to customize the generated value based on your needs.
If format is unspecified, the default pattern is
2024-05-09T15:28:51.572Z
.yyyy
= the year as 4 digitsM
= the month as 1 or 2 digitsMM
= the month as 2 digitsd
= the day as 1 or 2 digitsdd
= the day as 2 digitsD
= the day, month and year as5/9/2024
DD
= the day, month and year asMay 9, 2024
h
= the hour as 1 or 2 digits, 12 hour clockHH
= the hour as 2 digits, 24 hour clockm
= minute as 1 or 2 digitsmm
= minute as 2 digitsss
= second as 2 digitsSSS
= millisecond as 3 digitsa
=AM
orPM
t
= time as3:06 PM
tt
= time as3:06:22 PM
T
= time as15:06
TT
= time as15:06:22
'custom string'
= the custom string value
Last updated