UNPKG

498 BJSONView Raw
1{
2 "$schema": "http://json-schema.org/draft-07/schema#",
3 "$id": "http://stoplight.io/schemas/ruleset.schema.json",
4 "type": "object",
5 "properties": {
6 "rules": {
7 "type": "object",
8 "additionalProperties": {
9 "$ref": "rule.schema.json"
10 }
11 },
12 "extends": {
13 "type": "array",
14 "items": {
15 "type": "string"
16 }
17 }
18 },
19 "required": [
20 "rules"
21 ]
22}