-
Notifications
You must be signed in to change notification settings - Fork 7
/
spectralRulesetSchema.json
418 lines (418 loc) · 14.3 KB
/
spectralRulesetSchema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Spectral Ruleset",
"type": "object",
"properties": {
"rules": {
"description": "An array of rules to apply to the document.",
"type": "object",
"additionalProperties": {
"if": {
"type": "object"
},
"then": {
"description": "A custom rule",
"properties": {
"description": {
"description": "A short description of the rule.",
"type": "string"
},
"message": {
"description": "A message that's displayed in the Spectral lint output. Can be customized to use placeholder values that are evaluated at runtime.",
"type": "string"
},
"severity": {
"description": "The severity of the rule. Used to differentiate between rules that must be followed (error) and warnings or hints. Default value is warn.",
"type": "string",
"enum": [
"error",
"warn",
"info",
"hint",
"off"
]
},
"formats": {
"description": "The format that the rule should apply to. For example, oas3 for any OpenAPI v3.x descriptions. Can be applied at the ruleset and/or rule level.",
"type": "array",
"items": {
"type": "string"
}
},
"given": {
"description": "The part of the document the rule should be applied to. Uses the JSONPath syntax.",
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
},
"then": {
"description": "Describes which function should be applied to the given part of the document. Can be used with a core function or custom function.",
"oneOf": [
{
"type": "object",
"properties": {
"field": {
"description": "Apply the function to a specific property in an object. If omitted, the function is applied to the entire target of the given JSONPath.",
"type": "string"
},
"function": {
"$ref": "#/$defs/function"
},
"functionOptions": {
"$ref": "#/$defs/functionOptions"
}
},
"required": [
"function"
]
},
{
"type": "array",
"items": {
"type": "object",
"properties": {
"field": {
"description": "Apply the function to a specific property in an object. If omitted, the function is applied to the entire target of the given JSONPath.",
"type": "string"
},
"function": {
"$ref": "#/$defs/function"
},
"functionOptions": {
"$ref": "#/$defs/functionOptions"
}
},
"required": [
"function"
]
}
}
]
},
"resolved": {
"description": "Used to apply a rule to a document that's not 'resolved,' where $ref JSON Schema references haven't been replaced with the objects they point to.",
"type": "boolean"
},
"recommended": {
"description": "Use recommended when extending a ruleset so users can enforce all rules (recommended set to false) or only recommended rules (recommended set to true).",
"type": "boolean"
}
},
"required": [
"given",
"then"
]
},
"else": true
}
},
"extends": {
"description": "A reference to other rulesets. Used to extend and customize existing rulesets.",
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
},
"formats": {
"description": "The format that the ruleset should apply to. For example, oas3 for any OpenAPI v3.x descriptions. Can be applied at the ruleset and/or rule level.",
"type": "array",
"items": {
"type": "string"
}
},
"documentationUrl": {
"description": "A URL that contains more information about the ruleset and rules in it. Can help provide users more context on why the ruleset exists and how it should be used.",
"type": "string",
"format": "uri"
},
"parserOptions": {
"description": "Can be used to tune the severity of duplicate keys or invalid values in your ruleset.",
"type": "object",
"properties": {
"duplicateKeys": {
"description": "Set the severity for duplicate keys.",
"type": "string",
"enum": [
"error",
"warn",
"off"
]
},
"incompatibleValues": {
"description": "Set the severity for incompatible values.",
"type": "string",
"enum": [
"error",
"warn",
"off"
]
}
}
},
"aliases": {
"description": "An array of key-value pairs that can be used to define commonly used JSONPath expressions to be reused across a ruleset.",
"type": "object",
"additionalProperties": {
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
}
},
"overrides": {
"description": "Can be used to customize which formats, files, or parts of files, that a ruleset should be applied to.",
"type": "array",
"items": {
"type": "object",
"properties": {
"files": {
"description": "Specify the files that the overrides should apply to.",
"type": "array",
"items": {
"type": "string"
}
},
"formats": {
"description": "Specify the formats that the overrides should apply to.",
"type": "array",
"items": {
"type": "string"
}
},
"rules": {
"description": "An array of rules to apply to the specified files and formats.",
"type": "object",
"additionalProperties": {
"oneOf": [
{
"type": "string"
},
{
"type": "object",
"properties": {
"description": {
"description": "A short description of the rule.",
"type": "string"
},
"message": {
"description": "A message that's displayed in the Spectral lint output. Can be customized to use placeholder values that are evaluated at runtime.",
"type": "string"
},
"severity": {
"description": "The severity of the rule. Used to differentiate between rules that must be followed (error) and warnings or hints. Default value is warn.",
"type": "string",
"enum": [
"error",
"warn",
"info",
"hint",
"off"
]
},
"formats": {
"description": "The format that the rule should apply to. For example, oas3 for any OpenAPI v3.x descriptions. Can be applied at the ruleset and/or rule level.",
"type": "array",
"items": {
"type": "string"
}
},
"given": {
"description": "The part of the document the rule should be applied to. Uses the JSONPath syntax.",
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
},
"then": {
"description": "Describes which function should be applied to the given part of the document. Can be used with a core function or custom function.",
"oneOf": [
{
"type": "object",
"properties": {
"field": {
"description": "Apply the function to a specific property in an object. If omitted, the function is applied to the entire target of the given JSONPath.",
"type": "string"
},
"function": {
"$ref": "#/$defs/function"
},
"functionOptions": {
"$ref": "#/$defs/functionOptions"
}
},
"required": [
"function"
]
}
]
},
"resolved": {
"description": "Used to apply a rule to a document that's not 'resolved,' where $ref JSON Schema references haven't been replaced with the objects they point to.",
"type": "boolean"
},
"recommended": {
"description": "Use recommended when extending a ruleset so users can enforce all rules (recommended set to false) or only recommended rules (recommended set to true).",
"type": "boolean"
}
},
"required": [
"given",
"then"
]
}
]
}
}
}
}
}
},
"$defs": {
"functionOptions": {
"description": "Options to pass to the function.",
"type": "object",
"properties": {
"keyedBy": {
"type": "string",
"description": "Key to sort an object by (for 'alphabetical' function)."
},
"values": {
"type": "array",
"items": {
"type": "string"
},
"description": "Array of possible values (for 'enumeration' function)."
},
"min": {
"type": "number",
"description": "Minimum length to match (for 'length' function)."
},
"max": {
"type": "number",
"description": "Maximum length to match (for 'length' function)."
},
"match": {
"type": "string",
"description": "Pattern that should match (for 'pattern' function)."
},
"notMatch": {
"type": "string",
"description": "Pattern that should not match (for 'pattern' function)."
},
"type": {
"type": "string",
"enum": [
"flat",
"camel",
"pascal",
"kebab",
"cobol",
"snake",
"macro"
],
"description": "The casing type to match against (for 'casing' function)."
},
"disallowDigits": {
"type": "boolean",
"description": "If not truthy, digits are allowed (for 'casing' function)."
},
"separator.char": {
"type": "string",
"description": "Additional char to separate groups of words (for 'casing' function)."
},
"separator.allowLeading": {
"type": "boolean",
"description": "Can the group separator char be used at the first char? (for 'casing' function)."
},
"schema": {
"$ref": "http://json-schema.org/draft-07/schema#",
"description": "A valid JSON Schema document (for 'schema' function)."
},
"dialect": {
"type": "string",
"enum": [
"auto",
"draft4",
"draft6",
"draft7",
"draft2019-09",
"draft2020-12"
],
"description": "The JSON Schema draft used by function. 'auto' by default (for 'schema' function)."
},
"allErrors": {
"type": "boolean",
"description": "Returns all errors when true; otherwise only returns the first error (for 'schema' function)."
},
"reusableObjectsLocation": {
"type": "string",
"description": "A local JSON pointer to the document member holding the reusable objects (for 'unreferencedReusableObject' function)."
},
"properties": {
"type": "array",
"items": {
"type": "string"
},
"description": "The properties to check (for 'xor' function)."
}
},
"additionalProperties": true
},
"function": {
"description": "The core or custom function to apply.",
"type": "string",
"anyOf": [
{
"type": "string",
"enum": [
"alphabetical",
"enumeration",
"falsy",
"length",
"pattern",
"casing",
"schema",
"truthy",
"defined",
"undefined",
"unreferencedReusableObject",
"xor",
"typedEnum"
]
},
{
"type": "string"
}
]
}
}
}