W3cubDocs

/WordPress

WP_REST_Global_Styles_Revisions_Controller::get_item_schema(): array

Retrieves the revision’s schema, conforming to JSON Schema.

Return

array Item schema data.

Source

public function get_item_schema() {
	if ( $this->schema ) {
		return $this->add_additional_fields_schema( $this->schema );
	}

	$schema               = parent::get_item_schema();
	$parent_schema        = $this->parent_controller->get_item_schema();
	$schema['properties'] = array_merge( $schema['properties'], $parent_schema['properties'] );

	unset(
		$schema['properties']['guid'],
		$schema['properties']['slug'],
		$schema['properties']['meta'],
		$schema['properties']['content'],
		$schema['properties']['title']
	);

		$this->schema = $schema;

	return $this->add_additional_fields_schema( $this->schema );
}

Changelog

Version Description
6.6.0 Merged parent and parent controller schema data.
6.3.0 Introduced.

© 2003–2024 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_rest_global_styles_revisions_controller/get_item_schema