documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where agency_id = "OCC", document_type = "Notice" and posted_year = 2005 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, 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-2005-0018-0001 | OCC | Interagency Guidance on Nontraditional Mortgage Products OCC-2005-0018 | Interagency Guidance on Nontraditional Mortgage Products | Notice | 2005-12-29T05:00:00Z | 2005 | 12 | 2005-12-29T05:00:00Z | 2007-01-17T03:58:15Z | 05-24562 | 0 | 0 | 090000648010254a | ||
| OCC-2005-0017-0001 | OCC | Agency Information Collection Activities; Submission for OMB Review; Comment Request OCC-2005-0017 | Agency Information Collection Activities; Submission for OMB Review; Comment Request | Notice | 2005-12-21T05:00:00Z | 2005 | 12 | 2005-12-21T05:00:00Z | 2007-01-17T03:58:10Z | E5-07580 | 0 | 0 | 09000064800fcc7c | ||
| OCC-2005-0016-0001 | OCC | Agency Information Collection Activities: Proposed Collection; Comment Request OCC-2005-0016 | Agency Information Collection Activities: Proposed Collection; Comment Request | Notice | 2005-12-13T05:00:00Z | 2005 | 12 | 2005-12-13T05:00:00Z | 2007-01-17T03:58:08Z | E5-07276 | 0 | 0 | 09000064800f4c1a | ||
| OCC-2005-0015-0001 | OCC | Agency Information Collection Activities: Submission for OMB Review; Comment Request OCC-2005-0015 | Agency Information Collection Activities: Submission for OMB Review; Comment Request | Notice | 2005-12-09T05:00:00Z | 2005 | 12 | 2005-12-09T05:00:00Z | 2007-01-17T03:57:35Z | 05-23822 | 0 | 0 | 09000064800f1abe | ||
| OCC-2005-0014-0001 | OCC | Agency Information Collection Activities: Proposed Extension of Information Collection; Comment Request OCC-2005-0014 | Agency Information Collection Activities: Proposed Extension of Information Collection; Comment Request | Notice | 2005-11-25T05:00:00Z | 2005 | 11 | 2005-11-25T05:00:00Z | 2007-01-17T03:57:37Z | E5-06509 | 0 | 0 | 09000064800a633d | ||
| OCC-2005-0013-0001 | OCC | Agency Information Collection Activities: Submission for OMB Review; Comment Request OCC-2005-0013 | Agency Information Collection Activities: Submission for OMB Review; Comment Request | Notice | 2005-11-23T05:00:00Z | 2005 | 11 | 2005-11-23T05:00:00Z | 2007-01-17T03:57:59Z | 05-23124 | 0 | 0 | 09000064800a52ee | ||
| OCC-2005-0009-0001 | OCC | Community Reinvestment Act; Interagency Questions and Answers Regarding Community Reinvestment; Notice OCC-2005-0009 | Community Reinvestment Act; Interagency Questions and Answers Regarding Community Reinvestment; Notice | Notice | 2005-11-10T05:00:00Z | 2005 | 11 | 2005-11-10T05:00:00Z | 2011-06-11T17:52:03Z | 05-22468 | 0 | 0 | 090000648009dd0d | ||
| OCC-2005-0008-0001 | OCC | Agency Information Collection Activities: Proposed Information Collection; Comment Request OCC-2005-0008 | Agency Information Collection Activities: Proposed Information Collection; Comment Request | Notice | 2005-11-07T05:00:00Z | 2005 | 11 | 2005-11-07T05:00:00Z | 2007-01-17T03:57:43Z | 05-22135 | 0 | 0 | 090000648009be08 | ||
| OCC-2005-0007-0001 | OCC | Agency Information Collection Activities: Proposed Information Collection; Comment Request OCC-2005-0007 | Agency Information Collection Activities: Proposed Information Collection; Comment Request | Notice | 2005-10-26T04:00:00Z | 2005 | 10 | 2005-10-26T04:00:00Z | 2007-01-17T03:57:50Z | 05-21352 | 0 | 0 | 0900006480097107 | ||
| OCC-2005-0005-0001 | OCC | Agency Information Collection Activities: Submission for OMB Review; Joint Comment Request OCC-2005-0005 | Agency Information Collection Activities: Submission for OMB Review; Joint Comment Request | Notice | 2005-10-17T04:00:00Z | 2005 | 10 | 2005-10-17T04:00:00Z | 2007-01-17T03:57:30Z | 05-20662 | 0 | 0 | 0900006480093b1a | ||
| OCC-2005-0003-0001 | OCC | Proposed Renewal of Information Collection; Comment Request OCC-2005-0003 | Proposed Renewal of Information Collection; Comment Request | Notice | 2005-10-13T04:00:00Z | 2005 | 10 | 2005-10-13T04:00:00Z | 2007-01-17T03:57:52Z | 05-20509 | 0 | 0 | 090000648009248b |
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;