|STR|"[a-zA-Z0-9_]{3, 45}"|string is limited to upper- and lower-case ASCII characters, numbers, and underscores. It can be between 3 and 45 characters long.|
|STR-EXT|"[a-zA-Z0-9_ \(\)@\.,\-]{3, 45}"|string can also contain whitespace and other characters (e.g. punctuation, '@' or parentheses). Length still between 3 and 45 characters.|
|INT-POS|">0"|value is strictly greater than zero.|
|INT-POS0|">=0"|value is zero or greater.|
|INT-TS|">=1000000000"|value is an UNIX timestamp, representing the number of seconds since 01.01.1970, minimum value is 1,000,000,000 (was on 09.09.2001, so we should get larger values). If this constraint is not met, there are probably other issues on that machine.|
|INT-01|"[01]"|value is either 0 or 1|
|FLOAT-POS0|">=0.0"|floating point value, greater then or equal 0.0|
|FLOAT-PERCENT|">=0.0","<=1.0"|floating point value, between 0 and 1 (both incl.)|
|MEM-PR|">=10485760", "<=10485760*1048576"|Plausibility check for memory amounts - default is [10MB, 10TB]|
|SAMPL|"[0-9]{1,5}[hms]"|sampling interval in the form "1s" or "24h" etc.|
|STR|regex='[a-zA-Z0-9_]{3, 45}'|string is limited to upper- and lower-case ASCII characters, numbers, and underscores. It can be between 3 and 45 characters long.|
|STR-EXT|regex=r'[a-zA-Z0-9_ \(\)@\.,\-]{3, 45}'|string can also contain whitespace and other characters (e.g. punctuation, '@' or parentheses). Length still between 3 and 45 characters.|
|INT-POS|min=1|value is strictly greater than zero.|
|INT-POS0|min=0|value is zero or greater.|
|INT-TS|min=1000000000|value is an UNIX timestamp, representing the number of seconds since 01.01.1970, minimum value is 1,000,000,000 (was on 09.09.2001, so we should get larger values). If this constraint is not met, there are probably other issues on that machine.|
|INT-01|min=0, max=1|value is either 0 or 1|
|FLOAT-POS0|min=0.0|floating point value, greater then or equal 0.0|
|FLOAT-PERCENT|min=0.0, max=1.0|floating point value, between 0 and 1 (both incl.)|
|MEM-PR|min=10485760, max=10995116277760|Plausibility check for memory amounts - default is [10MB, 10TB]|
|SAMPL|regex='[0-9]{1,5}[hms]'|sampling interval in the form "1s" or "24h" etc.|