documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "FCA", document_type = "Rule" and posted_year = 2005 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, last_modified, 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-2005-0012-0001 | FCA | Title IV Conservators, Receivers, and Voluntary Liquidations; Receivership Repudiation Authorities; Effective Date | Rule | 2005-11-21T05:00:00Z | 2005 | 11 | 2005-11-21T05:00:00Z | 2011-06-11T17:20:39Z | 05-23001 | 0 | 0 | 09000064800a229b | |||
| FCA-2005-0010-0001 | FCA | Organization and Functions; Releasing Information; Privacy Act Regulations; Farm Credit Administration Board Meetings; and Enforcement of Nondiscrimination on the Basis of Handicap in Programs or Activities Conducted by the Farm Credit Administration | Rule | 2005-11-17T05:00:00Z | 2005 | 11 | 2005-11-17T05:00:00Z | 2011-06-11T17:20:38Z | 05-22731 | 0 | 0 | 09000064800a18a8 | |||
| FCA-2005-0009-0001 | FCA | Organization; Standards of Conduct and Referral of Known or Suspected Criminal Violations; Loan Policies and Operations; Funding and Fiscal Affairs, Loan Policies and Operations, and Funding Operations; Disclosure to Shareholders; Preferred Stock; Effective Date | Rule | 2005-11-09T05:00:00Z | 2005 | 11 | 2005-11-09T05:00:00Z | 2011-06-11T17:20:38Z | 05-22276 | 0 | 0 | 090000648009d2e0 | |||
| FCA-2005-0006-0001 | FCA | Funding and Fiscal Affairs, Loan Policies and Operations, and Funding Operations; Investments, Liquidity, and Divestiture; Effective Date | Rule | 2005-10-31T05:00:00Z | 2005 | 10 | 2005-10-31T05:00:00Z | 2011-06-11T17:20:37Z | 05-21629 | 0 | 0 | 0900006480098ab2 | |||
| FCA-2005-0003-0001 | FCA | Disclosure to Shareholders; Accounting and Reporting Requirements; Federal Agricultural Mortgage Corporation General Provisions; Federal Agricultural Mortgage Corporation Governance; Federal Agricultural Mortgage Corporation Funding and Fiscal Affairs; Federal Agricultural Mortgage Corporation Disclosure and Reporting Requirements; Effective Date | Rule | 2005-10-06T04:00:00Z | 2005 | 10 | 2005-10-06T04:00:00Z | 2011-06-11T17:20:37Z | 05-20036 | 0 | 0 | 090000648008f9ee | |||
| FCA-2005-0001-0001 | FCA | Title IV Conservators, Receivers, and Voluntary Liquidations; Receivership Repudiation Authorities | Rule | 2005-09-22T04:00:00Z | 2005 | 9 | 2005-09-22T04:00:00Z | 2011-06-11T17:20:37Z | 05-18892 | 0 | 0 | 090000648005a6e8 |
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;