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 = 2007 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| OCC-2007-0021-0001 | OCC | Community Reinvestment Act Regulations OCC-2007-0021 | Community Reinvestment Act Regulations | Rule | Final Rule | 2007-12-21T05:00:00Z | 2007 | 12 | 2007-12-21T05:00:00Z | 2011-06-11T17:52:14Z | E7-24719 | 0 | 0 | 090000648037d60d | |
| OCC-2007-0018-0001 | OCC | Risk-Based Capital Standards: Advanced Capital Adequacy Framework — Basel II OCC-2007-0018 | Risk-Based Capital Standards: Advanced Capital Adequacy Framework -- Basel II | Rule | Final Rule | 2007-12-07T05:00:00Z | 2007 | 12 | 2007-12-07T05:00:00Z | 2011-06-11T17:52:14Z | 07-05729 | 0 | 0 | 09000064803715c1 | |
| OCC-2007-0017-0001 | OCC | Identity Theft Red Flags and Address Discrepancies under the Fair and Accurate Transactions Act of 2003 OCC-2007-0017 | Identity Theft Red Flags and Address Discrepancies Under the Fair and Accurate Credit Transactions Act of 2003 | Rule | Temporary Rule | 2007-11-09T05:00:00Z | 2007 | 11 | 2007-11-09T05:00:00Z | 2011-06-11T17:52:13Z | 07-05453 | 0 | 0 | 09000064803621ef | |
| OCC-2007-0010-0001 | OCC | Fair Credit Reporting Affiliate Marketing Regulations OCC-2007-0010 | Fair Credit Reporting Affiliate Marketing Regulations | Rule | Final Rule | 2007-11-07T05:00:00Z | 2007 | 11 | 2007-11-07T05:00:00Z | 2011-06-11T17:52:12Z | 07-05349 | 0 | 0 | 090000648036101d | |
| OCC-2007-0014-0001 | OCC | Expanded Examination Cycle for Certain Small Insured Depository Institutions and U.S. Branches and Agencies of Foreign Banks OCC-2007-0014 | 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:52:13Z | 07-04716 | 0 | 0 | 09000064802a019c | ||
| OCC-2007-0006-0001 | OCC | Management Official Interlocks OCC-2007-0006 | Management Official Interlocks | Rule | Final Rule | 2007-07-16T04:00:00Z | 2007 | 7 | 2007-07-16T04:00:00Z | 2011-06-11T17:52:11Z | 07-03441 | 0 | 0 | 0900006480268f29 | |
| OCC-2007-0011-0001 | OCC | Special Lending Limits for Residential Real Estate Loans, Small Business Loans, and Small Farm Loans OCC-2007-0011 | Special Lending Limits for Residential Real Estate Loans, Small Business Loans, and Small Farm Loans | Rule | Interim Final Rule | 2007-06-07T04:00:00Z | 2007 | 6 | 2007-06-07T04:00:00Z | 2007-07-10T03:59:59Z | 2011-06-11T17:52:13Z | E7-11014 | 0 | 0 | 090000648024a194 |
| OCC-2007-0007-0001 | OCC | Expanded Examination Cycle for Certain Small Insured Depository Institutions and U.S. Branches and Agencies of Foreign Banks (12 C.F.R. Part 4) OCC-2007-0007 | Expanded Examination Cycle for Certain Small Insured Depository Institutions and U.S. Branches and Agencies of Foreign Banks | Rule | Interim Final Rule | 2007-04-10T04:00:00Z | 2007 | 4 | 2007-04-10T04:00:00Z | 2007-05-11T03:59:59Z | 2011-06-11T17:52:12Z | 07-01716 | 0 | 0 | 0900006480223496 |
| OCC-2007-0001-0001 | OCC | Management Official Interlocks OCC-2007-0001 | Management Official Interlocks | Rule | 2007-01-11T05:00:00Z | 2007 | 1 | 2007-01-11T05:00:00Z | 2007-02-13T04:59:59Z | 2011-06-11T17:52:11Z | 07-00079 | 0 | 0 | 09000064801f3aee |
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;