documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FMC-2023-0009" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, withdrawn, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FMC-2023-0009-0010 | FMC | Update of Existing FMC User Fees FMC-2023-0009 | Update of Existing User Fees | Rule | 2023-06-23T04:00:00Z | 2023 | 6 | 2023-06-23T04:00:00Z | 2023-06-26T16:00:53Z | 2023-13378 | 0 | 0 | 0900006485bcd9e7 | ||
| FMC-2023-0009-0009 | FMC | Update of Existing FMC User Fees FMC-2023-0009 | Update of Existing User Fees | Rule | 2023-05-19T04:00:00Z | 2023 | 5 | 2023-05-19T04:00:00Z | 2023-05-19T16:48:08Z | 2023-10751 | 0 | 0 | 0900006485a22acc | ||
| FMC-2023-0009-0003 | FMC | Update of Existing FMC User Fees FMC-2023-0009 | User Fees Overhead Rate Methodology for Rule | Supporting & Related Material | 2023-04-13T04:00:00Z | 2023 | 4 | 2023-04-13T19:30:20Z | 0 | 0 | 0900006485944a70 | ||||
| FMC-2023-0009-0004 | FMC | Update of Existing FMC User Fees FMC-2023-0009 | 2023-3-07FY23 User Fee Control File - Final | Supporting & Related Material | 2023-04-13T04:00:00Z | 2023 | 4 | 2023-04-13T19:26:29Z | 0 | 0 | 0900006485944bf6 | ||||
| FMC-2023-0009-0001 | FMC | Update of Existing FMC User Fees FMC-2023-0009 | Update of Existing User Fees | Rule | 2023-03-21T04:00:00Z | 2023 | 3 | 2023-03-21T04:00:00Z | 2023-04-21T03:59:59Z | 2023-04-21T01:01:02Z | 2023-05764 | 0 | 0 | 090000648580f3eb | |
| FMC-2023-0009-0002 | FMC | Update of Existing FMC User Fees FMC-2023-0009 | Civil Penalty Amendments to Rules of Practice and Procedure | Rule | 2023-03-20T00:00:00Z | 2023 | 3 | 2023-03-22T18:17:10Z | 0 | 1 | 09000064857fd4ec |
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;