I am trying to format a ColdFusion page with data from the National Weather Service API (NOAA). Using the following ColdFusion code I am able to dump the data.
<cfhttp url="https://api.weather.gov/alerts/active/zone/ANZ335" result="weather">
<cfhttpparam name="accept" type="header" value="application/ld+json">
</cfhttp>
<cfset alerts = deserializeJSON(#weather.filecontent#) />
In the dump, I can XML data that uses a "@" character to name the nodes.

However, ColdFusion does not like the @ sign when you try to output the values. For example:
#arraylen(alerts.@graph)#
Causes an "Invalid token @ found on line X..." error.
Any ideas on how I can get by this issue?