Is there a limitation on CRP related to what or how many characters can be returned in the expression? I seem to be having an issue pertaining to this. I saw no limitation in the documentation on the wiki, but figured I'd ask. These are all of the characters included in the expression which is 1438 characters long. It is an attribute made up of a single string of json with html entity substitutions. &\#;:[]-."[A-Za-z] Here is the code I am using. All other attributes work with it and the roll works fine outside of startRoll. The only issue I am finding is calling these json attributes using startRoll. The json attributes work fine for the rest of my character sheets. let jsonGet = await startRoll(`!{{query=[[0[@{sheetA|c_name}]]]}}`); finishRoll(jsonGet.rollId); console.log(jsonGet.results); console.log(jsonGet.results.query.expression); Original Post