|
1 | 1 | [ |
2 | 2 | { |
3 | 3 | "description": "integer type matches integers", |
4 | | - "specification": [{ |
5 | | - "validation":"6.1.1", |
6 | | - "url": "https://json-schema.org/draft/2020-12/json-schema-validation#name-type" |
7 | | - }], |
| 4 | + "specification": [ |
| 5 | + { |
| 6 | + "validation": "8.2.1" |
| 7 | + }], |
8 | 8 | "schema": { |
9 | 9 | "$schema": "https://json-schema.org/draft/2020-12/schema", |
10 | 10 | "type": "integer" |
|
59 | 59 | }, |
60 | 60 | { |
61 | 61 | "description": "number type matches numbers", |
62 | | - "specification": [{ |
63 | | - "validation":"6.1.1", |
64 | | - "url": "https://json-schema.org/draft/2020-12/json-schema-validation#name-type" |
65 | | - }], |
| 62 | + "specification": [ |
| 63 | + { |
| 64 | + "validation": "8.2.1" |
| 65 | + }], |
| 66 | + |
66 | 67 | "schema": { |
67 | 68 | "$schema": "https://json-schema.org/draft/2020-12/schema", |
68 | 69 | "type": "number" |
|
117 | 118 | }, |
118 | 119 | { |
119 | 120 | "description": "string type matches strings", |
120 | | - "specification": [{ |
121 | | - "validation":"6.1.1", |
122 | | - "url": "https://json-schema.org/draft/2020-12/json-schema-validation#name-type" |
123 | | - }], |
| 121 | + "specification": [ |
| 122 | + { |
| 123 | + "validation": "8.2.1" |
| 124 | + }], |
| 125 | + |
124 | 126 | "schema": { |
125 | 127 | "$schema": "https://json-schema.org/draft/2020-12/schema", |
126 | 128 | "type": "string" |
|
175 | 177 | }, |
176 | 178 | { |
177 | 179 | "description": "object type matches objects", |
178 | | - "specification": [{ |
179 | | - "validation":"6.1.1", |
180 | | - "url": "https://json-schema.org/draft/2020-12/json-schema-validation#name-type" |
181 | | - }], |
| 180 | + "specification": [ |
| 181 | + { |
| 182 | + "validation": "8.2.1" |
| 183 | + }], |
| 184 | + |
182 | 185 | "schema": { |
183 | 186 | "$schema": "https://json-schema.org/draft/2020-12/schema", |
184 | 187 | "type": "object" |
|
223 | 226 | }, |
224 | 227 | { |
225 | 228 | "description": "array type matches arrays", |
226 | | - "specification": [{ |
227 | | - "validation":"6.1.1", |
228 | | - "url": "https://json-schema.org/draft/2020-12/json-schema-validation#name-type" |
229 | | - }], |
| 229 | + "specification": [ |
| 230 | + { |
| 231 | + "validation": "8.2.1" |
| 232 | + }], |
| 233 | + |
230 | 234 | "schema": { |
231 | 235 | "$schema": "https://json-schema.org/draft/2020-12/schema", |
232 | 236 | "type": "array" |
|
271 | 275 | }, |
272 | 276 | { |
273 | 277 | "description": "boolean type matches booleans", |
274 | | - "specification": [{ |
275 | | - "validation":"6.1.1", |
276 | | - "url": "https://json-schema.org/draft/2020-12/json-schema-validation#name-type" |
277 | | - }], |
| 278 | + "specification": [ |
| 279 | + { |
| 280 | + "validation": "8.2.1" |
| 281 | + }], |
| 282 | + |
278 | 283 | "schema": { |
279 | 284 | "$schema": "https://json-schema.org/draft/2020-12/schema", |
280 | 285 | "type": "boolean" |
|
334 | 339 | }, |
335 | 340 | { |
336 | 341 | "description": "null type matches only the null object", |
337 | | - "specification": [{ |
338 | | - "validation":"6.1.1", |
339 | | - "url": "https://json-schema.org/draft/2020-12/json-schema-validation#name-type" |
340 | | - }], |
| 342 | + "specification": [ |
| 343 | + { |
| 344 | + "validation": "8.2.1" |
| 345 | + }], |
| 346 | + |
341 | 347 | "schema": { |
342 | 348 | "$schema": "https://json-schema.org/draft/2020-12/schema", |
343 | 349 | "type": "null" |
|
397 | 403 | }, |
398 | 404 | { |
399 | 405 | "description": "multiple types can be specified in an array", |
400 | | - "specification": [{ |
401 | | - "validation":"6.1.1", |
402 | | - "url": "https://json-schema.org/draft/2020-12/json-schema-validation#name-type" |
403 | | - }], |
| 406 | + "specification": [ |
| 407 | + { |
| 408 | + "validation": "8.2.1" |
| 409 | + }], |
| 410 | + |
404 | 411 | "schema": { |
405 | 412 | "$schema": "https://json-schema.org/draft/2020-12/schema", |
406 | 413 | "type": ["integer", "string"] |
|
445 | 452 | }, |
446 | 453 | { |
447 | 454 | "description": "type as array with one item", |
448 | | - "specification": [{ |
449 | | - "validation":"6.1.1", |
450 | | - "url": "https://json-schema.org/draft/2020-12/json-schema-validation#name-type" |
451 | | - }], |
| 455 | + "specification": [ |
| 456 | + { |
| 457 | + "validation": "8.2.1" |
| 458 | + }], |
| 459 | + |
452 | 460 | "schema": { |
453 | 461 | "$schema": "https://json-schema.org/draft/2020-12/schema", |
454 | 462 | "type": ["string"] |
|
468 | 476 | }, |
469 | 477 | { |
470 | 478 | "description": "type: array or object", |
471 | | - "specification": [{ |
472 | | - "validation":"6.1.1", |
473 | | - "url": "https://json-schema.org/draft/2020-12/json-schema-validation#name-type" |
474 | | - }], |
| 479 | + "specification": [ |
| 480 | + { |
| 481 | + "validation": "8.2.1" |
| 482 | + }], |
| 483 | + |
475 | 484 | "schema": { |
476 | 485 | "$schema": "https://json-schema.org/draft/2020-12/schema", |
477 | 486 | "type": ["array", "object"] |
|
506 | 515 | }, |
507 | 516 | { |
508 | 517 | "description": "type: array, object or null", |
509 | | - "specification": [{ |
510 | | - "validation":"6.1.1", |
511 | | - "url": "https://json-schema.org/draft/2020-12/json-schema-validation#name-type" |
512 | | - }], |
| 518 | + "specification": [ |
| 519 | + { |
| 520 | + "validation": "8.2.1" |
| 521 | + }], |
| 522 | + |
513 | 523 | "schema": { |
514 | 524 | "$schema": "https://json-schema.org/draft/2020-12/schema", |
515 | 525 | "type": ["array", "object", "null"] |
|
0 commit comments