Ball Corporation · API Governance Rules
Ball Corporation API Rules
Spectral linting rules defining API design standards and conventions for Ball Corporation.
7 Rules
error 4
warn 3
Rule Categories
ball
Rules
error
ball-info-title-required
API title must be present.
$.info
warn
ball-info-description-required
API description must be present.
$.info
error
ball-info-version-required
API version must be present.
$.info
error
ball-operation-id-required
All operations must have an operationId.
$.paths[*][get,post,put,patch,delete]
warn
ball-operation-summary-required
All operations must have a summary.
$.paths[*][get,post,put,patch,delete]
error
ball-response-200-required
GET operations must define a 200 response.
$.paths[*].get.responses
warn
ball-schema-description-required
All named schemas must have a description.
$.components.schemas[*]