documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where agency_id = "OCC", document_type = "Proposed Rule" and posted_year = 2010 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, last_modified, open_for_comment, 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-2010-0009-0001 | OCC | Risk-Based Capital Guidelines; Revising Transitional Floors for Advanced Approaches Rule OCC-2010-0009 | Risk-Based Capital Standards: Advanced Capital Adequacy Framework-Basel II; Establishment of Risk-Based Capital Floor | Proposed Rule | ANPRM | 2010-12-30T05:00:00Z | 2010 | 12 | 2010-12-30T05:00:00Z | 2011-03-01T04:59:59Z | 2011-06-11T17:52:26Z | 2010-32190 | 0 | 0 | 0900006480bc2774 |
| OCC-2010-0016-0001 | OCC | Advance Notice of Proposed Rulemaking Regarding Alternatives to the Use of External Credit Ratings in the Regulatory Capital Guidelines of the Federal Banking Agencies OCC-2010-0016 | Risk-Based Capital Guidelines of the Federal Banking Agencies: Alternatives to the Use of Credit Ratings | Proposed Rule | 2010-08-25T04:00:00Z | 2010 | 8 | 2010-08-25T04:00:00Z | 2010-10-26T03:59:59Z | 2011-06-11T17:52:27Z | 2010-21051 | 0 | 0 | 0900006480b39c41 | |
| OCC-2010-0017-0001 | OCC | Alternatives to the Use of External Credit Ratings in the Regulations of the OCC OCC-2010-0017 | Alternatives to Use of External Credit Ratings in Regulations of OCC | Proposed Rule | 2010-08-13T04:00:00Z | 2010 | 8 | 2010-08-13T04:00:00Z | 2010-10-13T03:59:59Z | 2011-06-11T17:52:27Z | 2010-20048 | 0 | 0 | 0900006480b2f82d | |
| OCC-2010-0010-0001 | OCC | Community Reinvestment Act Regulations OCC-2010-0010 | Community Reinvestment Act Regulations | Proposed Rule | NPRM | 2010-06-24T04:00:00Z | 2010 | 6 | 2010-06-24T04:00:00Z | 2010-07-27T03:59:59Z | 2024-11-07T22:16:54Z | 2010-15119 | 1 | 0 | 0900006480b09403 |
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;