documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "FCA", document_type = "Proposed Rule" and posted_year = 2011 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, 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-2011-0036-0001 | FCA | Funding and Fiscal Affairs, Loan Policies and Operations, and Funding Operations; Liquidity and Funding | Proposed Rule | 2011-12-27T05:00:00Z | 2011 | 12 | 2011-12-27T05:00:00Z | 2012-02-28T04:59:59Z | 2011-12-27T14:30:33Z | 2011-32698 | 0 | 0 | 0900006480f89899 | ||
| FCA-2011-0033-0001 | FCA | Federal Agricultural Mortgage Corporation Funding and Fiscal Affairs: Farmer Mac Investments and Liquidity Management | Proposed Rule | 2011-11-18T05:00:00Z | 2011 | 11 | 2011-11-18T05:00:00Z | 2012-01-18T04:59:59Z | 2011-11-18T13:57:28Z | 2011-29690 | 0 | 0 | 0900006480f6f598 | ||
| FCA-2011-0025-0001 | FCA | Funding and Fiscal Affairs, Loan Policies and Operations, and Funding Operations: Capital Adequacy Risk-Weighting Revisions; Alternatives to Credit Ratings | Proposed Rule | 2011-08-26T04:00:00Z | 2011 | 8 | 2011-08-26T04:00:00Z | 2011-11-26T04:59:59Z | 2011-08-26T13:40:55Z | 2011-21659 | 0 | 0 | 0900006480ef40c6 | ||
| FCA-2011-0024-0001 | FCA | Funding and Fiscal Affairs, Loan Policies and Operations, and Funding Operations; Investment Management | Proposed Rule | 2011-08-18T04:00:00Z | 2011 | 8 | 2011-08-18T04:00:00Z | 2011-11-17T04:59:59Z | 2011-08-18T11:51:48Z | 2011-20965 | 0 | 0 | 0900006480ee433d | ||
| FCA-2011-0018-0001 | FCA | Margin and Capital Requirements for Covered Swap Entities | Proposed Rule | 2011-06-24T04:00:00Z | 2011 | 6 | 2011-06-24T04:00:00Z | 2011-07-12T03:59:59Z | 2011-06-24T17:25:18Z | 2011-16004 | 0 | 0 | 0900006480eb3486 | ||
| FCA-2011-0016-0001 | FCA | Federal Agricultural Mortgage Corporation Funding and Fiscal Affairs: Farmer Mac Risk-Based Capital Stress Test, Version 5.0 | Proposed Rule | 2011-06-16T04:00:00Z | 2011 | 6 | 2011-06-16T04:00:00Z | 2011-08-16T03:59:59Z | 2011-06-16T12:18:22Z | 2011-14985 | 0 | 0 | 0900006480e511ba | ||
| FCA-2011-0013-0001 | FCA | General Provisions; Operating and Strategic Business Planning | Proposed Rule | 2011-05-25T04:00:00Z | 2011 | 5 | 2011-05-25T04:00:00Z | 2011-07-26T03:59:59Z | 2011-06-11T17:21:04Z | 2011-12786 | 0 | 0 | 0900006480e31bdf | ||
| FCA-2011-0010-0001 | FCA | Margin and Capital Requirements for Covered Swap Entities Agencies | Proposed Rule | 2011-05-11T04:00:00Z | 2011 | 5 | 2011-05-11T04:00:00Z | 2011-06-25T03:59:59Z | 2011-06-11T17:21:03Z | 2011-10432 | 0 | 0 | 0900006480c6c015 |
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;