R · API Governance Rules
R API Rules
Spectral linting rules defining API design standards and conventions for R.
7 Rules
error 1
warn 6
Rule Categories
r
Rules
warn
r-operation-summary-title-case
All operation summaries must use Title Case
$.paths[*][*].summary
warn
r-tags-title-case
All tags must use Title Case
$.paths[*][*].tags[*]
warn
r-operation-ids-must-be-camel-case
Operation IDs must use camelCase
$.paths[*][*].operationId
warn
r-paths-kebab-case
Path segments must use kebab-case
$.paths[*]~
error
r-responses-must-include-success
All operations must define at least one 2xx response
$.paths[*][get,post,put,patch,delete]
warn
r-parameters-must-have-descriptions
All parameters must have descriptions
$.paths[*][*].parameters[*]
warn
r-components-schemas-pascal-case
Schema component names must use PascalCase
$.components.schemas[*]~