Make WordPress Core


Ignore:
Timestamp:
06/07/2020 10:40:16 PM (4 years ago)
Author:
TimothyBlynJacobs
Message:

REST API: Support the (min|max)Items JSON Schema keywords.

A future commit will add support for the uniqueItems keyword.

Props sorenbronsted.
See #48821.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/rest-api/rest-test-controller.php

    r47911 r47923  
    102102                ),
    103103                'somearray'      => array(
    104                     'type'    => 'array',
    105                     'items'   => array(
     104                    'type'     => 'array',
     105                    'items'    => array(
    106106                        'type' => 'string',
    107107                    ),
    108                     'context' => array( 'view' ),
     108                    'minItems' => 1,
     109                    'maxItems' => 10,
     110                    'context'  => array( 'view' ),
    109111                ),
    110112                'someobject'     => array(
Note: See TracChangeset for help on using the changeset viewer.