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

> Emitted when onboarding completes.

## Event Properties

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

<Tabs>
  <Tab title="Public Payload">
    | Field           | Type     | Description                       |
    | --------------- | -------- | --------------------------------- |
    | `countryCode`   | `string` | User's selected country           |
    | `languageCode`  | `string` | User's selected language          |
    | `specialtyName` | `string` | User's selected medical specialty |

    #### Example

    ```json theme={null}
    {
      "event": "settings.onboardingCompleted",
      "confidential": false,
      "payload": {
        "countryCode": "DK",
        "languageCode": "en",
        "specialtyName": "cardiology"
      }
    }
    ```
  </Tab>

  <Tab title="Confidential Payload">
    | Field           | Type     | Description                       |
    | --------------- | -------- | --------------------------------- |
    | `countryCode`   | `string` | User's selected country           |
    | `languageCode`  | `string` | User's selected language          |
    | `specialtyName` | `string` | User's selected medical specialty |

    #### Example

    ```json theme={null}
    {
      "event": "settings.onboardingCompleted",
      "confidential": true,
      "payload": {
        "countryCode": "DK",
        "languageCode": "en",
        "specialtyName": "cardiology"
      }
    }
    ```
  </Tab>
</Tabs>
