> ## 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}
  {
      "id": "fpr-TJh76H8hj778hftdtu66gjio",
      "code": "SLB0004",
      "name": "Guarantee Trust Bank",
      "country": "SL",
      "status": {
          "active": null
      },
      "featureSet": {
          "payout": {
              "canPayTo": null,
              "schemes": [],
              "metadata": null
          },
          "payment": {
              "canPayFrom": null,
              "schemes": [],
              "metadata": null
          },
          "kycVerification": {
              "canVerifyAccount": null,
              "metadata": null
          }
      },
      "createTime": null,
      "updateTime": null
  }
  ```
</ResponseExample>

<ResponseField name="📋" type="Properties">
  <ResponseField name="id" type="string">
    The ID of the bank.

    Example: <code>fpr-TJh76H8hj778hftdtu66gjio</code>
  </ResponseField>

  <ResponseField name="code" type="string">
    The unique code assigned to a bank by Monime to identify it within Monime's ecosystem.

    Example: <code>SLB0004</code>
  </ResponseField>

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

    Example: <code>Guarantee Trust Bank</code>
  </ResponseField>

  <ResponseField name="country" type="string">
    The country of the bank.

    Example: <code>SL</code>
  </ResponseField>

  <ResponseField name="status" type="object">
    The status of the bank's operations within monime'.

    <Expandable title="properties">
      <ResponseField name="active" type="boolean">
        Whether or not this bank is active within Monime.
      </ResponseField>
    </Expandable>
  </ResponseField>

  <ResponseField name="featureSet" type="object">
    The set of Monime features that the bank supports.'

    <Expandable title="properties">
      <ResponseField name="payout" type="object">
        The bank's payout feature information.

        <Expandable title="properties">
          <ResponseField name="canPayTo" type="boolean">
            Whether or not Monime can pay out to an account in the bank.
          </ResponseField>

          <ResponseField name="schemes" type="array">
            The supported payout schemes of the bank.
          </ResponseField>

          <ResponseField name="metadata" type="object">
            Further metadata describing this bank's payout feature.
          </ResponseField>
        </Expandable>
      </ResponseField>

      <ResponseField name="payment" type="object">
        The bank's payment feature information.

        <Expandable title="properties">
          <ResponseField name="canPayFrom" type="boolean">
            Whether or not Monime can accept payment from an account in the bank.
          </ResponseField>

          <ResponseField name="schemes" type="array">
            The supported payment schemes of the bank.
          </ResponseField>

          <ResponseField name="metadata" type="object">
            Further metadata describing this bank's payment feature.
          </ResponseField>
        </Expandable>
      </ResponseField>

      <ResponseField name="kycVerification" type="object">
        The bank's KYC verification feature information.

        <Expandable title="properties">
          <ResponseField name="canVerifyAccount" type="boolean">
            Whether or not Monime can verify an account's KYC' in the bank.
          </ResponseField>

          <ResponseField name="metadata" type="object">
            Further metadata describing this bank's KYC verification feature.
          </ResponseField>
        </Expandable>
      </ResponseField>
    </Expandable>
  </ResponseField>

  <ResponseField name="createTime" type="string">
    The time the bank's support was added.
  </ResponseField>

  <ResponseField name="updateTime" type="string">
    The last time the bank's support was updated.
  </ResponseField>
</ResponseField>
