|
1 | 1 | [ |
2 | 2 | { |
3 | 3 | "description": "integer type matches integers", |
| 4 | + "specification": [{"validation": "6.1.1"}], |
4 | 5 | "schema": { |
5 | 6 | "$schema": "https://json-schema.org/draft/2020-12/schema", |
6 | 7 | "type": "integer" |
|
55 | 56 | }, |
56 | 57 | { |
57 | 58 | "description": "number type matches numbers", |
| 59 | + "specification": [{"validation": "6.1.1"}], |
58 | 60 | "schema": { |
59 | 61 | "$schema": "https://json-schema.org/draft/2020-12/schema", |
60 | 62 | "type": "number" |
|
109 | 111 | }, |
110 | 112 | { |
111 | 113 | "description": "string type matches strings", |
| 114 | + "specification": [{"validation": "6.1.1"}], |
112 | 115 | "schema": { |
113 | 116 | "$schema": "https://json-schema.org/draft/2020-12/schema", |
114 | 117 | "type": "string" |
|
163 | 166 | }, |
164 | 167 | { |
165 | 168 | "description": "object type matches objects", |
| 169 | + "specification": [{"validation": "6.1.1"}], |
166 | 170 | "schema": { |
167 | 171 | "$schema": "https://json-schema.org/draft/2020-12/schema", |
168 | 172 | "type": "object" |
|
207 | 211 | }, |
208 | 212 | { |
209 | 213 | "description": "array type matches arrays", |
| 214 | + "specification": [{"validation": "6.1.1"}], |
210 | 215 | "schema": { |
211 | 216 | "$schema": "https://json-schema.org/draft/2020-12/schema", |
212 | 217 | "type": "array" |
|
251 | 256 | }, |
252 | 257 | { |
253 | 258 | "description": "boolean type matches booleans", |
| 259 | + "specification": [{"validation": "6.1.1"}], |
254 | 260 | "schema": { |
255 | 261 | "$schema": "https://json-schema.org/draft/2020-12/schema", |
256 | 262 | "type": "boolean" |
|
310 | 316 | }, |
311 | 317 | { |
312 | 318 | "description": "null type matches only the null object", |
| 319 | + "specification": [{"validation": "6.1.1"}], |
313 | 320 | "schema": { |
314 | 321 | "$schema": "https://json-schema.org/draft/2020-12/schema", |
315 | 322 | "type": "null" |
|
369 | 376 | }, |
370 | 377 | { |
371 | 378 | "description": "multiple types can be specified in an array", |
| 379 | + "specification": [{"validation": "6.1.1"}], |
372 | 380 | "schema": { |
373 | 381 | "$schema": "https://json-schema.org/draft/2020-12/schema", |
374 | 382 | "type": ["integer", "string"] |
|
413 | 421 | }, |
414 | 422 | { |
415 | 423 | "description": "type as array with one item", |
| 424 | + "specification": [{"validation": "6.1.1"}], |
416 | 425 | "schema": { |
417 | 426 | "$schema": "https://json-schema.org/draft/2020-12/schema", |
418 | 427 | "type": ["string"] |
|
432 | 441 | }, |
433 | 442 | { |
434 | 443 | "description": "type: array or object", |
| 444 | + "specification": [{"validation": "6.1.1"}], |
435 | 445 | "schema": { |
436 | 446 | "$schema": "https://json-schema.org/draft/2020-12/schema", |
437 | 447 | "type": ["array", "object"] |
|
466 | 476 | }, |
467 | 477 | { |
468 | 478 | "description": "type: array, object or null", |
| 479 | + "specification": [{"validation": "6.1.1"}], |
469 | 480 | "schema": { |
470 | 481 | "$schema": "https://json-schema.org/draft/2020-12/schema", |
471 | 482 | "type": ["array", "object", "null"] |
|
0 commit comments