documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where agency_id = "FCA", document_type = "Proposed Rule" and posted_year = 2006 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, 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-2006-0033-0001 | FCA | Semi-annual agenda | Proposed Rule | 2006-12-11T05:00:00Z | 2006 | 12 | 2006-12-11T05:00:00Z | 2008-01-08T21:52:52Z | 06-07559 | 0 | 0 | 09000064801eab77 | |||
| FCA-2006-0028-0001 | FCA | Eligibility and Scope of Financing; Processing and Marketing | Proposed Rule | 2006-10-16T04:00:00Z | 2006 | 10 | 2006-10-16T04:00:00Z | 2007-02-27T04:59:59Z | 2011-06-11T17:20:42Z | E6-17170 | 0 | 0 | 09000064801d5d99 | ||
| FCA-2006-0022-0001 | FCA | Funding and Fiscal Affairs, Loan Policies and Operations, and Funding Operations; Investments in Farmers Notes | Proposed Rule | 2006-07-12T04:00:00Z | 2006 | 7 | 2006-07-12T04:00:00Z | 2011-06-11T17:20:42Z | E6-10940 | 0 | 0 | 090000648019ab07 | |||
| FCA-2006-0020-0001 | FCA | Organization; Standards of Conduct and Referral of Known or Suspected Criminal Violations; Eligibility and Scope of Financing; Loan Policies and Operations; Regulatory Burden | Proposed Rule | 2006-06-15T04:00:00Z | 2006 | 6 | 2006-06-15T04:00:00Z | 2011-06-11T17:20:42Z | E6-09355 | 0 | 0 | 0900006480188d86 | |||
| FCA-2006-0014-0001 | FCA | Federal Agricultural Mortgage Corporation Funding and Fiscal Affairs; Federal Agricultural Mortgage Corporation Disclosure and Reporting Requirements; Risk-Based Capital Requirements | Proposed Rule | 2006-04-26T04:00:00Z | 2006 | 4 | 2006-04-26T04:00:00Z | 2006-05-18T03:59:59Z | 2011-06-11T17:20:41Z | E6-06294 | 0 | 0 | 09000064801658a0 | ||
| FCA-2006-0013-0001 | FCA | Semi-annual agenda | Proposed Rule | 2006-04-24T04:00:00Z | 2006 | 4 | 2006-04-24T04:00:00Z | 2008-01-08T21:52:48Z | 06-02045 | 0 | 0 | 0900006480163ad1 | |||
| FCA-2006-0011-0001 | FCA | Organization; Standards of Conduct and Referral of Known or Suspected Criminal Violations; Eligibility and Scope of Financing; Loan Policies and Operations; Regulatory Burden | Proposed Rule | 2006-03-28T05:00:00Z | 2006 | 3 | 2006-03-28T05:00:00Z | 2006-05-30T03:59:59Z | 2011-06-11T17:20:41Z | E6-04479 | 0 | 0 | 090000648014fa31 | ||
| FCA-2006-0009-0001 | FCA | Organization; Definitions; Disclosure to Shareholders; Accounting and Reporting Requirements; Regulatory Accounting Practices; Title IV Conservators, Receivers, and Voluntary Liquidations; and Disclosure to Investors in System-Wide and Consolidated Bank Debt Obligations of the Farm Credit System | Proposed Rule | 2006-03-14T05:00:00Z | 2006 | 3 | 2006-03-14T05:00:00Z | 2006-06-13T03:59:59Z | 2011-06-11T17:20:40Z | 06-02382 | 0 | 0 | 09000064801450df | ||
| FCA-2006-0006-0001 | FCA | Federal Agricultural Mortgage Corporation Funding and Fiscal Affairs; Federal Agricultural Mortgage Corporation Disclosure and Reporting Requirements; Risk-Based Capital Requirements | Proposed Rule | 2006-02-13T05:00:00Z | 2006 | 2 | 2006-02-13T05:00:00Z | 2006-04-18T03:59:59Z | 2011-06-11T17:20:40Z | E6-01959 | 0 | 0 | 090000648012f249 | ||
| FCA-2006-0003-0001 | FCA | Organization; Termination of System Institution Status | Proposed Rule | 2006-01-11T05:00:00Z | 2006 | 1 | 2006-01-11T05:00:00Z | 2006-03-14T04:59:59Z | 2011-06-11T17:20:39Z | 06-00240 | 0 | 0 | 090000648010dec6 |
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;