Spring Cloud Config · API Governance Rules
Spring Cloud Config API Rules
Spectral linting rules defining API design standards and conventions for Spring Cloud Config.
8 Rules
error 2
warn 6
Rule Categories
spring
Rules
warn
spring-cloud-config-operation-id-camel-case
Operation IDs must be camelCase
$.paths[*][get,post,put,delete,patch].operationId
warn
spring-cloud-config-summary-title-case
All operation summaries must use Title Case
$.paths[*][get,post,put,delete,patch].summary
error
spring-cloud-config-tags-required
All operations must declare at least one tag
$.paths[*][get,post,put,delete,patch]
warn
spring-cloud-config-tags-title-case
Tags must be Title Case
$.paths[*][get,post,put,delete,patch].tags[*]
warn
spring-cloud-config-path-parameters-described
All path parameters must have a description
$.paths[*][get,post,put,delete,patch].parameters[?(@.in == 'path')]
warn
spring-cloud-config-response-content-type
GET operations returning JSON must specify content type
$.paths[*].get.responses.200
warn
spring-cloud-config-security-defined
API must define security schemes
$.components.securitySchemes
error
spring-cloud-config-servers-defined
At least one server must be defined
$