SR033
Severity: error
Summary: jobs list contains an empty job name
What this means
An endpoint’s jobs: list contains an empty string. Job names must be non-empty snake_case identifiers matching functions in the resource’s job queue implementation.
Example that triggers this
endpoints:
create:
input: [name]
jobs: [""]
How to fix it
Provide a non-empty snake_case job name:
jobs: [send_notification]