documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "FCA", document_type = "Proposed Rule" and posted_year = 2010 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, comment_end_date, last_modified, 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-2010-0033-0001 | FCA | Standards of Conduct and Referral of Known or Suspected Criminal Violations: Disclosure to Shareholders and Investors in System-wide and Consolidated Bank Debt Obligations of Farm Credit System, etc. | Proposed Rule | 2010-11-18T05:00:00Z | 2010 | 11 | 2010-11-18T05:00:00Z | 2011-03-19T03:59:59Z | 2011-06-11T17:21:02Z | 2010-29025 | 0 | 0 | 0900006480b9870f | ||
| FCA-2010-0032-0001 | FCA | Funding and Fiscal Affairs, Loan Policies and Operations, and Funding Operations: Capital Adequacy; Capital Components; Basel Accord Tier One and Tier Two | Proposed Rule | 2010-11-08T05:00:00Z | 2010 | 11 | 2010-11-08T05:00:00Z | 2011-05-05T03:59:59Z | 2011-06-11T17:21:02Z | 2010-28245 | 0 | 0 | 0900006480b840ef | ||
| FCA-2010-0026-0001 | FCA | Loan Policies and Operations: Loan Purchases from FDIC | Proposed Rule | 2010-09-16T04:00:00Z | 2010 | 9 | 2010-09-16T04:00:00Z | 2010-10-19T03:59:59Z | 2011-06-11T17:21:01Z | 2010-23068 | 0 | 0 | 0900006480b4f8eb | ||
| FCA-2010-0023-0001 | FCA | Lending and Leasing Limits and Risk Management: Loan Policies and Operations | Proposed Rule | 2010-08-18T04:00:00Z | 2010 | 8 | 2010-08-18T04:00:00Z | 2010-10-19T03:59:59Z | 2011-06-11T17:21:00Z | 2010-20367 | 0 | 0 | 0900006480b341cc | ||
| FCA-2010-0019-0001 | FCA | Funding and Fiscal Affairs, Loan Policies and Operations, and Funding Operations: Capital Adequacy; Capital ComponentsBasel Accord Tier 1 and Tier 2 | Proposed Rule | 2010-07-08T04:00:00Z | 2010 | 7 | 2010-07-08T04:00:00Z | 2010-11-06T03:59:59Z | 2011-06-11T17:20:59Z | 2010-16457 | 0 | 0 | 0900006480b1502a | ||
| FCA-2010-0013-0001 | FCA | Federal Agricultural Mortgage Corporation Funding and Fiscal Affairs: Farmer Mac Investments and Liquidity | Proposed Rule | 2010-05-19T04:00:00Z | 2010 | 5 | 2010-05-19T04:00:00Z | 2010-07-07T03:59:59Z | 2011-06-11T17:20:58Z | 2010-12012 | 0 | 0 | 0900006480af0a08 | ||
| FCA-2010-0012-0001 | FCA | Loan Purchases from FDIC: Loan Policies and Operations | Proposed Rule | 2010-05-18T04:00:00Z | 2010 | 5 | 2010-05-18T04:00:00Z | 2010-07-20T03:59:59Z | 2011-06-11T17:20:58Z | 2010-11772 | 0 | 0 | 0900006480aef92e | ||
| FCA-2010-0007-0001 | FCA | Federal Agricultural Mortgage Corporation Funding and Fiscal Affairs; Risk-Based Capital Requirements | Proposed Rule | 2010-03-23T04:00:00Z | 2010 | 3 | 2010-03-23T04:00:00Z | 2010-04-23T03:59:59Z | 2011-06-11T17:20:57Z | 2010-06292 | 0 | 0 | 0900006480ac610d | ||
| FCA-2010-0002-0001 | FCA | Federal Agricultural Mortgage Corporation Funding and Fiscal Affairs: Risk-Based Capital Requirements | Proposed Rule | 2010-01-22T05:00:00Z | 2010 | 1 | 2010-01-22T05:00:00Z | 2010-03-09T04:59:59Z | 2011-06-11T17:20:57Z | 2010-01205 | 0 | 0 | 0900006480a81f83 |
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;