rest_get_allowed_schema_keywords()
Get all valid JSON schema properties.
Хуков нет.
Возвращает
Строку[]. All valid JSON schema properties.
Использование
rest_get_allowed_schema_keywords();
Список изменений
| С версии 5.6.0 | Введена. |
Код rest_get_allowed_schema_keywords() rest get allowed schema keywords WP 6.9.4
function rest_get_allowed_schema_keywords() {
return array(
'title',
'description',
'default',
'type',
'format',
'enum',
'items',
'properties',
'additionalProperties',
'patternProperties',
'minProperties',
'maxProperties',
'minimum',
'maximum',
'exclusiveMinimum',
'exclusiveMaximum',
'multipleOf',
'minLength',
'maxLength',
'pattern',
'minItems',
'maxItems',
'uniqueItems',
'anyOf',
'oneOf',
);
}