[coldbox-3.5.3] RenderData is not showing all json data of arrays.

I’m looking for any suggestions of how to find/fix this problem. I have a couple of entities defined and relationships established. Everything appears to be working correctly except that when I do try to render a json response of the data.

response = doc.get( doc_id, false );
event.renderData( data=response, type=“JSON” );

only two of any of the array relationships are returned. The correct number of items are in the array but the items after the first 2 are empty.

If I do a cfdump/writeDump of the data everything shows up correctly.

Entity snippet:
component entityName=“doc” persistent=“true” extends=“coldbox.system.orm.hibernate.ActiveEntity” table=“table_name” schema=“schema_name” lazy=“false” {


property name=“doc_cases” fieldtype=“one-to-many” singularname=“doc_case” cfc=“dotpath.model.doc_case” fkcolumn=“doc_id” column=“doc_id” cascade=“save-update” remotingfetch=“true” type=“array” persistent=“true”;

}

Application.cfc settings: