documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where agency_id = "FCA", document_type = "Rule" and posted_year = 2009 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-2009-0028-0001 | FCA | Effective Interest Rates: Borrower Rights | Rule | 2009-12-22T05:00:00Z | 2009 | 12 | 2009-12-22T05:00:00Z | 2011-06-11T17:20:56Z | E9-30438 | 0 | 0 | 0900006480a6f6d0 | |||
| FCA-2009-0023-0001 | FCA | Farm Credit Administration Board Meetings; Sunshine Act; Effective Date | Rule | 2009-10-27T04:00:00Z | 2009 | 10 | 2009-10-27T04:00:00Z | 2011-06-11T17:20:56Z | E9-25853 | 0 | 0 | 0900006480a4bfff | |||
| FCA-2009-0017-0001 | FCA | Farm Credit Administration Board Meetings; Sunshine Act | Rule | 2009-08-31T04:00:00Z | 2009 | 8 | 2009-08-31T04:00:00Z | 2011-06-11T17:20:55Z | E9-20939 | 0 | 0 | 0900006480a19121 | |||
| FCA-2009-0016-0001 | FCA | Definitions; Disclosure to Shareholders; Accounting and Reporting Requirements, etc.; Effective Date | Rule | 2009-08-11T04:00:00Z | 2009 | 8 | 2009-08-11T04:00:00Z | 2011-06-11T17:20:55Z | E9-19122 | 0 | 0 | 0900006480a057dd | |||
| FCA-2009-0011-0001 | FCA | Definitions; Disclosure to Shareholders; Accounting and Reporting Requirements; Disclosure and Accounting Requirements | Rule | 2009-06-17T04:00:00Z | 2009 | 6 | 2009-06-17T04:00:00Z | 2011-06-11T17:20:54Z | E9-14255 | 0 | 0 | 09000064809d13f7 |
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;