documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where agency_id = "FDIC", document_type = "Rule" and posted_year = 2007 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-2007-0082-0001 | FDIC | Community Reinvestment Act Regulations | Rule | 2007-12-21T05:00:00Z | 2007 | 12 | 2007-12-21T05:00:00Z | 2011-06-11T17:21:44Z | E7-24719 | 0 | 0 | 090000648037d614 | |||
| FDIC-2007-0075-0001 | FDIC | Risk-Based Capital Standards: Advanced Capital Adequacy Framework -- Basel II | Rule | 2007-12-07T05:00:00Z | 2007 | 12 | 2007-12-07T05:00:00Z | 2011-06-11T17:21:43Z | 07-05729 | 0 | 0 | 0900006480371657 | |||
| FDIC-2007-0074-0001 | FDIC | Rules of Practice and Procedure | Rule | 2007-11-28T05:00:00Z | 2007 | 11 | 2007-11-28T05:00:00Z | 2011-06-11T17:21:43Z | E7-22969 | 0 | 0 | 09000064803693f1 | |||
| FDIC-2007-0072-0001 | FDIC | Identity Theft Red Flags and Address Discrepancies Under the Fair and Accurate Credit Transactions Act of 2003 | Rule | 2007-11-09T05:00:00Z | 2007 | 11 | 2007-11-09T05:00:00Z | 2011-06-11T17:21:43Z | 07-05453 | 0 | 0 | 09000064803621da | |||
| FDIC-2007-0071-0001 | FDIC | Fair Credit Reporting Affiliate Marketing Regulations | Rule | 2007-11-07T05:00:00Z | 2007 | 11 | 2007-11-07T05:00:00Z | 2011-06-11T17:21:42Z | 07-05349 | 0 | 0 | 0900006480360fd3 | |||
| FDIC-2007-0065-0001 | FDIC | Extension of Time Period for Quarterly Reporting of Bank Officers and Certain Employees Personal Securities Transactions | Rule | 2007-10-25T04:00:00Z | 2007 | 10 | 2007-10-25T04:00:00Z | 2011-06-11T17:21:42Z | E7-20998 | 0 | 0 | 09000064803561f2 | |||
| FDIC-2007-0025-0002 | FDIC | Expanded Examination Cycle for Certain Small Insured Depository Institutions and U.S. Branches and Agencies of Foreign Banks | Rule | 2007-09-25T04:00:00Z | 2007 | 9 | 2007-09-25T04:00:00Z | 2011-06-11T17:21:40Z | 07-04716 | 0 | 0 | 09000064802a0147 | |||
| FDIC-2007-0045-0001 | FDIC | Management Official Interlocks | Rule | 2007-07-16T04:00:00Z | 2007 | 7 | 2007-07-16T04:00:00Z | 2011-06-11T17:21:41Z | 07-03441 | 0 | 0 | 0900006480268f84 | |||
| FDIC-2007-0026-0001 | FDIC | Supplemental Standards of Ethical Conduct for FDIC Employees | Rule | 2007-04-18T04:00:00Z | 2007 | 4 | 2007-04-18T04:00:00Z | 2011-06-11T17:21:40Z | E7-07377 | 0 | 0 | 0900006480228770 | |||
| FDIC-2007-0025-0001 | FDIC | Expanded Examination Cycle for Certain Small Insured Depository Institutions and U.S. Branches and Agencies of Foreign Banks | Rule | 2007-04-10T04:00:00Z | 2007 | 4 | 2007-04-10T04:00:00Z | 2007-05-11T03:59:59Z | 2011-06-11T17:21:40Z | 07-01716 | 0 | 0 | 090000648022351a | ||
| FDIC-2007-0001-0001 | FDIC | Management Official Interlocks | Rule | 2007-01-11T05:00:00Z | 2007 | 1 | 2007-01-11T05:00:00Z | 2007-02-13T04:59:59Z | 2011-06-11T17:21:39Z | 07-00079 | 0 | 0 | 09000064801f3bc7 |
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;