SR032
Severity: error
Summary: events list contains an empty event name
What this means
An endpoint’s events: list contains an empty string. Event names must follow the resource.action convention (e.g., user.created) so the runtime can route them to the correct subscribers.
Example that triggers this
endpoints:
create:
input: [name]
events: [""]
How to fix it
Use resource.action format for event names:
events: [users.created]