Previously Spectral supported exceptions, which were limited in their ability to target particular rules on specific files or parts of files or change parts of a rule. Overrides are the much more powerful version of exceptions, with the ability to customize ruleset usage for different files and projects without having to duplicate any rules.
Overrides can be used to apply rulesets on:
- Particular formats
formats: [jsonSchemaDraft7]
- Particular files/folders
files: ['schemas/**/*.draft7.json']
- Particular elements of files
files: ['**#/components/schemas/Item']
- Override particular rules
Example
overrides:
formats:
- json-schema-draft7
files:
- schemas/**/*.draft7.json
rules:
valid-number-validation:
given:
- $..exclusiveMinimum
- $..exclusiveMaximum
then:
function: schema
functionOptions:
type: number
To apply an override to particular elements of files, combine a glob for a filepath with a JSON Pointer after the anchor, i.e.:
overrides:
- files:
- "legacy/**/*.oas.json#/paths"
rules:
some-inherited-rule: "off"
JSON Pointers have a different syntax than JSON Paths used in the given
component of a rule.
In JSON Pointers, path components are prefixed with a /
and then concatenated to form the pointer.
Since /
has a special meaning in JSON pointer, it must be encoded as ~1
when it appears in a component, and ~
must be encoded as ~0
.
JSON Pointer must be percent-encoded for use within a URI as specified by the spec
You can test JSON Pointer expressions in the JSON Query online evaluator by choosing "JSONPointer" as the Transform. Bear in mind the tool above expects plain JSON Pointer, thus you need to decode any previously percent-encoded characters.
overrides:
- files:
- "legacy/**/*.oas.json#/paths/~1Pets~1%7BpetId%7D/get/parameters/0"
rules:
some-inherited-rule: "off"
In the event of multiple matches, the order of definition takes place, with the last one having the higher priority.
Overrides are only applied to the root documents. If your documents have any external dependencies ($refs), the overrides won't apply.
Example:
Given the following 2 YAML documents:
# my-document.yaml
openapi: "3.1.0"
paths: {}
components:
schemas:
User:
$ref: "./User.yaml"
# User.yaml
title: ""
type: object
properties:
id:
type: string
required:
- id
And the ruleset below:
{
"rules": {
"empty-title-property": {
"message": "Title must not be empty",
"given": "$..title",
"then": {
"function": "truthy"
}
}
},
"overrides": [
{
"files": ["User.yaml"],
"rules": {
"empty-title-property": "off"
}
}
]
}
Running spectral lint my-document.yaml
results in the following output:
/project/User.yaml
1:8 warning empty-title-property Title must not be empty title
✖ 1 problem (0 errors, 1 warning, 0 infos, 0 hints)
While executing spectral lint User.yaml
outputs:
No results with a severity of 'error' or higher found!
Overrides aren't supported in other files through extended rulesets (extends
). For example, if you create a ruleset file (rulesetA
) that includes another file (rulesetB
) through extends
, overrides are ignored if you apply them to rulesetB
.
However, you can use JS rulesets to inherit overrides. This example shows how to apply an override in rulesetB
:
import rulesetA from './ruleset';
export default {
extends: rulesetA,
overrides: rulesetA.overrides,
};