documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "FDIC", document_type = "Proposed Rule" and posted_year = 2005 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, 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-2005-0024-0001 | FDIC | Large-Bank Deposit Insurance Determination Modernization Proposal | Proposed Rule | 2005-12-13T05:00:00Z | 2005 | 12 | 2005-12-13T05:00:00Z | 2006-03-14T04:59:59Z | 2011-06-11T17:21:27Z | 05-23986 | 0 | 0 | 09000064800f4b81 | ||
| FDIC-2005-0012-0001 | FDIC | Risk-Based Capital Guidelines; Capital Adequacy Guidelines; Capital Maintenance: Domestic Capital Modifications | Proposed Rule | 2005-10-20T04:00:00Z | 2005 | 10 | 2005-10-20T04:00:00Z | 2006-01-19T04:59:59Z | 2011-06-11T17:21:25Z | 05-20858 | 0 | 0 | 090000648009500b | ||
| FDIC-2005-0008-0001 | FDIC | Interstate Banking; Federal Interest Rate Authority | Proposed Rule | 2005-10-14T04:00:00Z | 2005 | 10 | 2005-10-14T04:00:00Z | 2005-12-14T04:59:59Z | 2011-06-11T17:21:24Z | 05-20582 | 0 | 0 | 0900006480092d66 | ||
| FDIC-2005-0006-0001 | FDIC | Notification of Changes of Insured Status | Proposed Rule | 2005-10-14T04:00:00Z | 2005 | 10 | 2005-10-14T04:00:00Z | 2005-12-14T04:59:59Z | 2011-06-11T17:21:24Z | 05-20590 | 0 | 0 | 0900006480092cca | ||
| FDIC-2005-0001-0001 | FDIC | Request for Burden Reduction Recommendations; Rules Relating to Banking Operations; Directors, Officers and Employees; and Rules of Procedure; Economic Growth and Regulatory Paperwork Reduction Act of 1996 Review | Proposed Rule | 2005-08-11T04:00:00Z | 2005 | 8 | 2005-08-11T04:00:00Z | 2005-11-10T04:59:59Z | 2008-01-08T21:56:01Z | 05-15923 | 0 | 0 | 090000648004ffeb | ||
| FDIC-2005-0003-0001 | FDIC | Deposit Insurance Coverage; Stored Value Cards and Other Nontraditional Access Mechanisms | Proposed Rule | 2005-08-08T04:00:00Z | 2005 | 8 | 2005-08-08T04:00:00Z | 2005-11-08T04:59:59Z | 2008-01-08T21:56:11Z | 05-15568 | 0 | 0 | 0900006480050335 | ||
| FDIC-2005-0002-0001 | FDIC | One-Year Post-Employment Restrictions for Senior Examiners | Proposed Rule | 2005-08-05T04:00:00Z | 2005 | 8 | 2005-08-05T04:00:00Z | 2005-10-05T03:59:59Z | 2011-06-11T17:21:23Z | 05-15468 | 0 | 0 | 090000648005016b |
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;