Astra_List_Container_Settings::get_output_schema()

Get output schema.


Description


Return

(array)


Source

File: inc/abilities/customizer/globals/container/class-astra-list-container-settings.php

	public function get_output_schema() {
		return $this->build_output_schema(
			array(
				'summary'        => array(
					'type'        => 'object',
					'description' => 'Quick overview of current container settings.',
				),
				'settings'       => array(
					'type'        => 'object',
					'description' => 'Detailed container settings with values, labels, and metadata.',
				),
				'total_settings' => array(
					'type'        => 'integer',
					'description' => 'Total number of settings returned.',
				),
				'detailed'       => array(
					'type'        => 'boolean',
					'description' => 'Whether detailed information was included.',
				),
				'notes'          => array(
					'type'        => 'array',
					'description' => 'Helpful notes about container settings.',
					'items'       => array( 'type' => 'string' ),
				),
			)
		);
	}

User Contributed Notes

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