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

# settings.onboardingContinued

> Emitted when onboarding continues.

## Event Properties

| Field          | Value                            |
| -------------- | -------------------------------- |
| `event`        | `"settings.onboardingContinued"` |
| `confidential` | `boolean`                        |
| `payload`      | `object`                         |

<Tabs>
  <Tab title="Public Payload">
    | Field  | Type                                       | Description                     |
    | ------ | ------------------------------------------ | ------------------------------- |
    | `step` | `"country" \| "specialty" \| "microphone"` | Which step the user advanced to |

    #### Example

    ```json theme={null}
    {
      "event": "settings.onboardingContinued",
      "confidential": false,
      "payload": {
        "step": "microphone"
      }
    }
    ```
  </Tab>

  <Tab title="Confidential Payload">
    | Field  | Type                                       | Description                     |
    | ------ | ------------------------------------------ | ------------------------------- |
    | `step` | `"country" \| "specialty" \| "microphone"` | Which step the user advanced to |

    #### Example

    ```json theme={null}
    {
      "event": "settings.onboardingContinued",
      "confidential": true,
      "payload": {
        "step": "microphone"
      }
    }
    ```
  </Tab>
</Tabs>
