Summery Summery
Recursively add additionalProperties = false to all objects in a schema if no additionalProperties setting is specified.
Syntax Syntax
Description Description
This is needed to restrict properties of objects in meta values to only registered items, as the REST API will allow additional properties by default.
Parameters Parameters
- $schema
-
(Required) The schema array.
Return Return
(array)
Source Source
File: wp-includes/rest-api/fields/class-wp-rest-meta-fields.php
public function check_meta_is_array( $value, $request, $param ) { if ( ! is_array( $value ) ) { return false; } return $value; } /** * Recursively add additionalProperties = false to all objects in a schema if no additionalProperties setting * is specified. * * This is needed to restrict properties of objects in meta values to only * registered items, as the REST API will allow additional properties by * default. * * @since 5.3.0 *
Advertisement
Changelog Changelog
Version | Description |
---|---|
5.3.0 | Introduced. |