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

# Object Model

<ResponseExample>
  ```json JSON Model theme={null}
  {
      "provider": {
          "code": "m17",
          "type": "momo",
          "name": "Orange Money"
      },
      "accountId": null,
      "accountHolderProfile": {
          "firstName": null,
          "lastName": null
      },
      "metadata": null
  }
  ```
</ResponseExample>

<ResponseField name="📋" type="Properties">
  <ResponseField name="provider" type="object">
    The provider info of the verification object.

    <Expandable title="properties">
      <ResponseField name="code" type="string">
        The code of the provider as assigned by Monime.

        Example: <code>m17</code>
      </ResponseField>

      <ResponseField name="type" type="enum<string>">
        The type of the provider.

        Available options: <code>momo</code> <code>bank</code> <code>wallet</code>
      </ResponseField>

      <ResponseField name="name" type="string">
        The name of the provider

        Example: <code>Orange Money</code>
      </ResponseField>
    </Expandable>
  </ResponseField>

  <ResponseField name="accountId" type="string">
    The ID of the financial account in the provider's ecosystem associated with this verification.
  </ResponseField>

  <ResponseField name="accountHolderProfile" type="object">
    The  profile of the account holder in the provider's ecosystem.

    <Expandable title="properties">
      <ResponseField name="firstName" type="string">
        The first name of the account holder in the provider's ecosystem.
      </ResponseField>

      <ResponseField name="lastName" type="string">
        The last name of the account holder in the provider's ecosystem.
      </ResponseField>
    </Expandable>
  </ResponseField>

  <ResponseField name="metadata" type="object">
    The metadata of the KYC verification.
  </ResponseField>
</ResponseField>
