rest_find_matching_pattern_property_schema()
Finds the schema for a property using the patternProperties keyword.
No Hooks.
Return
Array|null
. The schema of matching pattern property, or null if no patterns match.
Usage
rest_find_matching_pattern_property_schema( $property, $args );
- $property(string) (required)
- The property name to check.
- $args(array) (required)
- The schema array to use.
Changelog
Since 5.6.0 | Introduced. |
rest_find_matching_pattern_property_schema() rest find matching pattern property schema code WP 6.7.1
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; }