Weak hands cannot be planted, meager skills have no foundation. Shallow wisdom is futile, how can one hope for a good name?扰扰从役倦，屑屑身事微。少壮轻年月，迟暮惜光辉。
<html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><?php

namespace Automattic\WooCommerce\Blueprint\Steps;

/**
 * Abstract class Step
 *
 * This class defines the structure for a Step that requires arguments to perform an action.
 * You can think it as a function described in JSON format.
 *
 * A Step should also be capable of returning formatted data that can be imported later.
 * Additionally, a Step can validate data.
 */
abstract class Step {
	/**
	 * Meta values for the step.
	 *
	 * @var array $meta_values
	 */
	protected array $meta_values = array();

	/**
	 * Get the step name.
	 *
	 * @return string
	 */
	abstract public static function get_step_name(): string;

	/**
	 * Get the schema for this step.
	 *
	 * @param int $version The schema version.
	 *
	 * @return array
	 */
	abstract public static function get_schema( int $version = 1 ): array;

	/**
	 * Prepare the JSON array for this step.
	