Bank account

The following attributes and considered while processing a bank account:

AttributeData typeDescription
pkPKUnique identification number of the Book.
book_pkBook PKUnique identification number of the Book.
nameTextBank Account Name
bank_nameTextBank Name
account_numberTextBank Account Number
account_typeBank Account TypeType of the Bank Account
account_categoryBank Account CategoryCategory of the bank account
account_holderList of stringsName(s) of Bank Account Holder
holder_address_1
holder_address_2
holder_city
holder_state
holder_zip
holder_country
TextAddress of Bank Account Holder
activity_infoActivity InfoA series of date ranges indicating periods of activity
and inactivity in a Bank Account
periodsList of PeriodsList of Statement Periods captured for this Bank Account

Activity info

AttributeData typeDescription
activeList of Date Part RangesSeries of date ranges during which this Bank Account shows activity.
missingList of Date Part RangesSeries of date ranges during which this Bank Account does not show activity.
{
  "active": [
    {
      "start": { "year": 2018, "day":  1, "month": 6 },
        "end": { "year": 2018, "day": 30, "month": 6 }
    },
    {
      "start": { "year": 2018, "day":  1, "month": 10 },
        "end": { "year": 2018, "day": 31, "month": 10 }
    }
  ],
  "missing": [
    {
      "start": { "year": 2018, "day": 30, "month": 6  },
        "end": { "year": 2018, "day":  1, "month": 10 }
    }
  ]
}

Date part range

AttributeData typeDescription
startDate PartsStart date
endDate PartsEnd date
{
  "start": { "year": 2018, "day":  1, "month": 6 },
    "end": { "year": 2018, "day": 30, "month": 6 }
}

Date parts

AttributeData typeDescription
yearInteger4-digit year
monthIntegerMonth value between 1-12
dayIntegerDay of month