> ## 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.

# Module

> Documentation for the module input type in section settings.

The module input type allows to select a module from a course registered in the club.

## Properties

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

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

<ParamField path="label" type="string" required>
  The label shown in the theme editor.
</ParamField>

<ParamField path="default" type="string">
  <Warning>Not supported for this input type.</Warning>
</ParamField>

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

<ParamField path="placeholder" type="string">
  <Warning>Not supported for this input type.</Warning>
</ParamField>

<ParamField path="kiwi_extra" type="object">
  Additional properties for the module input. 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, a module must be selected to be valid
</ParamField>

<Panel>
  <Tabs>
    <Tab title="Example">
      ```json theme={null}
      {
        "type": "module",
        "id": "module",
        "label": "Module",
        "info": "Select the module to be displayed in the section"
      }
      ```
    </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/module.webp" alt="module-selector" />
      </Frame>
    </Tab>
  </Tabs>
</Panel>
