Automattic\WooCommerce\Admin\API

Leaderboards::get_public_allowed_item_schema()publicWC 1.0

Get schema for the list of allowed leaderboards.

Method of the class: Leaderboards{}

No Hooks.

Return

Array. $schema

Usage

$Leaderboards = new Leaderboards();
$Leaderboards->get_public_allowed_item_schema();

Leaderboards::get_public_allowed_item_schema() code WC 8.7.0

public function get_public_allowed_item_schema() {
	$schema = $this->get_public_item_schema();
	unset( $schema['properties']['rows'] );
	return $schema;
}