-
Notifications
You must be signed in to change notification settings - Fork 263
/
all.js
419 lines (405 loc) · 11.5 KB
/
all.js
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
419
'use strict';
var Validator = require('jsonschema').Validator;
// This schema includes all of the possible validation tests.
var schema = {
"id": "/All",
"type": "object",
"properties": {
// --------------------------------------------------------------------
// Type.
// --------------------------------------------------------------------
//
// Validate that this property is of a specific type. Types are not the
// standard set obtained from typeof, however. They are:
//
// string, number, integer, boolean, array, null, date, any, object.
"validateType1": {
"type": "string"
},
// Note that multiple type options can be provided in an array.
"validateType2": {
"type": ["boolean", "string"]
},
// It is also possible to specify forbidden types, either using "not" or
// "disallow", either of which can accept a string type name or array of
// string type names.
"validateType3": {
"not": "string",
},
"validateType4": {
"disallow": ["boolean", "string"]
},
// --------------------------------------------------------------------
// Object Properties.
// --------------------------------------------------------------------
//
// Describing properties is the way in which a schema for nested objects can
// be constructed.
//
// Firstly any number of object properties can be described one by one, by
// name, and given validation rules.
"validateProperties": {
"type": "object",
"properties": {
"a": {
"type": "array"
},
"b": {
"type": "integer"
}
}
},
// Secondly, regular expression strings can be used to describe validation
// of properties.
"validatePatternProperties": {
"type": "object",
"patternProperties": {
// The property name will be passed to new RegExp(prop), so backslashes
// have to be escaped.
"^x1\\d*$": {
"type": "array"
},
"^[a-z]+$": {
"type": "integer"
}
}
},
// A catch-all additionalProperties validation is applied to every property
// not defined explicitly or matched by a pattern.
"validateAdditionalProperties1": {
"type": "object",
"properties": {
"a": {
"type": "array"
}
},
"patternProperties": {
"[b-z]+": {
"type": "integer"
}
},
"additionalProperties": {
"type": "boolean"
}
},
// If additionalProperties is set false then the presence of any properties
// other than those specified will fail validation.
"validateAdditionalProperties2": {
"type": "object",
"properties": {
"a": {
"type": "array"
}
},
"patternProperties": {
"[b-z]+": {
"type": "integer"
}
},
"additionalProperties": false
},
// The number of properties present on the object can also be validated.
"validateNumberOfProperties": {
"type": "object",
"patternProperties": {
"[a-z]+": {
"type": "string"
}
},
"minProperties": 1,
"maxProperties": 2
},
// --------------------------------------------------------------------
// Required.
// --------------------------------------------------------------------
//
// All schema validation is optional unless defined to be required. In
// other words, a value of undefined will pass validation.
//
// In this simple case, any value other than undefined is acceptable.
"validateRequired": {
"type": "any",
"required": true
},
// For objects, it is also possible to list property names that are
// required. This can be done in two ways, shown below:
"validateRequiredProperties1": {
"type": "object",
"required": [
"propA",
"propB"
]
},
"validateRequiredProperties2": {
"type": "object",
"properties": {
"propA": {
"required": true
},
"propB": {
"required": true
}
}
},
// --------------------------------------------------------------------
// Arrays.
// --------------------------------------------------------------------
//
// The elements of an array can be validated to match any schema definition,
// either simple or as complex and nested as desired.
"validateItems": {
"type": "array",
// A simple schema for the items in this array, only specifying type.
"items": {
"type": "string"
}
},
// The size of the array can also be validated.
"validateNumberOfItems": {
"type": "array",
"minItems": 1,
"maxItems": 2
},
// If the uniqueItems property is defined with any value, then validation
// fails if any of the items in the array pass a strict equality test.
"validateUniqueItems": {
"type": "array",
"uniqueItems": true
},
// --------------------------------------------------------------------
// Numbers.
// --------------------------------------------------------------------
//
// Number and integer types can be validated in a number of ways:
"validateNumber": {
"type": ["number"],
"minimum": 0,
"maximum": 10,
// Beware floating point errors!
"divisibleBy": 2.4,
"multipleOf": 4.8
},
// A few of the options are more applicable to integers:
"validateInteger": {
"type": ["integer"],
// Only even numbers pass validation.
"divisibleBy": 2,
"multipleOf": 4
},
// --------------------------------------------------------------------
// Strings.
// --------------------------------------------------------------------
//
// Match against a substring or regular expression.
"validatePattern1": {
"type": "string",
"pattern": "str"
},
"validatePattern2": {
"type": "string",
"pattern": /str/
},
// The format validation option provides shortcuts for various regular
// expressions or functions that check specific string formats. The
// available formats are:
//
// date-time, date, time, ip-address, ipv6, uri, color, host-name, alpha,
// alpha-numeric, utc-millisec
"validateFormat": {
"type": "string",
// This validates against possible values for color in CSS.
"format": "color"
},
// String length can be validated.
"validateLength": {
"type": "string",
"minLength": 1,
"maxLength": 2
},
// --------------------------------------------------------------------
// Enumerated values.
// --------------------------------------------------------------------
//
// Validation passes if the property is strictly equal to one of the
// enumerated values.
"validateEnum": {
"enum": [
"value",
{
"x": 11
}
]
},
// --------------------------------------------------------------------
// Dependencies.
// --------------------------------------------------------------------
//
// It is possible to declare a property in an object to require the presence
// of one or more other properties.
//
// In this case neither "a" nor "b" are defined as required, but if "a" is
// present, then "b" must also be present.
"validateDependencies1": {
"type": "object",
"properties": {
"a": {
"type": "string",
},
"b": {
"type": "boolean"
}
},
"dependencies": {
"a": "b"
}
},
// Multiple dependencies can be defined for any one property. Here again
// none of the properties are defined as being required, but if "a" is
// present then "b" and "c" must also be present.
"validateDependencies2": {
"type": "object",
"properties": {
"a": {
"type": "string",
},
"b": {
"type": "boolean"
},
"c": {
"type": "number"
}
},
"dependencies": {
"a": ["b", "c"]
}
},
// --------------------------------------------------------------------
// Schema matching options.
// --------------------------------------------------------------------
//
// There are a number of options for validating against more than one
// schema: one of, any of, all of.
//
// The property must match one or more of the validation schema provided in
// the array, which can be as simple or complex and nested as desired.
"validateAnyOf": { "anyOf" : [
{
"type": "boolean"
},
{
"type": "string"
}
]},
// The property must match all of the validation schema provided in the
// array, which can be as simple or complex and nested as desired.
"validateAllOf": { "allOf" : [
{
"type": "boolean"
},
{
"enum": [true]
}
]},
// The property must match only one of the validation schema provided in the
// array, which can be as simple or complex and nested as desired.
"validateOneOf": { "oneOf" : [
{
"type": "boolean"
},
{
"type": "integer"
}
]},
// --------------------------------------------------------------------
// References.
// --------------------------------------------------------------------
//
// One schema definition can reference other schema definitions, which
// allows easier construction of more complex schemas by reusing their
// common component parts.
"validateReference": {
// The /ReferencedSchema is defined below in the referencedSchema
// variable. It must be registered with the validator prior to validation
// using the addSchema method. See below for that as well.
"$ref": "/ReferencedSchema"
}
}
};
// An example of a smaller schema referenced from the main schema definition.
// This is about as simple as a schema can possibly be - most are more complex,
// describing common collections of data such as addresses or database rows.
var referencedSchema = {
"id": "/ReferencedSchema",
"type": "string"
};
var all = {
"validateType1": "a string",
"validateType2": true,
"validateType3": 6,
"validateType4": 6,
"validateProperties": {
"a": [],
"b": 6
},
"validatePatternProperties": {
"x11": [],
"abc": 5
},
"validateAdditionalProperties1": {
"a": [],
"bcd": 4,
"11": true
},
"validateAdditionalProperties2": {
"a": [],
"bcd": 4
},
"validateNumberOfProperties": {
"abc": "a string"
},
"validateRequired": 6,
"validateRequiredProperties1": {
"propA": 6,
"propB": "a string"
},
"validateRequiredProperties2": {
"propA": 6,
"propB": "a string"
},
"validateItems": [
"str-a",
"str-b"
],
"validateNumberOfItems": [
"str-a"
],
"validateUniqueItems": [
"str-a",
"str-b"
],
"validateNumber": 9.6,
"validateInteger": 8,
"validatePattern1": "a string",
"validatePattern2": "a string",
"validateFormat": "blue",
"validateLength": "a",
"validateEnum": {
"x": 11
},
"validateDependencies1": {
"a": "a string",
"b": true
},
"validateDependencies2": {
"a": "a string",
"b": true,
"c": 8
},
"validateAnyOf": "a string",
"validateAllOf": true,
"validateOneOf": 6,
"validateReference": "a string"
};
var v = new Validator();
v.addSchema(referencedSchema, '/ReferencedSchema');
console.log(v.validate(all, schema));