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]

Back to top

Shaperail documentation lives in the same repository as the framework so every release has versioned instructions. See the latest release for the most recent version.

This site uses Just the Docs, a documentation theme for Jekyll.