documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "OCC", document_type = "Other" and posted_year = 2017 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, posted_month, open_for_comment, withdrawn, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
| id | agency_id | docket_id | title | document_type | subtype | posted_date ▲ | posted_year | posted_month | comment_start_date | comment_end_date | last_modified | fr_doc_num | open_for_comment | withdrawn | object_id |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| OCC-2017-0022-0001 | OCC | Bank Mutual, Brown Deer, WI to merge with and into Associated Bank, NA, Green Bay, WI OCC-2017-0022 | Associate Bank NA to acquire Bank Mutual Application | Other | Application | 2017-10-10T04:00:00Z | 2017 | 10 | 2017-09-01T04:00:00Z | 2017-10-07T03:59:59Z | 2024-11-07T01:19:21Z | 1 | 0 | 0900006482bb4cb0 | |
| OCC-2017-0015-0001 | OCC | Capital Bank Corporation, Raleigh, NC to merge with and into First Tennessee Bank, NA, Memphis, TN OCC-2017-0015 | Capital Bank Corporation, Raleigh, NC, to merge with and into First TN Bank, NA, Memphis, TN (2017) | Other | Application | 2017-07-28T04:00:00Z | 2017 | 7 | 2017-06-29T04:00:00Z | 2017-07-29T03:59:59Z | 2024-11-07T01:03:14Z | 1 | 0 | 090000648297f8e7 | |
| OCC-2017-0007-0001 | OCC | Sterling National Bank, Montebello, NY to acquire by merger Astoria Bank, Long Island City, NY OCC-2017-0007 | Sterling National Bank and Astoria Bank Application | Other | Application | 2017-05-08T04:00:00Z | 2017 | 5 | 2017-04-19T04:00:00Z | 2017-05-19T03:59:59Z | 2024-11-07T00:58:50Z | 1 | 0 | 0900006482597830 | |
| OCC-2017-0005-0001 | OCC | Community Bank, N.A., Canton, NY to acquire by merger Merchants Bank, South Burlington, VT OCC-2017-0005 | Community Bank, NA and Merchants Bank Merger Application | Other | Application | 2017-02-15T05:00:00Z | 2017 | 2 | 2016-12-12T05:00:00Z | 2017-01-11T04:59:59Z | 2024-11-11T21:35:13Z | 1 | 0 | 09000064824c2cea | |
| OCC-2017-0004-0004 | OCC | TD Bank National Association, Wilmington, DE to acquire by merger Scottrade Bank, St. Louis, MO OCC-2017-0004 | TD Bank Application Public Exhibit 5 (CRA) | Other | Application | 2017-01-18T05:00:00Z | 2017 | 1 | 2017-01-18T19:04:00Z | 0 | 0 | 0900006482481e49 | |||
| OCC-2017-0004-0001 | OCC | TD Bank National Association, Wilmington, DE to acquire by merger Scottrade Bank, St. Louis, MO OCC-2017-0004 | TD Bank NA and Scottrade Bank Merger Application | Other | Application | 2017-01-11T05:00:00Z | 2017 | 1 | 2016-12-08T05:00:00Z | 2017-01-07T04:59:59Z | 2024-11-07T23:53:15Z | 1 | 0 | 090000648245a359 | |
| OCC-2016-0035-0003 | OCC | EverBank, Jacksonville, FL to acquire by merger TIAA-CREF Trust Company, FSB, St. Louis, MO OCC-2016-0035 | Comment Letter FFW 1.6.17 | Other | 2017-01-10T00:00:00Z | 2017 | 1 | 2017-01-11T13:09:52Z | 0 | 1 | 090000648245678c | ||||
| OCC-2017-0001-0001 | OCC | Capital One, NA, McLean, VA to acquire by merger World's Foremost Bank, Sidney, NE. OCC-2017-0001 | Capital One, NA and World's Foremost Bank Merger Application | Other | Application | 2017-01-05T05:00:00Z | 2017 | 1 | 2016-11-23T05:00:00Z | 2016-12-23T04:59:59Z | 2024-11-12T06:16:22Z | 1 | 0 | 090000648244be66 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE documents (
id TEXT PRIMARY KEY,
agency_id TEXT,
docket_id TEXT REFERENCES dockets(id),
title TEXT,
document_type TEXT,
subtype TEXT,
posted_date TEXT,
posted_year INTEGER,
posted_month INTEGER,
comment_start_date TEXT,
comment_end_date TEXT,
last_modified TEXT,
fr_doc_num TEXT,
open_for_comment INTEGER,
withdrawn INTEGER,
object_id TEXT
);
CREATE INDEX idx_docs_agency ON documents(agency_id);
CREATE INDEX idx_docs_docket ON documents(docket_id);
CREATE INDEX idx_docs_date ON documents(posted_date);
CREATE INDEX idx_docs_year ON documents(posted_year);
CREATE INDEX idx_docs_type ON documents(document_type);
CREATE INDEX idx_docs_frnum ON documents(fr_doc_num);
CREATE INDEX idx_docs_comment_end ON documents(comment_end_date) WHERE comment_end_date IS NOT NULL AND withdrawn = 0;