Last updated

apis

Introduction

If your project contains multiple APIs, the apis configuration section allows you to set up different rules and settings for different APIs.

Options

OptionTypeDescription
{name}@{version}API objectREQUIRED. Each API needs a name and optionally a version. Supports alphanumeric characters and underscores.

API object

OptionTypeDescription
rootstringREQUIRED. Path to the root API description file.
rulesRules objectAdditional rule configuration for this API.
decoratorsDecorators objectAdditional decorator configuration for this API.
preprocessorsDecorators objectPreprocessors run before linting, and follow the same structure as decorators. We recommend the use of decorators over preprocessors in most cases.

Examples

The following example shows a simple redocly.yaml configuration file with settings for multiple APIs.

apis:
  orders@v3:
    root: orders/openapi.yaml
    rules:
      tags-alphabetical: error
      operation-operationId-unique: error
      spec-strict-refs: error
  newsletter:
    root: newsletter/openapi.yaml
    rules:
      info-contact: off
      operation-summary: off
  • extends sets the base ruleset to use.
  • rules settings define the linting rules that are used.
  • decorators offer some transformations for your OpenAPI documents.

Resources