SR000
Severity: error
Summary: YAML parse error
What this means
The resource file could not be parsed as valid YAML. This usually means unbalanced braces, wrong indentation, a missing colon after a key, or a required top-level key is absent. No further validation is performed until the parse succeeds.
Example that triggers this
resource: example
version: 1
schema:
id: { type: uuid primary: true generated: true }
How to fix it
Fix the YAML syntax error. Check for unbalanced braces, wrong indentation, or missing required keys. A minimal valid resource looks like:
resource: example
version: 1
schema:
id: { type: uuid, primary: true, generated: true }