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 = "Rule" and posted_year = 2005 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2005-0019-0002 | FDIC | Fair Credit Reporting Medical Information Regulations; Correction | Rule | 2005-12-22T05:00:00Z | 2005 | 12 | 2005-12-22T05:00:00Z | 2011-06-11T17:21:26Z | 05-24370 | 0 | 0 | 09000064800fde7e | |||
| FDIC-2005-0020-0001 | FDIC | Independent Audits and Reporting Requirements | Rule | 2005-11-28T05:00:00Z | 2005 | 11 | 2005-11-28T05:00:00Z | 2011-06-11T17:21:27Z | 05-23310 | 0 | 0 | 09000064800e4d39 | |||
| FDIC-2005-0019-0001 | FDIC | Fair Credit Reporting Medical Information Regulations | Rule | 2005-11-22T05:00:00Z | 2005 | 11 | 2005-11-22T05:00:00Z | 2011-06-11T17:21:26Z | 05-22830 | 0 | 0 | 09000064800a3d74 | |||
| FDIC-2005-0018-0001 | FDIC | One-Year Post-Employment Restrictions for Senior Examiners | Rule | 2005-11-17T05:00:00Z | 2005 | 11 | 2005-11-17T05:00:00Z | 2011-06-11T17:21:26Z | 05-22814 | 0 | 0 | 09000064800a177d | |||
| FDIC-2005-0013-0001 | FDIC | Deposit Insurance Coverage; Accounts of Qualified Tuition Savings Programs Under Section 529 of the Internal Revenue Code | Rule | 2005-10-28T04:00:00Z | 2005 | 10 | 2005-10-28T04:00:00Z | 2011-06-11T17:21:25Z | 05-20766 | 0 | 0 | 0900006480097da7 | |||
| FDIC-2005-0011-0001 | FDIC | Extension of Corporate Powers | Rule | 2005-10-18T04:00:00Z | 2005 | 10 | 2005-10-18T04:00:00Z | 2006-01-18T04:59:59Z | 2011-06-11T17:21:25Z | 05-20768 | 0 | 0 | 090000648009425f | ||
| FDIC-2005-0007-0001 | FDIC | Real Estate Appraisal Exceptions in Major Disaster Areas | Rule | 2005-10-14T04:00:00Z | 2005 | 10 | 2005-10-14T04:00:00Z | 2008-01-08T21:56:10Z | 05-20583 | 0 | 0 | 0900006480092cde |
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;