documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where agency_id = "FCA", document_type = "Rule" and posted_year = 2021 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_date, 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-2021-0030-0001 | FCA | Regulatory Capital Rules: Tier 1/Tier 2 Framework | Rule | 2021-12-02T05:00:00Z | 2021 | 12 | 2021-12-02T05:00:00Z | 2021-12-02T12:55:00Z | 2021-26173 | 0 | 0 | 0900006484e9368b | |||
| FCA-2021-0025-0001 | FCA | Standards of Conduct | Rule | 2021-10-22T04:00:00Z | 2021 | 10 | 2021-10-22T04:00:00Z | 2021-10-26T14:37:21Z | 2021-23059 | 0 | 0 | 0900006484de2556 | |||
| FCA-2021-0026-0001 | FCA | Standards of Conduct | Rule | 2021-10-22T04:00:00Z | 2021 | 10 | 2021-10-22T04:00:00Z | 2021-10-26T14:37:26Z | 2021-23062 | 0 | 0 | 0900006484de261d | |||
| FCA-2021-0022-0001 | FCA | Regulatory Capital Rule: Tier 1/Tier 2 Framework | Rule | 2021-10-01T04:00:00Z | 2021 | 10 | 2021-10-01T04:00:00Z | 2021-10-01T11:45:28Z | 2021-20433 | 0 | 0 | 0900006484db6090 | |||
| FCA-2021-0021-0001 | FCA | Standards of Conduct | Rule | 2021-09-13T04:00:00Z | 2021 | 9 | 2021-09-13T04:00:00Z | 2021-09-13T11:46:53Z | 2021-18432 | 0 | 0 | 0900006484d75af4 | |||
| FCA-2021-0016-0001 | FCA | Federal Agricultural Mortgage Corporation Disclosure and Reporting | Rule | 2021-07-16T04:00:00Z | 2021 | 7 | 2021-07-16T04:00:00Z | 2021-07-16T13:43:51Z | 2021-15115 | 0 | 0 | 0900006484bfbb7e | |||
| FCA-2021-0012-0001 | FCA | Federal Agricultural Mortgage Corporation Disclosure and Reporting | Rule | 2021-05-24T04:00:00Z | 2021 | 5 | 2021-05-24T04:00:00Z | 2021-06-24T03:59:59Z | 2021-05-24T11:43:03Z | 2021-10769 | 0 | 0 | 0900006484b2e1e9 | ||
| FCA-2021-0011-0001 | FCA | Title IV Conservators and Receivers | Rule | 2021-05-21T04:00:00Z | 2021 | 5 | 2021-05-21T04:00:00Z | 2021-05-21T12:18:59Z | 2021-10577 | 0 | 0 | 0900006484b25955 | |||
| FCA-2021-0007-0001 | FCA | Title IV Conservators and Receivers | Rule | 2021-03-22T04:00:00Z | 2021 | 3 | 2021-03-22T04:00:00Z | 2021-03-22T11:46:29Z | 2021-05860 | 0 | 0 | 0900006484a73619 | |||
| FCA-2021-0003-0001 | FCA | Rules of Practice and Procedure: Adjusting Civil Money Penalties for Inflation | Rule | 2021-01-27T05:00:00Z | 2021 | 1 | 2021-01-27T05:00:00Z | 2021-01-27T12:39:37Z | 2021-01796 | 0 | 0 | 0900006484a02a58 | |||
| FCA-2021-0001-0001 | FCA | District Financial Reporting | Rule | 2021-01-05T05:00:00Z | 2021 | 1 | 2021-01-05T05:00:00Z | 2021-01-05T12:50:13Z | 2020-27191 | 0 | 0 | 09000064849de68a |
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;