WP_REST_Global_Styles_Controller::get_item_schema()publicWP 5.9.0

Retrieves the global styles type' schema, conforming to JSON Schema.

Method of the class: WP_REST_Global_Styles_Controller{}

No Hooks.

Return

Array. Item schema data.

Usage

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

Changelog

Since 5.9.0 Introduced.

WP_REST_Global_Styles_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 );
	}

	$schema = array(
		'$schema'    => 'http://json-schema.org/draft-04/schema#',
		'title'      => $this->post_type,
		'type'       => 'object',
		'properties' => array(
			'id'       => array(
				'description' => __( 'ID of global styles config.' ),
				'type'        => 'string',
				'context'     => array( 'embed', 'view', 'edit' ),
				'readonly'    => true,
			),
			'styles'   => array(
				'description' => __( 'Global styles.' ),
				'type'        => array( 'object' ),
				'context'     => array( 'view', 'edit' ),
			),
			'settings' => array(
				'description' => __( 'Global settings.' ),
				'type'        => array( 'object' ),
				'context'     => array( 'view', 'edit' ),
			),
			'title'    => array(
				'description' => __( 'Title of the global styles variation.' ),
				'type'        => array( 'object', 'string' ),
				'default'     => '',
				'context'     => array( 'embed', 'view', 'edit' ),
				'properties'  => array(
					'raw'      => array(
						'description' => __( 'Title for the global styles variation, as it exists in the database.' ),
						'type'        => 'string',
						'context'     => array( 'view', 'edit', 'embed' ),
					),
					'rendered' => array(
						'description' => __( 'HTML title for the post, transformed for display.' ),
						'type'        => 'string',
						'context'     => array( 'view', 'edit', 'embed' ),
						'readonly'    => true,
					),
				),
			),
		),
	);

	$this->schema = $schema;

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