Property names must be surrounded by single or double quotes.
JavaScript is a case-sensitive language and CFML isn't. To preserve the casing of your property names, you must surround them with quotes.
// Bad
data = {
propertyName: "defaultValue"
};
// Good
data = {
"propertyName": "defaultValue"
};
Data Properties are parsed by JavaScript and therefore can only store values that are JavaScript friendly: strings, numeric, arrays, structs, or booleans.
Data Properties are visible to JavaScript. You SHOULD NOT store sensitive data in them.
Initial Values
Data properties should be assigned a default value, even if it's just an empty string.