documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where agency_id = "FCA", document_type = "Rule" and posted_year = 2016 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FCA-2016-0026-0001 | FCA | Releasing Information: Availability of Records of the Farm Credit Administration; FOIA Fees | Rule | 2016-12-09T05:00:00Z | 2016 | 12 | 2016-12-09T05:00:00Z | 2016-12-09T12:44:13Z | 2016-29555 | 0 | 0 | 09000064823f4b1f | |||
| FCA-2016-0022-0001 | FCA | Federal Agricultural Mortgage Corporation: Governance; Standards of Conduct; Risk Management; and Disclosure and Reporting | Rule | 2016-10-17T04:00:00Z | 2016 | 10 | 2016-10-17T04:00:00Z | 2016-10-17T11:47:53Z | 2016-25050 | 0 | 0 | 090000648230356f | |||
| FCA-2016-0021-0001 | FCA | Board Policy Statements | Rule | 2016-10-14T04:00:00Z | 2016 | 10 | 2016-10-14T04:00:00Z | 2016-10-14T12:00:21Z | 2016-24680 | 0 | 0 | 09000064822f799c | |||
| FCA-2016-0020-0001 | FCA | Organization; Updates and Technical Corrections | Rule | 2016-10-07T04:00:00Z | 2016 | 10 | 2016-10-07T04:00:00Z | 2016-10-07T12:06:19Z | 2016-24313 | 0 | 0 | 09000064822a9e66 | |||
| FCA-2016-0018-0001 | FCA | Releasing Information: Availability of Records; FOIA Fees | Rule | 2016-09-15T04:00:00Z | 2016 | 9 | 2016-09-15T04:00:00Z | 2016-09-15T11:57:28Z | 2016-22107 | 0 | 0 | 09000064822106c0 | |||
| FCA-2016-0014-0001 | FCA | Margin and Capital Requirements for Covered Swap Entities | Rule | 2016-08-02T04:00:00Z | 2016 | 8 | 2016-08-02T04:00:00Z | 2016-08-02T12:20:04Z | 2016-18193 | 0 | 0 | 090000648214c51f | |||
| FCA-2016-0013-0001 | FCA | Regulatory Capital; Implementation of Tier 1/Tier 2 Framework | Rule | 2016-07-28T04:00:00Z | 2016 | 7 | 2016-07-28T04:00:00Z | 2016-07-28T12:01:52Z | 2016-12072 | 0 | 0 | 09000064821344fd | |||
| FCA-2016-0012-0001 | FCA | Federal Agricultural Mortgage Corporation: Governance; Standards of Conduct; Risk Management; and Disclosure and Reporting | Rule | 2016-07-27T04:00:00Z | 2016 | 7 | 2016-07-27T04:00:00Z | 2016-07-27T12:58:45Z | 2016-17455 | 0 | 0 | 09000064821297ae | |||
| FCA-2016-0011-0001 | FCA | FCA Organization; Updates and Technical Corrections | Rule | 2016-07-22T04:00:00Z | 2016 | 7 | 2016-07-22T04:00:00Z | 2016-07-22T11:47:10Z | 2016-16962 | 0 | 0 | 09000064820ece6d | |||
| FCA-2016-0008-0001 | FCA | Rules of Practice and Procedure: Adjusting Civil Money Penalties for Inflation | Rule | 2016-05-24T04:00:00Z | 2016 | 5 | 2016-05-24T04:00:00Z | 2016-05-24T12:26:48Z | 2016-11862 | 0 | 0 | 0900006481feac00 | |||
| FCA-2016-0002-0001 | FCA | Organization and Functions: Enforcement of Nondiscrimination on the Basis of Handicap, etc. | Rule | 2016-01-25T05:00:00Z | 2016 | 1 | 2016-01-25T05:00:00Z | 2016-01-25T14:13:30Z | 2016-01398 | 0 | 0 | 0900006481e2cbdf |
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;