namespace foo
import bar.*
body Authority Body
corpus Regulations Corpus
report Body Corpus in T+2
from Event
when Eligible
with type Report
eligibility rule Eligible from Event:
item
reporting rule Thing from Event:
""
namespace foo
type Report:
thing string (1..1)
[ruleReference Thing]
namespace bar
type Event:
Observe that it validates fine.
Change the name of Event to Even, and observe that it breaks (as expected).
Change the name of Even back to Event, and observe that one validation error persists on the report.
Repro:
Event
toEven
, and observe that it breaks (as expected).Even
back toEvent
, and observe that one validation error persists on the report.