|
327 | 327 |
|
328 | 328 | <section title="items">
|
329 | 329 | <t>
|
330 |
| - The value of "items" MUST be either an object or an array of objects. |
331 |
| - Each object MUST be a valid JSON Schema. |
| 330 | + The value of "items" MUST be either a valid JSON Schema or an array of valid JSON Schemas. |
332 | 331 | </t>
|
333 | 332 | <t>
|
334 | 333 | If absent, it can be considered present with an empty schema.
|
|
350 | 349 |
|
351 | 350 | <section title="additionalItems">
|
352 | 351 | <t>
|
353 |
| - The value of "additionalItems" MUST be a boolean or an object. |
354 |
| - If it is an object, the object MUST be a valid JSON Schema. |
| 352 | + The value of "additionalItems" MUST be a valid JSON Schema. |
355 | 353 | </t>
|
356 | 354 | <t>
|
357 | 355 | If absent, it can be considered present with an empty schema.
|
|
466 | 464 | <section title="properties">
|
467 | 465 | <t>
|
468 | 466 | The value of "properties" MUST be an object. Each value of this object
|
469 |
| - MUST be an object, and each object MUST be a valid JSON Schema. |
| 467 | + MUST be a valid JSON Schema. |
470 | 468 | </t>
|
471 | 469 | <t>
|
472 | 470 | If absent, it can be considered the same as an empty object.
|
|
487 | 485 | The value of "patternProperties" MUST be an object. Each property name
|
488 | 486 | of this object SHOULD be a valid regular expression, according to the
|
489 | 487 | ECMA 262 regular expression dialect. Each property value of this object
|
490 |
| - MUST be an object, and each object MUST be a valid JSON Schema. |
| 488 | + MUST be a valid JSON Schema. |
491 | 489 | </t>
|
492 | 490 | <t>
|
493 | 491 | If absent, it can be considered the same as an empty object.
|
|
506 | 504 |
|
507 | 505 | <section title="additionalProperties">
|
508 | 506 | <t>
|
509 |
| - The value of "additionalProperties" MUST be a boolean or an |
510 |
| - object. If it is an object, the object MUST be a valid JSON Schema. |
| 507 | + The value of "additionalProperties" MUST be a valid JSON Schema. |
511 | 508 | </t>
|
512 | 509 | <t>
|
513 | 510 | If "additionalProperties" is absent, it may be considered present with
|
|
535 | 532 | </t>
|
536 | 533 | <t>
|
537 | 534 | This keyword's value MUST be an object. Each property specifies a dependency.
|
538 |
| - Each dependency value MUST be an object or an array. |
| 535 | + Each dependency value MUST be an array or a valid JSON Schema. |
539 | 536 | </t>
|
540 | 537 | <t>
|
541 |
| - If the dependency value is an object, it MUST be a valid JSON Schema. If the |
542 |
| - dependency key is a property in the instance, the dependency value must validate |
543 |
| - against the entire instance. |
| 538 | + If the dependency value is a subschema, and the dependency key is a property |
| 539 | + in the instance, the entire instance must validate against the dependency value. |
544 | 540 | </t>
|
545 | 541 | <t>
|
546 | 542 | If the dependency value is an array, each element in the array,
|
|
0 commit comments