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' ),
),
)
);
}
Expand full source code Collapse full source code View on Trac