documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FMC-2022-0067" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, posted_date (date), comment_start_date (date), last_modified (date)
document_type 3
agency_id 1
- FMC 6
| 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FMC-2022-0067-0020 | FMC | Notices of Proposed Rulemaking Carrier Automated Tariffs FMC-2022-0067 | Carrier Automated Tariffs | Rule | 2024-01-02T05:00:00Z | 2024 | 1 | 2024-01-02T05:00:00Z | 2024-01-04T16:32:19Z | 2023-27783 | 0 | 0 | 090000648636a0d8 | ||
| FMC-2022-0067-0006 | FMC | Notices of Proposed Rulemaking Carrier Automated Tariffs FMC-2022-0067 | Notice of Proposed Rulemaking - Carrier Automated Tariffs (as Sent to the Federal Register) (Doc. No. 6) | Proposed Rule | 2022-10-17T04:00:00Z | 2022 | 10 | 2022-10-17T04:00:00Z | 2022-10-17T13:51:46Z | 0 | 0 | 090000648540fefa | |||
| FMC-2022-0067-0008 | FMC | Notices of Proposed Rulemaking Carrier Automated Tariffs FMC-2022-0067 | Notice of Proposed Rulemaking appeared in Federal Register 87 FR 27971 (Comments Due June 9, 2022) (Doc. No. 8) | Proposed Rule | 2022-10-17T04:00:00Z | 2022 | 10 | 2022-10-17T04:00:00Z | 2022-10-18T01:00:54Z | 0 | 0 | 090000648540ff01 | |||
| FMC-2022-0067-0007 | FMC | Notices of Proposed Rulemaking Carrier Automated Tariffs FMC-2022-0067 | NPRM - Environmental Assessment on Docket No. 21-03 and Finding of No Significant Impact (Doc. No. 7) | Supporting & Related Material | 2022-10-17T04:00:00Z | 2022 | 10 | 2022-10-17T13:56:39Z | 0 | 0 | 090000648540fefd | ||||
| FMC-2022-0067-0002 | FMC | Notices of Proposed Rulemaking Carrier Automated Tariffs FMC-2022-0067 | Advanced Notice of Proposed Rulemaking appeared in Federal Register, 86 FR 18240 (Comments due June 7, 2021) (Doc. No. 2) | Proposed Rule | 2022-10-14T04:00:00Z | 2022 | 10 | 2022-10-14T04:00:00Z | 2022-10-15T01:00:26Z | 0 | 0 | 0900006485407b48 | |||
| FMC-2022-0067-0001 | FMC | Notices of Proposed Rulemaking Carrier Automated Tariffs FMC-2022-0067 | Advance Notice of Proposed Rulemaking (Doc. No. 1) | Proposed Rule | 2022-10-14T04:00:00Z | 2022 | 10 | 2022-10-14T04:00:00Z | 2022-10-14T15:47:50Z | 0 | 0 | 0900006485407b28 |
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;