Rockwell Collins · API Governance Rules
Rockwell Collins API Rules
Spectral linting rules defining API design standards and conventions for Rockwell Collins.
11 Rules
error 5
warn 5
info 1
Rule Categories
aeroapi
Rules
error
aeroapi-has-security
All AeroAPI operations must define security with ApiKeyAuth
$.paths[*][get,post,put,patch,delete]
error
aeroapi-operation-id-required
All AeroAPI operations must have a unique operationId
$.paths[*][get,post,put,patch,delete]
warn
aeroapi-operation-id-snake-case
AeroAPI operationIds use snake_case naming
$.paths[*][get,post,put,patch,delete].operationId
error
aeroapi-summary-required
All AeroAPI operations must have a summary
$.paths[*][get,post,put,patch,delete]
warn
aeroapi-summary-title-case
Operation summaries must use Title Case
$.paths[*][get,post,put,patch,delete].summary
warn
aeroapi-operation-description-required
AeroAPI operations should include detailed descriptions
$.paths[*][get,post,put,patch,delete]
warn
aeroapi-valid-tag
Operation tags must use AeroAPI defined categories
$.paths[*][get,post,put,patch,delete].tags[*]
info
aeroapi-pagination-cursor
List operations should support cursor-based pagination
$.paths[*][get]
warn
aeroapi-path-format
AeroAPI paths use lowercase with forward slashes
$.paths[*]~
error
aeroapi-success-response-schema
Successful responses must include a schema
$.paths[*][get,post,put,patch,delete].responses['200']
error
aeroapi-info-version
API info must include version
$.info