diff --git a/src/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php b/src/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php
index 3454dc1..1b20290 100644
a
|
b
|
class WP_REST_Comments_Controller extends WP_REST_Controller { |
1076 | 1076 | */ |
1077 | 1077 | public function get_item_schema() { |
1078 | 1078 | $schema = array( |
1079 | | '$schema' => 'http://json-schema.org/draft-04/schema#', |
| 1079 | '$schema' => 'http://json-schema.org/schema#', |
1080 | 1080 | 'title' => 'comment', |
1081 | 1081 | 'type' => 'object', |
1082 | 1082 | 'properties' => array( |
diff --git a/src/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php b/src/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php
index 13ffee0..75f9d30 100644
a
|
b
|
class WP_REST_Post_Statuses_Controller extends WP_REST_Controller { |
243 | 243 | */ |
244 | 244 | public function get_item_schema() { |
245 | 245 | $schema = array( |
246 | | '$schema' => 'http://json-schema.org/draft-04/schema#', |
| 246 | '$schema' => 'http://json-schema.org/schema#', |
247 | 247 | 'title' => 'status', |
248 | 248 | 'type' => 'object', |
249 | 249 | 'properties' => array( |
diff --git a/src/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php b/src/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php
index 358bad8..534aa8e 100644
a
|
b
|
class WP_REST_Post_Types_Controller extends WP_REST_Controller { |
199 | 199 | */ |
200 | 200 | public function get_item_schema() { |
201 | 201 | $schema = array( |
202 | | '$schema' => 'http://json-schema.org/draft-04/schema#', |
| 202 | '$schema' => 'http://json-schema.org/schema#', |
203 | 203 | 'title' => 'type', |
204 | 204 | 'type' => 'object', |
205 | 205 | 'properties' => array( |
diff --git a/src/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php b/src/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php
index 0122f9a..295cfa1 100644
a
|
b
|
class WP_REST_Posts_Controller extends WP_REST_Controller { |
1655 | 1655 | public function get_item_schema() { |
1656 | 1656 | |
1657 | 1657 | $schema = array( |
1658 | | '$schema' => 'http://json-schema.org/draft-04/schema#', |
| 1658 | '$schema' => 'http://json-schema.org/schema#', |
1659 | 1659 | 'title' => $this->post_type, |
1660 | 1660 | 'type' => 'object', |
1661 | 1661 | // Base properties for every Post. |
diff --git a/src/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php b/src/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php
index 9ecd0ad..4c21d01 100644
a
|
b
|
class WP_REST_Revisions_Controller extends WP_REST_Controller { |
376 | 376 | */ |
377 | 377 | public function get_item_schema() { |
378 | 378 | $schema = array( |
379 | | '$schema' => 'http://json-schema.org/draft-04/schema#', |
| 379 | '$schema' => 'http://json-schema.org/schema#', |
380 | 380 | 'title' => "{$this->parent_post_type}-revision", |
381 | 381 | 'type' => 'object', |
382 | 382 | // Base properties for every Revision. |
diff --git a/src/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php b/src/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php
index 5d16fb3..3bf7431 100644
a
|
b
|
class WP_REST_Settings_Controller extends WP_REST_Controller { |
282 | 282 | $options = $this->get_registered_options(); |
283 | 283 | |
284 | 284 | $schema = array( |
285 | | '$schema' => 'http://json-schema.org/draft-04/schema#', |
| 285 | '$schema' => 'http://json-schema.org/schema#', |
286 | 286 | 'title' => 'settings', |
287 | 287 | 'type' => 'object', |
288 | 288 | 'properties' => array(), |
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..af3e9fb 100644
a
|
b
|
class WP_REST_Taxonomies_Controller extends WP_REST_Controller { |
230 | 230 | */ |
231 | 231 | public function get_item_schema() { |
232 | 232 | $schema = array( |
233 | | '$schema' => 'http://json-schema.org/draft-04/schema#', |
| 233 | '$schema' => 'http://json-schema.org/schema#', |
234 | 234 | 'title' => 'taxonomy', |
235 | 235 | 'type' => 'object', |
236 | 236 | 'properties' => array( |
diff --git a/src/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php b/src/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php
index ceaa26b..51d6a22 100644
a
|
b
|
class WP_REST_Terms_Controller extends WP_REST_Controller { |
797 | 797 | */ |
798 | 798 | public function get_item_schema() { |
799 | 799 | $schema = array( |
800 | | '$schema' => 'http://json-schema.org/draft-04/schema#', |
| 800 | '$schema' => 'http://json-schema.org/schema#', |
801 | 801 | 'title' => 'post_tag' === $this->taxonomy ? 'tag' : $this->taxonomy, |
802 | 802 | 'type' => 'object', |
803 | 803 | 'properties' => array( |
diff --git a/src/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php b/src/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php
index bb3737d..e649d43 100644
a
|
b
|
class WP_REST_Users_Controller extends WP_REST_Controller { |
995 | 995 | */ |
996 | 996 | public function get_item_schema() { |
997 | 997 | $schema = array( |
998 | | '$schema' => 'http://json-schema.org/draft-04/schema#', |
| 998 | '$schema' => 'http://json-schema.org/schema#', |
999 | 999 | 'title' => 'user', |
1000 | 1000 | 'type' => 'object', |
1001 | 1001 | 'properties' => array( |