WP_REST_Autosaves_Controller::get_item_schema(): array

In this article

Retrieves the autosave’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 = $this->revisions_controller->get_item_schema();

	$schema['properties']['preview_link'] = array(
		'description' => __( 'Preview link for the post.' ),
		'type'        => 'string',
		'format'      => 'uri',
		'context'     => array( 'edit' ),
		'readonly'    => true,
	);

	$this->schema = $schema;

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

Changelog

VersionDescription
5.0.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.