# DbtrAcct

For third-party payments, the `DbtrAcct` object contains information that identifies the `Dbtr`'s account where the payment originates. In this object, you'll provide details such as the currency of the account, the account number in the applicable format.

See the table below, or download the [DbtrAcct schema](/assets/dbtracct-business.e25ffd0aac9bebf8dbbe0bfa657339a44c946b100866c5650de9a5a2806432c4.3ea817e8.json).

Note
When you create an identity, the `DbtrAcct` object fields you need to include may vary based on the data required for a specific originator country.
For more information, see [Get data requirements](/products/payments-direct/api-docs/tutorials/create-an-identity#get-data-requirements).


```json
{
  "$ref": "#/components/schemas/dbtracct-business",
  "components": {
    "schemas": {
      "dbtracct-business": {
        "schema": "http://json-schema.org/draft-06/schema#",
        "id": "file://po11#",
        "title": "RippleNet Payment Object - Supporting Information Schema",
        "description": "DbtrAcct object schema",
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "DbtrAcct": {
            "type": "object",
            "description": "Unambiguous identification of the account of the debtor to which a debit entry will be made as a result of the transaction.",
            "properties": {
              "Id": {
                "type": "object",
                "description": "Nature or use of the Debtor account.",
                "properties": {
                  "Othr": {
                    "type": "object",
                    "description": "Debtor account details.",
                    "properties": {
                      "Id": {
                        "description": "Holds the Debtor account number in non-IBAN format.\n\nUsage guidelines:\n\n• If you specify `Othr.Id`, do not specify `IBAN`.\n\n• Specify `NOTPROVIDED` if no information is available about the Debtor's paying instrument (for example, a cash payment), or if this information is being withheld for compliance, regulatory, or privacy reasons.\n\n\t• Do not use this string if Debtor information is available and can be specified. \n\nExample non-IBAN string: `31926819`.",
                        "type": "string",
                        "maxLength": 34
                      }
                    },
                    "required": [
                      "Id"
                    ]
                  }
                }
              }
            },
            "required": [
              "Id"
            ]
          }
        },
        "required": [
          "DbtrAcct"
        ]
      }
    }
  }
}
```