> ## Documentation Index
> Fetch the complete documentation index at: https://mintlify-han-update-changelogs.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Expandables

> Toggle to display nested properties.

<ResponseField name="user" type="User Object">
  <Expandable title="properties">
    <ResponseField name="full_name" type="string">
      The full name of the user
    </ResponseField>

    <ResponseField name="is_over_21" type="boolean">
      Whether the user is over 21 years old
    </ResponseField>
  </Expandable>
</ResponseField>

<RequestExample>
  ```jsx Expandable Example
  <ResponseField name="user" type="User Object">
    <Expandable title="properties">
      <ResponseField name="full_name" type="string">
        The full name of the user
      </ResponseField>

      <ResponseField name="is_over_21" type="boolean">
        Whether the user is over 21 years old
      </ResponseField>
    </Expandable>
  </ResponseField>
  ```
</RequestExample>

## Props

<ResponseField name="title" type="string">
  The name of the object you are showing. Used to generate the "Show NAME" and
  "Hide NAME" text.
</ResponseField>

<ResponseField name="defaultOpen" type="boolean" default="false">
  Set to true to show the component as open when the page loads.
</ResponseField>
