documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where agency_id = "FDIC", document_type = "Proposed Rule" and posted_year = 2007 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, comment_end_date, last_modified, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FDIC-2007-0079-0001 | FDIC | Interagency Notice of Proposed Rulemaking: Procedures To Enhance the Accuracy and Integrity of Information Furnished to Consumer Reporting Agencies Under Section 312 of the Fair and Accurate Credit Transactions Act | Proposed Rule | 2007-12-13T05:00:00Z | 2007 | 12 | 2007-12-13T05:00:00Z | 2008-02-12T04:59:59Z | 2011-06-11T17:21:44Z | E7-23549 | 0 | 0 | 090000648037954a | ||
| FDIC-2007-0070-0001 | FDIC | Annual Independent Audits and Reporting Requirements | Proposed Rule | 2007-11-02T04:00:00Z | 2007 | 11 | 2007-11-02T04:00:00Z | 2008-02-01T04:59:59Z | 2011-06-11T17:21:42Z | E7-21168 | 0 | 0 | 090000648035ed33 | ||
| FDIC-2007-0063-0001 | FDIC | Assessment Dividends | Proposed Rule | 2007-10-16T04:00:00Z | 2007 | 10 | 2007-10-16T04:00:00Z | 2008-01-08T21:56:04Z | C7-04596 | 0 | 0 | 0900006480305249 | |||
| FDIC-2007-0057-0001 | FDIC | Assessment Dividends | Proposed Rule | 2007-09-18T04:00:00Z | 2007 | 9 | 2007-09-18T04:00:00Z | 2007-11-20T04:59:59Z | 2011-06-11T17:21:42Z | 07-04596 | 0 | 0 | 090000648028734d | ||
| FDIC-2007-0039-0001 | FDIC | Extension of Time Period for Quarterly Reporting of Bank Officers and Certain Employees Personal Securities Transactions | Proposed Rule | 2007-06-27T04:00:00Z | 2007 | 6 | 2007-06-27T04:00:00Z | 2007-08-28T03:59:59Z | 2011-06-11T17:21:41Z | E7-12239 | 0 | 0 | 0900006480259dc7 | ||
| FDIC-2007-0028-0001 | FDIC | Semi-annual agenda | Proposed Rule | 2007-04-30T04:00:00Z | 2007 | 4 | 2007-04-30T04:00:00Z | 2008-01-08T21:56:04Z | 07-01417 | 0 | 0 | 0900006480231bc9 | |||
| FDIC-2007-0023-0002 | FDIC | [Federal Register: April 5, 2007 (Volume 72, Number 65)] | Proposed Rule | 2007-04-05T04:00:00Z | 2007 | 4 | 2007-04-05T04:00:00Z | 2007-05-30T03:59:59Z | 2008-01-08T21:56:05Z | C7-01476 | 0 | 0 | 0900006480220b4e | ||
| FDIC-2007-0023-0001 | FDIC | Interagency Proposal for Model Privacy Form Under the Gramm- Leach-Bliley Act | Proposed Rule | 2007-03-29T04:00:00Z | 2007 | 3 | 2007-03-29T04:00:00Z | 2007-05-30T03:59:59Z | 2011-06-11T17:21:39Z | 07-01476 | 0 | 0 | 090000648021bba9 | ||
| FDIC-2007-0005-0001 | FDIC | Industrial Bank Subsidiaries of Financial Companies | Proposed Rule | 2007-02-05T05:00:00Z | 2007 | 2 | 2007-02-05T05:00:00Z | 2007-05-08T03:59:59Z | 2011-06-11T17:21:39Z | E7-01854 | 0 | 0 | 09000064801fa41d | ||
| FDIC-2006-0096-0002 | FDIC | Risk-Based Capital Guidelines; Capital Adequacy Guidelines; Capital Maintenance: Domestic Capital Modifications | Proposed Rule | 2007-01-10T05:00:00Z | 2007 | 1 | 2007-01-10T05:00:00Z | 2008-01-08T21:56:11Z | C6-09738 | 0 | 0 | 09000064801f3740 |
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;