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
View Rules File View on GitHub

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
$

Spectral Ruleset

Raw ↑
extends:
  - spectral:oas

rules:

  spring-cloud-config-operation-id-camel-case:
    description: Operation IDs must be camelCase
    message: "Operation ID '{{value}}' must use camelCase"
    given: "$.paths[*][get,post,put,delete,patch].operationId"
    severity: warn
    then:
      function: pattern
      functionOptions:
        match: "^[a-z][a-zA-Z0-9]+$"

  spring-cloud-config-summary-title-case:
    description: All operation summaries must use Title Case
    message: "Summary '{{value}}' should use Title Case"
    given: "$.paths[*][get,post,put,delete,patch].summary"
    severity: warn
    then:
      function: pattern
      functionOptions:
        match: "^[A-Z]"

  spring-cloud-config-tags-required:
    description: All operations must declare at least one tag
    message: "Operation is missing tags"
    given: "$.paths[*][get,post,put,delete,patch]"
    severity: error
    then:
      field: tags
      function: truthy

  spring-cloud-config-tags-title-case:
    description: Tags must be Title Case
    message: "Tag '{{value}}' must use Title Case"
    given: "$.paths[*][get,post,put,delete,patch].tags[*]"
    severity: warn
    then:
      function: pattern
      functionOptions:
        match: "^[A-Z][a-zA-Z ]+$"

  spring-cloud-config-path-parameters-described:
    description: All path parameters must have a description
    message: "Path parameter '{{value}}' is missing a description"
    given: "$.paths[*][get,post,put,delete,patch].parameters[?(@.in == 'path')]"
    severity: warn
    then:
      field: description
      function: truthy

  spring-cloud-config-response-content-type:
    description: GET operations returning JSON must specify content type
    message: "GET operation should specify application/json or application/x-yaml response content type"
    given: "$.paths[*].get.responses.200"
    severity: warn
    then:
      field: content
      function: truthy

  spring-cloud-config-security-defined:
    description: API must define security schemes
    message: "API must define at least one security scheme for Config Server authentication"
    given: "$.components.securitySchemes"
    severity: warn
    then:
      function: truthy

  spring-cloud-config-servers-defined:
    description: At least one server must be defined
    message: "OpenAPI spec must define at least one server"
    given: "$"
    severity: error
    then:
      field: servers
      function: truthy