documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
13 rows where agency_id = "FHFA" and document_type = "Other" sorted by posted_date descending
This data as json, CSV (advanced)
| 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FHFA-2015-0022-0001 | FHFA | Semiannual Regulatory Agenda - Fall 2015 | Other | 2015-11-24T05:00:00Z | 2015 | 11 | 2015-11-24T05:00:00Z | 2015-11-25T14:28:08Z | 0 | 0 | 0900006481d7136b | ||||
| FHFA-2015-0006-0001 | FHFA | Semiannual Regulatory Agenda - Spring 2015 | Other | 2015-05-27T04:00:00Z | 2015 | 5 | 2015-05-27T04:00:00Z | 2015-05-27T16:58:11Z | 0 | 0 | 0900006481b06005 | ||||
| FHFA-2014-0014-0001 | FHFA | Semiannual Regulatory Agenda - Spring 2014 | Other | 2014-05-23T04:00:00Z | 2014 | 5 | 2014-05-23T04:00:00Z | 2014-05-24T00:28:42Z | 0 | 0 | 090000648171080d | ||||
| FHFA-2013-0035-0001 | FHFA | Semiannual Regulatory Agenda - Fall 2013 | Other | 2013-11-26T05:00:00Z | 2013 | 11 | 2013-11-26T05:00:00Z | 2013-11-26T23:32:17Z | 0 | 0 | 090000648149abfb | ||||
| FHFA-2013-0024-0001 | FHFA | Semiannual Regulatory Agenda - Spring 2013 | Other | 2013-07-03T04:00:00Z | 2013 | 7 | 2013-07-03T04:00:00Z | 2013-07-03T17:30:56Z | 0 | 0 | 09000064813562cc | ||||
| FHFA-2012-0036-0001 | FHFA | Semiannual Regulatory Agenda - Fall 2012 | Other | 2012-12-24T05:00:00Z | 2012 | 12 | 2012-12-24T05:00:00Z | 2012-12-27T19:15:31Z | 0 | 0 | 0900006481199189 | ||||
| FHFA-2012-0002-0001 | FHFA | Semiannual Regulatory Agenda - Fall 2011 | Other | 2012-01-20T05:00:00Z | 2012 | 1 | 2012-01-20T05:00:00Z | 2012-01-20T16:03:30Z | 0 | 0 | 0900006480f9e3ec | ||||
| FHFA-2011-0025-0001 | FHFA | Semiannual Regulatory Agenda - Spring 2011 | Other | 2011-07-07T04:00:00Z | 2011 | 7 | 2011-07-07T04:00:00Z | 2011-07-07T15:06:05Z | 0 | 0 | 0900006480ebb02c | ||||
| FHFA-2010-0043-0001 | FHFA | Semiannual Regulatory Agenda - Fall 2010 | Other | 2010-12-20T05:00:00Z | 2010 | 12 | 2010-12-20T05:00:00Z | 2010-12-20T17:30:37Z | 0 | 0 | 0900006480bbaa0a | ||||
| FHFA-2010-0014-0001 | FHFA | Semiannual Regulatory Agenda - Spring 2010 | Other | 2010-04-26T04:00:00Z | 2010 | 4 | 2010-04-26T17:39:08Z | 0 | 0 | 0900006480adf62a | |||||
| FHFA-2009-0038-0001 | FHFA | Semiannual Regulatory Agenda - Fall 2009 | Other | 2009-12-07T11:30:31Z | 2009 | 12 | 2009-12-07T11:42:59Z | 0 | 0 | 0900006480a64d91 | |||||
| FHFA-2009-0006-0001 | FHFA | Semiannual Regulatory Agenda - Spring 2009 | Other | 2009-05-10T16:41:37Z | 2009 | 5 | 2009-07-02T14:27:55Z | 0 | 0 | 09000064809844f9 | |||||
| FHFA-2008-0010-0001 | FHFA | Semiannual Regulatory Agenda - Fall 2008 | Other | 2008-11-23T18:13:50Z | 2008 | 11 | 2008-12-20T18:27:34Z | 0 | 0 | 09000064807bb95b |
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;