documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "OCC", document_type = "Rule" and posted_year = 2010 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, posted_date, posted_month, comment_start_date, last_modified, posted_date (date), comment_start_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-0020-0001 | OCC | Community Reinvestment Act - Technical Amendment OCC-2010-0020 | Community Reinvestment Act Regulations | Rule | Final Rule | 2010-12-30T05:00:00Z | 2010 | 12 | 2010-12-30T05:00:00Z | 2011-06-11T17:52:28Z | 2010-32321 | 0 | 0 | 0900006480bc278a | |
| OCC-2010-0021-0001 | OCC | Community Reinvestment Act - Neighborhood Stabilization Program OCC-2010-0021 | Community Reinvestment Act Regulations | Rule | Final Rule | 2010-12-20T05:00:00Z | 2010 | 12 | 2010-12-20T05:00:00Z | 2011-06-11T17:52:28Z | 2010-31818 | 0 | 0 | 0900006480bba84e | |
| OCC-2010-0018-0001 | OCC | Standards Governing the Release of a Suspicious Activity Report OCC-2010-0018 | Standards Governing the Release of a Suspicious Activity Report | Rule | Final Rule | 2010-12-03T05:00:00Z | 2010 | 12 | 2010-12-03T05:00:00Z | 2011-06-11T17:52:27Z | 2010-29883 | 0 | 0 | 0900006480bad644 | |
| OCC-2010-0019-0001 | OCC | Confidentiality of Suspicious Activity Reports OCC-2010-0019 | Confidentiality of Suspicious Activity Reports | Rule | Final Rule | 2010-12-03T05:00:00Z | 2010 | 12 | 2010-12-03T05:00:00Z | 2011-06-11T17:52:28Z | 2010-29880 | 0 | 0 | 0900006480bad695 | |
| OCC-2010-0014-0001 | OCC | Community Reinvestment Act Regulations - Higher Education Opportunity Act OCC-2010-0014 | Community Reinvestment Act Regulations | Rule | Final Rule | 2010-10-04T04:00:00Z | 2010 | 10 | 2010-10-04T04:00:00Z | 2011-06-11T17:52:26Z | 2010-24737 | 0 | 0 | 0900006480b666f5 | |
| OCC-2010-0007-0003 | OCC | Registration of Mortgage Loan Originators OCC-2010-0007 | Registration of Mortgage Loan Originators; Correction | Rule | Final Rule | 2010-08-23T04:00:00Z | 2010 | 8 | 2010-08-23T04:00:00Z | 2011-06-11T17:52:25Z | C1-2010-18148 | 0 | 0 | 0900006480b37bd4 | |
| OCC-2010-0007-0001 | OCC | Registration of Mortgage Loan Originators OCC-2010-0007 | Registration of Mortgage Loan Originators | Rule | Final Rule | 2010-07-28T04:00:00Z | 2010 | 7 | 2010-07-28T04:00:00Z | 2011-06-11T17:52:25Z | 2010-18148 | 0 | 0 | 0900006480b225c5 | |
| OCC-2010-0008-0001 | OCC | Freedom of Information Act OCC-2010-0008 | Freedom of Information Act | Rule | Final Rule | 2010-04-08T04:00:00Z | 2010 | 4 | 2010-04-08T04:00:00Z | 2011-06-11T17:52:25Z | 2010-07940 | 0 | 0 | 0900006480ad2845 | |
| OCC-2009-0020-0001 | OCC | Risk-Based Capital Guidelines; Capital Adequacy Guidelines; Capital Maintenance: Modifications to Generally Accepted Accounting Principles; Consolidation of Asset-Backed Commerical Paper Programs; Reservation of Authority and Other Related Issues OCC-2009-0020 | Risk-Based Capital Guidelines; Capital Adequacy Guidelines; Capital Maintenance: Regulatory Capital; Impact of Modifications to Generally Accepted Accounting Principles; Consolidation of Asset-Backed Commercial Paper Programs; and Other Related Issues | Rule | Final Rule | 2010-01-28T05:00:00Z | 2010 | 1 | 2010-01-28T05:00:00Z | 2011-06-11T17:52:24Z | 2010-00825 | 0 | 0 | 0900006480a85b06 |
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;