Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(all): clarifies what is overridden on a per-api basis #1882

Merged
merged 9 commits into from
Feb 9, 2025
4 changes: 2 additions & 2 deletions docs/configuration/apis.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ Every `name@version` combination listed in the object must be unique.
For every API listed in the object, you must provide the path to the OpenAPI description using the `root` property.

If `rules`, `decorators`, or `preprocessors` aren't defined for an API, root settings are used.
If `rules`, `decorators`, or `preprocessors` are defined for an API, its settings apply together with the root configuration.
If per-API and root settings modify the same properties, per-API settings overrides root settings.
If `rules`, `decorators`, or `preprocessors` are defined for an API, its first-level properties apply together with the root configuration.
tatomyr marked this conversation as resolved.
Show resolved Hide resolved
If per-API `rules`, `decorators`, or `preprocessors` and root settings modify the same first-level properties, per-API `rules`, `decorators`, and `preprocessors` override root settings.

## Patterned properties

Expand Down
Loading