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 = 2008 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, 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-2008-0088-0001 | FDIC | Assessments | Proposed Rule | 2008-11-14T05:00:00Z | 2008 | 11 | 2008-11-14T05:00:00Z | 2011-06-11T17:21:51Z | E8-26972 | 0 | 0 | 09000064807a9054 | |||
| FDIC-2008-0080-0001 | FDIC | Minimum Capital Ratios; Capital Adequacy Guidelines; Capital Maintenance; Capital: Treatment of Certain Claims on, or Guaranteed by, the Federal National Mortgage Association (Fannie Mae) and the Federal Home Loan Mortgage Corporation (Freddie Mac) | Proposed Rule | 2008-10-27T04:00:00Z | 2008 | 10 | 2008-10-27T04:00:00Z | 2008-11-27T04:59:59Z | 2011-06-11T17:21:50Z | E8-25555 | 0 | 0 | 090000648077cfca | ||
| FDIC-2008-0078-0001 | FDIC | Processing of Deposit Accounts in the Event of an Insured Depository Institution Failure and Large-Bank Deposit Insurance Determination Modernization; Limited Opportunity To Resubmit Comment | Proposed Rule | 2008-10-24T04:00:00Z | 2008 | 10 | 2008-10-24T04:00:00Z | 2008-11-25T04:59:59Z | 2008-11-24T18:14:56Z | E8-25376 | 0 | 0 | 0900006480776d88 | ||
| FDIC-2008-0069-0001 | FDIC | Assessments | Proposed Rule | 2008-10-16T04:00:00Z | 2008 | 10 | 2008-10-16T04:00:00Z | 2008-11-18T04:59:59Z | 2011-06-11T17:21:49Z | E8-24186 | 0 | 0 | 09000064807602a8 | ||
| FDIC-2008-0061-0001 | FDIC | Minimum Capital Ratios; Capital Adequacy Guidelines; Capital Maintenance; Capital: Deduction of Goodwill Net of Associated Deferred Tax Liability | Proposed Rule | 2008-09-30T04:00:00Z | 2008 | 9 | 2008-09-30T04:00:00Z | 2008-10-31T03:59:59Z | 2011-06-11T17:21:49Z | E8-22741 | 0 | 0 | 090000648072e41a | ||
| FDIC-2008-0045-0001 | FDIC | Risk-Based Capital Guidelines; Capital Adequacy Guidelines: Standardized Framework | Proposed Rule | 2008-07-29T04:00:00Z | 2008 | 7 | 2008-07-29T04:00:00Z | 2008-10-28T03:59:59Z | 2011-06-11T17:21:47Z | E8-16262 | 0 | 0 | 090000648069e7ee | ||
| FDIC-2008-0043-0001 | FDIC | Recordkeeping Requirements for Qualified Financial Contracts; Proposed Rule and Notice | Proposed Rule | 2008-07-28T04:00:00Z | 2008 | 7 | 2008-07-28T04:00:00Z | 2011-06-11T17:21:47Z | E8-16951 | 0 | 0 | 090000648069c368 | |||
| FDIC-2008-0020-0001 | FDIC | Assessment Dividends | Proposed Rule | 2008-03-24T04:00:00Z | 2008 | 3 | 2008-03-24T04:00:00Z | 2008-05-24T03:59:59Z | 2011-06-11T17:21:46Z | E8-05670 | 0 | 0 | 09000064804057ed | ||
| FDIC-2008-0004-0001 | FDIC | Processing of Deposit Accounts in the Event of an Insured Depository Institution Failure and Large-Bank Deposit Insurance Determination Modernization | Proposed Rule | 2008-01-14T05:00:00Z | 2008 | 1 | 2008-01-14T05:00:00Z | 2008-04-15T03:59:59Z | 2011-06-11T17:21:45Z | E8-00273 | 0 | 0 | 090000648039a164 | ||
| FDIC-2008-0003-0001 | FDIC | Minority and Women Outreach Program Contracting | Proposed Rule | 2008-01-03T05:00:00Z | 2008 | 1 | 2008-01-03T05:00:00Z | 2008-03-04T04:59:59Z | 2011-06-11T17:21:44Z | E7-25028 | 0 | 0 | 0900006480381dca |
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;