You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This has a recursion depth of 2, which is ok according to the definition of the max branch depth. But the test specifies that "it MUST be tested that the complete JSON path does not contain more than 30 instances of branches.". This has the problem that instances of branches can exist next to each other and we need to consider the maximum depth of each of these instances.
The text was updated successfully, but these errors were encountered:
Consider this (partial) JSON:
This has a recursion depth of 2, which is ok according to the definition of the max branch depth. But the test specifies that "it MUST be tested that the complete JSON path does not contain more than 30 instances of branches.". This has the problem that instances of
branches
can exist next to each other and we need to consider the maximum depth of each of these instances.The text was updated successfully, but these errors were encountered: