rest_get_allowed_schema_keywords

函数
rest_get_allowed_schema_keywords ( No parameters )
返回值
  • (string[]) All valid JSON schema properties.
定义位置
相关方法
get_allowed_themesrest_send_allow_headerget_site_allowed_themesget_allowed_http_originsget_allowed_mime_types
引入
5.6.0
弃用
-

rest_get_allowed_schema_keywords: 这个函数用来获取一个模式的允许的关键字。它接收一个模式对象并返回一个允许的关键字数组。

获取所有有效的JSON模式属性。

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

常见问题

FAQs
查看更多 >