Attribute/Parameter Types

typeformat (technical jargon)exampleadditional notes
dateYYYY-MM-DD2013-02-25Invalid dates may throw unformed errors.
datetimeYYYY-MM-DD HH:MM:SS2013-02-25 13:05:01Invalid dates may throw unformed errors.
stringa sequence of characters'Hello World'Size is occasionally limited; denoted by a number between two brackets '[ ]'.
integernumber of the set ℤ = {…, -2, -1, 0, 1, 2, …}; a group of digits between 0-9 repeated123Preceding a number with a 0 (zero) will specify octal notation (base 8). For example, 0123 is the equivalent to 83 in decimal (base 10). Using ',' (commas) or '.' (periods) may throw unformed errors.
chara letter, numerical digit, punctuation markHSending more than one character may throw unformed errors.
booleantrue/falsetrue
decimalfloating point number; a group of digits between 0-9 separated by a '.' (period)12.34When sending monetary values, using ',' (commas) or having more than two digits after the '.' (period) may throw unformed errors.

Note: All characters are stored using UTF-8. Some characters and patterns of characters will be removed in order to sanitize the input. This should not cause issues in majority of use cases.