> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kiwify.com.br/llms.txt
> Use this file to discover all available pages before exploring further.

# Checkbox

> Documentation for the checkbox input type in section settings.

The checkbox input type allows users to toggle a boolean value on or off.

## Properties

<ParamField path="type" type="string" required>
  Must be set to "checkbox".
</ParamField>

<ParamField path="id" type="string" required>
  Unique identifier for the setting.
</ParamField>

<ParamField path="label" type="string" required>
  The label shown next to the checkbox.
</ParamField>

<ParamField path="default" type="boolean">
  Default state of the checkbox. Default is false.
</ParamField>

<ParamField path="info" type="string">
  Additional information shown below the checkbox.
</ParamField>

<ParamField path="kiwi_extra" type="object">
  Additional properties for the checkbox. Currently supported:

  * `hidden`: Boolean value, indicates whether this setting should be displayed in Theme Editor's configuration bar
  * `validations`: Apply validations to this setting before saving. Currently supported:
    * `required`: Boolean value. If true, this checkbox must be checked to be valid
</ParamField>

<Panel>
  <Tabs>
    <Tab title="Example">
      ```json theme={null}
      {
        "type": "checkbox",
        "id": "show_title",
        "label": "Show section title",
        "default": true,
        "info": "You can display just an image or the full text"
      }
      ```
    </Tab>

    <Tab title="Result">
      <Frame>
        <img src="https://mintlify.s3.us-west-1.amazonaws.com/kiwify-81/images/en/members-area/reference/schema/fields/settings/input-types/checkbox.webp" alt="Checkbox" />
      </Frame>
    </Tab>
  </Tabs>
</Panel>
