documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "FCA", document_type = "Rule" and posted_year = 2010 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2010-0027-0001 | FCA | Assessment and Apportionment of Administrative Expenses; Standards of Conduct and Referral of Known or Suspected Criminal Violations, etc.: Technical Changes; Farm Credit Administration Board Meetings | Rule | 2010-09-27T04:00:00Z | 2010 | 9 | 2010-09-27T04:00:00Z | 2011-06-11T17:21:01Z | 2010-23976 | 0 | 0 | 0900006480b60ac2 | |||
| FCA-2010-0021-0002 | FCA | Registration of Mortgage Loan Originators; Correction | Rule | 2010-08-23T04:00:00Z | 2010 | 8 | 2010-08-23T04:00:00Z | 2011-06-11T17:21:00Z | C1-2010-18148 | 0 | 0 | 0900006480b37b56 | |||
| FCA-2010-0021-0001 | FCA | Registration of Mortgage Loan Originators | Rule | 2010-07-28T04:00:00Z | 2010 | 7 | 2010-07-28T04:00:00Z | 2011-06-11T17:21:00Z | 2010-18148 | 0 | 0 | 0900006480b2265e | |||
| FCA-2010-0017-0001 | FCA | Farm Credit Administration Board Meetings; Assessment and Apportionment of Administrative Expenses; etc.; Technical Changes | Rule | 2010-06-24T04:00:00Z | 2010 | 6 | 2010-06-24T04:00:00Z | 2010-07-27T03:59:59Z | 2011-06-11T17:20:59Z | 2010-15327 | 0 | 0 | 0900006480b093f1 | ||
| FCA-2010-0016-0001 | FCA | Organization; Eligibility and Scope of Financing; etc. | Rule | 2010-06-02T04:00:00Z | 2010 | 6 | 2010-06-02T04:00:00Z | 2011-06-11T17:20:59Z | 2010-13110 | 0 | 0 | 0900006480afa16f | |||
| FCA-2010-0009-0001 | FCA | Organization; Eligibility and Scope of Financing; Funding and Fiscal Affairs, Loan Policies and Operations, and Funding Operations, etc. | Rule | 2010-04-12T04:00:00Z | 2010 | 4 | 2010-04-12T04:00:00Z | 2011-06-11T17:20:58Z | 2010-07755 | 0 | 0 | 0900006480ad5abe | |||
| FCA-2010-0006-0001 | FCA | Borrower Rights, Effective Interest Rates, Effective Date | Rule | 2010-03-08T05:00:00Z | 2010 | 3 | 2010-03-08T05:00:00Z | 2011-06-11T17:20:57Z | 2010-04858 | 0 | 0 | 0900006480ab8194 |
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;