documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
15 rows where agency_id = "FCA" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FCA-2015-0031-0001 | FCA | Semiannual Regulatory Agenda - Fall 2015 | Other | 2015-11-24T05:00:00Z | 2015 | 11 | 2015-11-24T05:00:00Z | 2015-11-25T14:28:07Z | 0 | 0 | 0900006481d712fd | ||||
| FCA-2015-0011-0001 | FCA | Semiannual Regulatory Agenda - Spring 2015 | Other | 2015-05-27T04:00:00Z | 2015 | 5 | 2015-05-27T04:00:00Z | 2015-05-27T16:58:10Z | 0 | 0 | 0900006481b06001 | ||||
| FCA-2014-0016-0001 | FCA | Semiannual Regulatory Agenda - Spring 2014 | Other | 2014-05-23T04:00:00Z | 2014 | 5 | 2014-05-23T04:00:00Z | 2014-05-24T00:28:41Z | 0 | 0 | 0900006481710809 | ||||
| FCA-2013-0037-0001 | FCA | Semiannual Regulatory Agenda - Fall 2013 | Other | 2013-11-26T05:00:00Z | 2013 | 11 | 2013-11-26T05:00:00Z | 2013-11-26T23:31:03Z | 0 | 0 | 090000648149ab88 | ||||
| FCA-2013-0021-0001 | FCA | Semiannual Regulatory Agenda - Spring 2013 | Other | 2013-07-03T04:00:00Z | 2013 | 7 | 2013-07-03T04:00:00Z | 2013-07-03T17:30:55Z | 0 | 0 | 09000064813562c8 | ||||
| FCA-2012-0030-0001 | FCA | 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 | 0900006481199112 | ||||
| FCA-2012-0002-0001 | FCA | Semiannual Regulatory Agenda - Fall 2011 | Other | 2012-01-20T05:00:00Z | 2012 | 1 | 2012-01-20T05:00:00Z | 2012-01-20T16:03:29Z | 0 | 0 | 0900006480f9e3ca | ||||
| FCA-2011-0020-0001 | FCA | 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 | 0900006480ebb028 | ||||
| FCA-2010-0036-0001 | FCA | Semiannual Regulatory Agenda - Fall 2010 | Other | 2010-12-20T05:00:00Z | 2010 | 12 | 2010-12-20T05:00:00Z | 2010-12-20T17:30:36Z | 0 | 0 | 0900006480bbaa06 | ||||
| FCA-2010-0010-0001 | FCA | Semiannual Regulatory Agenda - Spring 2010 | Other | 2010-04-26T04:00:00Z | 2010 | 4 | 2010-04-26T17:39:07Z | 0 | 0 | 0900006480adf625 | |||||
| FCA-2009-0027-0001 | FCA | Semiannual Regulatory Agenda - Fall 2009 | Other | 2009-12-07T11:29:37Z | 2009 | 12 | 2009-12-07T11:42:58Z | 0 | 0 | 0900006480a64d8c | |||||
| FCA-2009-0007-0001 | FCA | Semiannual Regulatory Agenda - Spring 2009 | Other | 2009-05-10T16:40:44Z | 2009 | 5 | 2009-05-10T23:29:46Z | 0 | 0 | 09000064809844f4 | |||||
| FCA-2008-0027-0001 | FCA | Semiannual Regulatory Agenda - Fall 2008 | Other | 2008-11-23T18:12:24Z | 2008 | 11 | 2008-12-20T18:24:58Z | 0 | 0 | 09000064807bb93c | |||||
| FCA-2008-0011-0001 | FCA | Semiannual Regulatory Agenda - Spring 2008 | Other | 2008-05-06T23:10:28Z | 2008 | 5 | 2008-05-06T23:17:55Z | 0 | 0 | 090000648054dea2 | |||||
| FCA-2007-0033-0001 | FCA | Semiannual Regulatory Agenda - Fall 2007 | Other | 2007-12-10T14:42:56Z | 2007 | 12 | 2008-01-08T21:52:53Z | 0 | 0 | 0900006480375b2d |
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;