Enum BowireLintSeverity
- Namespace
- Kuestenlogik.Bowire.Linting
- Assembly
- Kuestenlogik.Bowire.dll
How serious a schema-lint finding is. Ordered so a caller can gate on a minimum (e.g. fail the check on Medium and above).
public enum BowireLintSeverity
Fields
High = 3High — a likely defect or exposure (e.g. a secret in a response).
Info = 0Advisory — a style or consistency nit.
Low = 1Low — worth fixing, not urgent (e.g. missing versioning).
Medium = 2Medium — a design smell with real consequences (e.g. unbounded list).