rest_get_allowed_schema_keywords()WP 5.6.0

Get all valid JSON schema properties.

Хуков нет.

Возвращает

Строку[]. All valid JSON schema properties.

Использование

rest_get_allowed_schema_keywords();

Список изменений

С версии 5.6.0 Введена.

Код rest_get_allowed_schema_keywords() WP 6.5.2

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',
	);
}