A requires B, B requires C, and C requires A, this forms
a cycle.
Why it matters
Cycles in requires constraints will be rejected by the CDF API. The deployment of the data model will fail if any such cycle exists.Example
Containermy_space:OrderContainer requires my_space:CustomerContainer, which
requires my_space:OrderContainer. This creates a cycle and will be rejected.