Last updated

Migrate to Redocly from Spectral

Spectral offers similar linting capabilities to Redocly CLI and the rest of the Redocly tools. This guide lays out the differences so you can switch tools if you want to.

The first step is to install Redocly CLI.

Update command

Replace spectral lint openapi.yaml with the equivalent redocly command:

redocly lint openapi.yaml

For more information, check out the lint command documentation.

Specify ruleset

Instead of --ruleset/-r, use the --extends parameter to indicate which ruleset you are using as a basis.

Read more about linting and rulesets

Choose output format

Similar to Spectral, Redocly offers multiple output formats using the --format parameter.

Resolvers

If you use --resolver to handle how links and remote URLs are resolved, visit the configuration documentation to see how to handle this with Redocly.

Update configuration

The configuration formats are a little different between the tools.

Redocly uses a configuration file called redocly.yaml, the main controls for linting are:

  • Specify a ruleset.
  • Add configuration for the rules accordingly. They can be set to error, warn, or off.
  • Expand the collection with any configurable rules that fit your standard.

Example Redocly configuration file

Below is an example of a redocly.yaml configuration file, enabling the minimal ruleset, disabling the security-defined rule, and setting up an example configurable rule to check for the word "test" appearing in an operation summary.

extends:
  - minimal

rules:
  security-defined: off
  rule/naming:
    subject:
      type: Operation
      property: summary
    assertions:
      notPattern: /test/
    message: "Operation summary must not include the word test"

It is also possible to configure additional rules for specific APIs using the APIs object to set per-API rules (or exceptions!).

Redocly rules and Spectral equivalents

Included here is an attempt to map the simliar-but-not-identical naming of rules between the tools. If you spot anything that needs adding or updating, please tell us?

Spectral rulesRedocly rules
duplicated-entry-in-enum
info-contactinfo-contact
info-description
info-licenseinfo-license
license-urlinfo-license-url
no-$ref-siblings
no-eval-in-markdown
no-script-tags-in-markdown
oas3-api-serversno-empty-servers
oas3-examples-value-or-externalValueno-example-value-and-externalValue
oas3-operation-security-definedsecurity-defined
oas3-parameter-descriptionparameter-description
oas3-schemaspec
oas3-server-not-example.comno-server-example.com
oas3-server-trailing-slashno-server-trailing-slash
oas3-unused-componentno-unused-components
oas3-valid-media-exampleno-invalid-media-type-examples
oas3-valid-schema-exampleno-invalid-schema-examples
openapi-tags
openapi-tags-alphabeticaltags-alphabetical
openapi-tags-uniqueness
operation-descriptionoperation-description
operation-operationIdoperation-operationId
operation-operationId-uniqueoperation-operationId-unique
operation-operationId-valid-in-urloperation-operationId-url-safe
operation-parametersoperation-parameters-unique
operation-singular-tagoperation-singular-tag
operation-success-responseoperation-2xx-response
operation-tag-definedoperation-tag-defined
operation-tags
path-declarations-must-existpath-declaration-must-exist
path-keys-no-trailing-slashno-path-trailing-slash
path-not-include-querypath-not-include-query
path-paramspath-parameters-defined
tag-descriptiontag-description
typed-enum
boolean-parameter-prefixes
no-ambiguous-paths
no-enum-type-mismatch
no-http-verbs-in-paths
no-identical-paths
no-invalid-parameter-examples
no-server-variables-empty-enum
no-undefined-server-variable
no-unresolved-refs
operation-4xx-problem-details-rfc7807
operation-4xx-response
operation-summary
path-excludes-patterns
path-segment-plural
paths-kebab-case
request-mime-type
required-string-property-missing-min-length
response-contains-header
response-contains-property
response-mime-type
scalar-property-missing-example
spec-components-invalid-map-name

Configurable and extensible rules

If the built-in rules don't meet your requirements, don't worry! Redocly allows you to build any rule to meet your needs, using configurable rules. Declare which elements of the OpenAPI description should comply with the rule, and then define the criteria that it should be checked against.

Build up the rulesets that work for your organization's API standards. These can be:

  • using existing Redocly rulesets
  • defining your own rulesets from built-in, configurable and/or custom rules
  • combining rulesets from any source
  • adding per-API additions or exceptions as required
  • using an ignore file to overlook existing/historic incompatibilities while still enforcing rules for changed elements

For some advanced use cases, the configurable rules can't cover all possibilities. If that happens, Redocly supports adding rules in custom plugins so that you can use JavaScript to express any specialist rules you need.

Explore tool functionality

Redocly CLI supports multiple Redocly products and functions, so go ahead and read more about Redocly CLI.