documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "OCC", document_type = "Proposed Rule" and posted_year = 2006 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| OCC-2006-0049-0001 | OCC | Risk-Based Capital Guidelines; Capital Adequacy Guidelines; Capital Maintenance: Domestic Capital Modifications OCC-2006-0049 | Risk-Based Capital Guidelines; Capital Adequacy Guidelines; Capital Maintenance: Domestic Capital Modifications | Proposed Rule | NPRM | 2006-12-26T05:00:00Z | 2006 | 12 | 2006-12-26T05:00:00Z | 2007-03-27T03:59:59Z | 2011-06-11T17:52:10Z | 06-09738 | 0 | 0 | 09000064801efd5b |
| OCC-2006-0035-0002 | OCC | Risk-Based Capital Standards: Advanced Capital Adequacy Framework OCC-2006-0035 | Risk-Based Capital Standards: Advanced Capital Adequacy Framework | Proposed Rule | 2006-12-26T05:00:00Z | 2006 | 12 | 2006-12-26T05:00:00Z | 2007-03-27T03:59:59Z | 2011-06-11T17:52:06Z | 06-09737 | 0 | 0 | 09000064801efde7 | |
| OCC-2006-0036-0001 | OCC | Risk-Based Capital Standards: Market Risk OCC-2006-0036 | Risk-Based Capital Standards: Market Risk | Proposed Rule | 2006-09-25T04:00:00Z | 2006 | 9 | 2006-09-25T04:00:00Z | 2007-01-24T04:59:59Z | 2011-06-11T17:52:09Z | 06-07673 | 0 | 0 | 09000064801ce135 | |
| OCC-2006-0035-0001 | OCC | Risk-Based Capital Standards: Advanced Capital Adequacy Framework OCC-2006-0035 | Risk-Based Capital Standards: Advanced Capital Adequacy Framework | Proposed Rule | NPRM | 2006-09-25T04:00:00Z | 2006 | 9 | 2006-09-25T04:00:00Z | 2007-03-27T03:59:59Z | 2011-06-11T17:52:07Z | 06-07656 | 0 | 0 | 09000064801ce0ea |
| OCC-2006-0028-0001 | OCC | Identity Theft Red Flags and Address Discrepancies Under the Fair and Accurate Credit Transactions Act of 2003 OCC-2006-0028 | Identity Theft Red Flags and Address Discrepancies Under the Fair and Accurate Credit Transactions Act of 2003 | Proposed Rule | 2006-07-18T04:00:00Z | 2006 | 7 | 2006-07-18T04:00:00Z | 2006-09-19T03:59:59Z | 2011-06-11T17:52:05Z | 06-06187 | 0 | 0 | 09000064801a048c | |
| OCC-2006-0015-0001 | OCC | Interagency Advance 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 OCC-2006-0015 | Interagency Advance 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 | 2006-03-22T05:00:00Z | 2006 | 3 | 2006-03-22T05:00:00Z | 2006-05-23T03:59:59Z | 2011-06-11T17:52:05Z | 06-02758 | 0 | 0 | 090000648014b6d4 | |
| OCC-2006-0001-0001 | OCC | Request for Burden Reduction Recommendations; Rules Relating to Prompt Corrective Action and the Disclosure and Reporting of CRA- Related Agreements; Economic Growth and Regulatory Paperwork Reduction Act of 1996 Review OCC-2006-0001 | Request for Burden Reduction Recommendations; Rules Relating to Prompt Corrective Action and the Disclosure and Reporting of CRA- Related Agreements; Economic Growth and Regulatory Paperwork Reduction Act of 1996 Review | Proposed Rule | 2006-01-04T05:00:00Z | 2006 | 1 | 2006-01-04T05:00:00Z | 2006-04-05T03:59:59Z | 2007-01-17T03:58:17Z | 06-00012 | 0 | 0 | 0900006480106b21 |
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;