Mongodrdl option to limit the the depth of nesting levels?

I looked at the latest document (v2.14) for mongodrdl.

I cannot find an option to control the level of depth when it attempts to map out and infer the schema from the documents being sampled in my collection.

The context here are:

  1. The Collections I have to work with contains several thousands of nested JSON objects such as ARRAY and OBJECTS at different branch depth.
  2. I am hoping I can provide limits to mongodrdl. When the level of depth is reach, then it will just treat it as a raw JSON string (VARCHAR) and no more unnest will be necessary.
  3. Another feature I am hoping to utilize in this context is to define a new attribute root.leaf that actually maps to root.level1.level2.level3.level4.leaf

I believe at a very minimal these couple of features will help me to tamed the large nested documents, to enable me to work with a simplified SQL schema with attributes that matters for my query.

Open for ideas, options, or different perspectives.
Thank you.

The documents in the given collection are so nested that mongodrdl is emitting the following warnings.

<… clipped the same repeating messages…>
2022-10-12T15:48:40.123-0700 W SCHEMA [sampler] cannot map field “attribute1” - collection “myCollectionName” has reached configured field limit 2000
2022-10-12T15:48:40.123-0700 W SCHEMA [sampler] cannot map field “attribute1” - collection “myCollectionName” has reached configured field limit 2000
2022-10-12T15:48:40.126-0700 W SCHEMA [sampler] cannot map field “attribute1” - collection “myCollectionName” has reached configured field limit 2000
2022-10-12T15:48:40.126-0700 W SCHEMA [sampler] cannot map field “attribute1” - collection “myCollectionName” has reached configured field limit 2000
2022-10-12T15:48:40.126-0700 W SCHEMA [sampler] cannot map field “attribute1” - collection “myCollectionName” has reached configured field limit 2000
2022-10-12T15:48:40.126-0700 W SCHEMA [sampler] cannot map field “attribute1” - collection “myCollectionName” has reached configured field limit 2000
2022-10-12T15:48:40.128-0700 W SCHEMA [sampler] cannot map field “attribute1” - collection “myCollectionName” has reached configured field limit 2000
2022-10-12T15:48:40.128-0700 W SCHEMA [sampler] cannot map field “attribute1” - collection “myCollectionName” has reached configured field limit 2000
2022-10-12T15:48:40.129-0700 W SCHEMA [sampler] cannot map field “attribute1” - collection “myCollectionName” has reached configured field limit 2000
<… clipped the same repeating messages…>