WP_REST_Pattern_Directory_Controller::get_item_schema()publicWP 5.8.0

Retrieves the block pattern's schema, conforming to JSON Schema.

Method of the class: WP_REST_Pattern_Directory_Controller{}

No Hooks.

Return

Array. Item schema data.

Usage

$WP_REST_Pattern_Directory_Controller = new WP_REST_Pattern_Directory_Controller();
$WP_REST_Pattern_Directory_Controller->get_item_schema();

Changelog

Since 5.8.0 Introduced.
Since 6.2.0 Added 'block_types' to schema.

WP_REST_Pattern_Directory_Controller::get_item_schema() code WP 6.4.3

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

	$this->schema = array(
		'$schema'    => 'http://json-schema.org/draft-04/schema#',
		'title'      => 'pattern-directory-item',
		'type'       => 'object',
		'properties' => array(
			'id'             => array(
				'description' => __( 'The pattern ID.' ),
				'type'        => 'integer',
				'minimum'     => 1,
				'context'     => array( 'view', 'edit', 'embed' ),
			),

			'title'          => array(
				'description' => __( 'The pattern title, in human readable format.' ),
				'type'        => 'string',
				'minLength'   => 1,
				'context'     => array( 'view', 'edit', 'embed' ),
			),

			'content'        => array(
				'description' => __( 'The pattern content.' ),
				'type'        => 'string',
				'minLength'   => 1,
				'context'     => array( 'view', 'edit', 'embed' ),
			),

			'categories'     => array(
				'description' => __( "The pattern's category slugs." ),
				'type'        => 'array',
				'uniqueItems' => true,
				'items'       => array( 'type' => 'string' ),
				'context'     => array( 'view', 'edit', 'embed' ),
			),

			'keywords'       => array(
				'description' => __( "The pattern's keywords." ),
				'type'        => 'array',
				'uniqueItems' => true,
				'items'       => array( 'type' => 'string' ),
				'context'     => array( 'view', 'edit', 'embed' ),
			),

			'description'    => array(
				'description' => __( 'A description of the pattern.' ),
				'type'        => 'string',
				'minLength'   => 1,
				'context'     => array( 'view', 'edit', 'embed' ),
			),

			'viewport_width' => array(
				'description' => __( 'The preferred width of the viewport when previewing a pattern, in pixels.' ),
				'type'        => 'integer',
				'context'     => array( 'view', 'edit', 'embed' ),
			),

			'block_types'    => array(
				'description' => __( 'The block types which can use this pattern.' ),
				'type'        => 'array',
				'uniqueItems' => true,
				'items'       => array( 'type' => 'string' ),
				'context'     => array( 'view', 'embed' ),
			),
		),
	);

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