Identifiers
Identifiers are unquoted text denoting the name or identity of a field. The rules governing what an identifier is allowed to be are as follows:
They may consist solely of:
- Letters:
A-Z a-z - Numbers:
0-9 - Underscores:
_ - Hyphens:
- - Single quotes:
'
However, the first character of an identifier must be a letter or underscore. No other characters are permitted.
Examples of VALID identifiers
{
my-list = [];
my_list = [];
_my_list_ = [];
my-list- = [];
my'list' = [];
}
Examples of INVALID identifiers
{
'my-list = [];
-my-list = [];
1my-list = [];
}