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 = "Proposed Rule" and posted_year = 2007 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-2007-0027-0001 | FCA | Funding and Fiscal Affairs, Loan Policies and Operations, and Funding Operations; Capital Adequacy--Basel Accord | Proposed Rule | 2007-10-31T04:00:00Z | 2007 | 10 | 2007-10-31T04:00:00Z | 2008-04-01T03:59:59Z | 2011-06-11T17:20:47Z | E7-21422 | 0 | 0 | 090000648035bafa | ||
| FCA-2007-0023-0001 | FCA | Federal Agricultural Mortgage Corporation Funding and Fiscal Affairs; Risk-Based Capital Requirements | Proposed Rule | 2007-09-13T04:00:00Z | 2007 | 9 | 2007-09-13T04:00:00Z | 2007-10-30T03:59:59Z | 2011-06-11T17:20:46Z | E7-18014 | 0 | 0 | 090000648028533a | ||
| FCA-2007-0021-0001 | FCA | Disclosure to Shareholders--Annual Report to Shareholders | Proposed Rule | 2007-08-14T04:00:00Z | 2007 | 8 | 2007-08-14T04:00:00Z | 2007-09-14T03:59:59Z | 2011-06-11T17:20:46Z | E7-15842 | 0 | 0 | 0900006480276dbc | ||
| FCA-2007-0018-0001 | FCA | Funding and Fiscal Affairs, Loan Policies and Operations, and Funding Operations; Capital Adequacy--Basel Accord | Proposed Rule | 2007-06-21T04:00:00Z | 2007 | 6 | 2007-06-21T04:00:00Z | 2007-11-20T04:59:59Z | 2011-06-11T17:20:46Z | E7-11990 | 0 | 0 | 09000064802549bc | ||
| FCA-2007-0015-0001 | FCA | Semi-annual agenda | Proposed Rule | 2007-04-30T04:00:00Z | 2007 | 4 | 2007-04-30T04:00:00Z | 2008-01-08T21:52:52Z | 07-01256 | 0 | 0 | 09000064802319c4 | |||
| FCA-2007-0011-0001 | FCA | Title IV Conservators, Receivers, and Voluntary Liquidations; Joint and Several Liability--Priority of Claims | Proposed Rule | 2007-03-12T04:00:00Z | 2007 | 3 | 2007-03-12T04:00:00Z | 2007-05-12T03:59:59Z | 2011-06-11T17:20:45Z | E7-04427 | 0 | 0 | 0900006480212be8 | ||
| FCA-2007-0003-0001 | FCA | Eligibility and Scope of Financing; Processing and Marketing | Proposed Rule | 2007-01-11T05:00:00Z | 2007 | 1 | 2007-01-11T05:00:00Z | 2007-02-27T04:59:59Z | 2011-06-11T17:20:44Z | E7-00221 | 0 | 0 | 09000064801f3c0e |
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;