diff --git a/src/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php b/src/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php
index 98a5e21..5ae2621 100644
a
|
b
|
class WP_REST_Taxonomies_Controller extends WP_REST_Controller { |
279 | 279 | 'types' => array( |
280 | 280 | 'description' => __( 'Types associated with resource.' ), |
281 | 281 | 'type' => 'array', |
| 282 | 'items' => array( |
| 283 | 'type' => 'string', |
| 284 | ), |
282 | 285 | 'context' => array( 'view', 'edit' ), |
283 | 286 | 'readonly' => true, |
284 | 287 | ), |