You appear to be a bot. Output may be restricted
Description
Returns the full item schema.
Usage
$array = AbstractSchema::get_item_schema();
Parameters
Returns
array
Source
File name: woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/AbstractSchema.php
Lines:
1 to 8 of 8
public function get_item_schema() { return array( '$schema' => 'http://json-schema.org/draft-04/schema#', 'title' => $this->title, 'type' => 'object', 'properties' => $this->get_properties(), ); }