- Timestamp:
- 10/20/2020 06:22:39 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/rest-api/rest-test-controller.php
r49082 r49246 129 129 'minProperties' => 1, 130 130 'maxProperties' => 10, 131 'anyOf' => array( 132 array( 133 'properties' => array( 134 'object_id' => array( 135 'type' => 'integer', 136 'minimum' => 100, 137 ), 138 ), 139 ), 140 array( 141 'properties' => array( 142 'object_id' => array( 143 'type' => 'integer', 144 'maximum' => 100, 145 ), 146 ), 147 ), 148 ), 149 'oneOf' => array( 150 array( 151 'properties' => array( 152 'object_id' => array( 153 'type' => 'integer', 154 'minimum' => 100, 155 ), 156 ), 157 ), 158 array( 159 'properties' => array( 160 'object_id' => array( 161 'type' => 'integer', 162 'maximum' => 100, 163 ), 164 ), 165 ), 166 ), 131 167 'ignored_prop' => 'ignored_prop', 132 168 'context' => array( 'view' ),
Note: See TracChangeset
for help on using the changeset viewer.