I have a javascript object:
data = { color: red, day: monday, list: {1,2,3,4,5,6}}
I pass this to a coldfusion page using jQuery:
$.ajax({
type: "POST",
url: "ajax_myPage.cfm",
data: JSON.stringify(data),
contentType: "application/json",
dataType: "json" });
This is my cfdump:

(the "list" is actually going to contain a list of emails but I am just testing with one address right now)
In coldfusion, I am trying to assign each "part" to a variable:
<cfset requestBody = toString( getHttpRequestData().content ) />
<!--- Double-check to make sure it's a JSON value. --->
<cfif !isJSON( requestBody )>
<!--- Echo back POST data. --->
<h3>The URL you requested does not provide valid JSON</h3>
<cfdump
var="#requestBody#"
label="HTTP Body"
/>
<cfelse>
<cfset cfData=DeserializeJSON(requestBody)>
<cfset color = cfData.color>
<cfset day = cfData.day>
<cfset myList = cfData.list>
</cfif>
However I am getting an error with "list",
Complex object types cannot be converted to simple values.
How do I parse the list as Coldfusion?