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 = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, 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-2012-0032-0001 | FCA | Disclosure to Investors in System-wide and Consolidated Bank Debt Obligations of the Farm Credit System; System Audit Committee; Effective Date | Rule | 2012-12-28T05:00:00Z | 2012 | 12 | 2012-12-28T05:00:00Z | 2012-12-28T14:42:37Z | 2012-31103 | 0 | 0 | 090000648119dd6a | |||
| FCA-2012-0031-0001 | FCA | Compensation, Retirement Programs, and Related Benefits: Effective Date | Rule | 2012-12-27T05:00:00Z | 2012 | 12 | 2012-12-27T05:00:00Z | 2012-12-27T14:58:47Z | 2012-31100 | 0 | 0 | 090000648119c581 | |||
| FCA-2012-0029-0001 | FCA | Funding and Fiscal Affairs, Loan Policies and Operations, and Funding Operations; CFR Correction | Rule | 2012-12-20T05:00:00Z | 2012 | 12 | 2012-12-20T05:00:00Z | 2012-12-20T13:39:09Z | 2012-30804 | 0 | 0 | 0900006481193a61 | |||
| FCA-2012-0025-0001 | FCA | Federal Agricultural Mortgage Corporation Funding and Fiscal Affairs: Farmer Mac Investment Management | Rule | 2012-11-05T05:00:00Z | 2012 | 11 | 2012-11-05T05:00:00Z | 2012-11-05T13:47:06Z | 2012-26805 | 0 | 0 | 090000648115d2fd | |||
| FCA-2012-0024-0001 | FCA | Funding and Fiscal Affairs, Loan Policies and Operations, and Funding Operations: Investment Management | Rule | 2012-11-05T05:00:00Z | 2012 | 11 | 2012-11-05T05:00:00Z | 2012-11-05T13:45:49Z | 2012-26806 | 0 | 0 | 090000648115d2a8 | |||
| FCA-2012-0023-0001 | FCA | Board Policy Statements | Rule | 2012-10-25T04:00:00Z | 2012 | 10 | 2012-10-25T04:00:00Z | 2012-10-25T13:17:20Z | 2012-26255 | 0 | 0 | 090000648115036e | |||
| FCA-2012-0021-0001 | FCA | Compensation, Retirement Programs, and Related Benefits | Rule | 2012-10-03T04:00:00Z | 2012 | 10 | 2012-10-03T04:00:00Z | 2012-10-03T12:47:14Z | 2012-23726 | 0 | 0 | 0900006481132613 | |||
| FCA-2012-0019-0001 | FCA | Disclosure to Investors in System-wide and Consolidated Bank Debt Obligations of the Farm Credit System: System Audit Committee | Rule | 2012-09-26T04:00:00Z | 2012 | 9 | 2012-09-26T04:00:00Z | 2012-09-26T12:46:55Z | 2012-23723 | 0 | 0 | 0900006481128bac | |||
| FCA-2012-0014-0001 | FCA | Loan Policies and Operations; Lending and Leasing Limits and Risk Management: Effective Dates | Rule | 2012-07-03T04:00:00Z | 2012 | 7 | 2012-07-03T04:00:00Z | 2012-07-03T13:03:34Z | 2012-16318 | 0 | 0 | 0900006481077f51 | |||
| FCA-2012-0012-0001 | FCA | General Provisions; Operating and Strategic Business Planning; Effective Date | Rule | 2012-06-21T04:00:00Z | 2012 | 6 | 2012-06-21T04:00:00Z | 2012-06-21T13:28:39Z | 2012-15197 | 0 | 0 | 090000648105c72f | |||
| FCA-2012-0009-0001 | FCA | General Provisions; Operating and Strategic Business Planning | Rule | 2012-05-01T04:00:00Z | 2012 | 5 | 2012-05-01T04:00:00Z | 2012-05-01T12:57:31Z | 2012-10356 | 0 | 0 | 090000648100238e |
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;