Configuration reference
Configuration reference
Data Types
Int
An int value is a whole number.
exampleInteger: 42
Float
A float value is a fractional number.
exampleFloat: 42.33
String
A string value is a sequence of characters used to represent text.
exampleString: helloWorld
Bool
A boolean value is either true
or false
.
exampleBool: true
Duration
To define a value as a duration, valid time units include “ns”, “us” (or “µs”), “ms”,
“s”, “m”, “h”. When a unit is not defined, seconds (s
) will be used as the default.
Abbreviation | Value |
---|---|
ns | Nanosecond |
µs or us | Microsecond |
ms | Millisecond |
s | Second |
m | Minute |
h | Hour |
exampleDuration: 42h