Bank account

{

AttributeData typeDescription
pkPK
book_pkBook PK
nameTextBank Account Name
bank_nameTextBank Name
account_numberTextBank Account Number
account_typeBank Account Type
account_categoryBank Account Category
account_holderList of stringsName(s) of Bank Account Holder
holder_address_1holder_address_2holder_cityholder_stateholder_zipholder_countryTextAddress 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 Parts
endDate Parts

}

{
  "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

}