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:
@oxisto Please provide a suggestion for improved wording.
After re-reading the sentence very carefully I think its actually ok the way it is, since it says that the JSON path does not contain more than 30 instances of branches and the JSON path of a nested branches-structure would contain them, but one that is next to each other would not.
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: