rest_find_matching_pattern_property_schema( string $property, array $args )

Finds the schema for a property using the patternProperties keyword.

Parameters

$property

(string) (Required) The property name to check.

$args

(array) (Required) The schema array to use.

Return

(array|null) The schema of matching pattern property, or null if no patterns match.

Source

File: wp-includes/rest-api.php

function rest_find_matching_pattern_property_schema( $property, $args ) {
	if ( isset( $args['patternProperties'] ) ) {
		foreach ( $args['patternProperties'] as $pattern => $child_schema ) {
			if ( rest_validate_json_schema_pattern( $pattern, $property ) ) {
				return $child_schema;
			}
		}
	}

	return null;
}

Changelog

Version Description
5.6.0 Introduced.

© 2003–2021 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/rest_find_matching_pattern_property_schema