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 = 2014 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_date, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FCA-2014-0032-0001 | FCA | Annual Board Policy Statements | Rule | 2014-10-22T04:00:00Z | 2014 | 10 | 2014-10-22T04:00:00Z | 2014-10-22T12:32:39Z | 2014-25131 | 0 | 0 | 09000064818e83da | |||
| FCA-2014-0033-0001 | FCA | Releasing Information; General Provisions; Accounting and Reporting Requirements; Reports of Accounts and Exposures | Rule | 2014-10-22T04:00:00Z | 2014 | 10 | 2014-10-22T04:00:00Z | 2014-10-22T12:32:44Z | 2014-25005 | 0 | 0 | 09000064818e841d | |||
| FCA-2014-0028-0001 | FCA | Federal Agricultural Mortgage Corporation Funding and Fiscal Affairs: Farmer Mac Liquidity Management; Correction | Rule | 2014-09-08T04:00:00Z | 2014 | 9 | 2014-09-08T04:00:00Z | 2014-09-08T13:12:14Z | 2014-21319 | 0 | 0 | 09000064818633af | |||
| FCA-2014-0020-0001 | FCA | Disclosures to Shareholders: System-Wide and Consolidated Bank Debt Obligations of Farm Credit System; Advisory Vote | Rule | 2014-06-18T04:00:00Z | 2014 | 6 | 2014-06-18T04:00:00Z | 2014-06-18T13:28:50Z | 2014-14227 | 0 | 0 | 090000648174fb07 | |||
| FCA-2014-0017-0001 | FCA | Disclosure to Shareholders; CFR Correction | Rule | 2014-05-27T04:00:00Z | 2014 | 5 | 2014-05-27T04:00:00Z | 2014-05-27T12:26:51Z | 2014-12307 | 0 | 0 | 0900006481714bb1 | |||
| FCA-2014-0015-0001 | FCA | Federal Agricultural Mortgage Corporation Funding and Fiscal Affairs: Farmer Mac Liquidity Management | Rule | 2014-05-21T04:00:00Z | 2014 | 5 | 2014-05-21T04:00:00Z | 2014-05-21T12:28:35Z | 2014-11663 | 0 | 0 | 0900006481708a3d | |||
| FCA-2014-0014-0001 | FCA | Federal Agricultural Mortgage Corporation Funding and Fiscal Affairs: Farmer Mac Liquidity Management; Correction | Rule | 2014-05-20T04:00:00Z | 2014 | 5 | 2014-05-20T04:00:00Z | 2014-05-20T13:23:10Z | 2014-11662 | 0 | 0 | 09000064817056d9 | |||
| FCA-2014-0012-0001 | FCA | Compensation, Retirement Programs, and Related Benefits; CFR Correction | Rule | 2014-04-17T04:00:00Z | 2014 | 4 | 2014-04-17T04:00:00Z | 2014-04-17T13:27:07Z | 2014-08939 | 0 | 0 | 09000064816b7e48 | |||
| FCA-2014-0010-0001 | FCA | Organization; Disclosures to Shareholders: Disclosure to Investors in System-Wide and Consolidated Bank Debt Obligations of the Farm Credit System; Advisory Vote | Rule | 2014-03-31T04:00:00Z | 2014 | 3 | 2014-03-31T04:00:00Z | 2014-05-01T03:59:59Z | 2014-03-31T13:24:48Z | 2014-06783 | 0 | 0 | 09000064816912ee | ||
| FCA-2014-0008-0001 | FCA | Accounting and Reporting Requirements: Accounts and Exposures | Rule | 2014-02-26T05:00:00Z | 2014 | 2 | 2014-02-26T05:00:00Z | 2014-02-26T14:24:08Z | 2014-04197 | 0 | 0 | 09000064815c3b2c | |||
| FCA-2014-0002-0001 | FCA | Federal Agricultural Mortgage Corporation Funding and Fiscal Affairs; Farmer Mac Capital Planning | Rule | 2014-01-17T05:00:00Z | 2014 | 1 | 2014-01-17T05:00:00Z | 2014-01-17T14:07:51Z | 2014-00892 | 0 | 0 | 0900006481510f1a |
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;