documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FMCSA-2013-0002" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, open_for_comment, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FMCSA-2013-0002-0007 | FMCSA | SSC - In the Matter of Newman Oil Company, Inc. - Field Administrator's Reply Motion for Final Order FMCSA-2013-0002 | Request to Medical Examiners on the National Registry of Certified Medical Examiners Regarding Submission of Examination Results | Notice | General Notice | 2021-08-09T04:00:00Z | 2021 | 8 | 2021-08-09T04:00:00Z | 2021-08-09T14:57:36Z | 2021-16955 | 0 | 0 | 0900006484c36540 | |
| FMCSA-2013-0002-0006 | FMCSA | SSC - In the Matter of Newman Oil Company, Inc. - Field Administrator's Reply Motion for Final Order FMCSA-2013-0002 | Meetings; Sunshine Act | Notice | Meeting | 2021-08-09T04:00:00Z | 2021 | 8 | 2021-08-09T04:00:00Z | 2021-08-09T14:56:32Z | 2021-17038 | 0 | 0 | 0900006484c3662a | |
| FMCSA-2013-0002-0005 | FMCSA | SSC - In the Matter of Newman Oil Company, Inc. - Field Administrator's Reply Motion for Final Order FMCSA-2013-0002 | Meetings; Sunshine Act | Notice | General Notice | 2021-02-01T05:00:00Z | 2021 | 2 | 2021-02-01T05:00:00Z | 2024-11-06T23:44:44Z | 2021-02145 | 1 | 0 | 0900006484a11a79 | |
| FMCSA-2013-0002-0004 | FMCSA | SSC - In the Matter of Newman Oil Company, Inc. - Field Administrator's Reply Motion for Final Order FMCSA-2013-0002 | Meetings; Sunshine Act | Notice | Meeting | 2020-12-08T05:00:00Z | 2020 | 12 | 2020-12-08T05:00:00Z | 2024-11-06T23:42:15Z | 2020-27025 | 1 | 0 | 090000648498caae | |
| FMCSA-2013-0002-0003 | FMCSA | SSC - In the Matter of Newman Oil Company, Inc. - Field Administrator's Reply Motion for Final Order FMCSA-2013-0002 | National Hazardous Materials Route Registry | Notice | Notice of Change | 2020-06-03T04:00:00Z | 2020 | 6 | 2020-06-03T04:00:00Z | 2024-11-12T23:20:05Z | 2020-11912 | 1 | 0 | 09000064846c6406 | |
| FMCSA-2013-0002-0002 | FMCSA | SSC - In the Matter of Newman Oil Company, Inc. - Field Administrator's Reply Motion for Final Order FMCSA-2013-0002 | Meetings; Sunshine Act | Notice | Meeting | 2020-02-18T05:00:00Z | 2020 | 2 | 2020-02-18T05:00:00Z | 2024-11-12T23:17:49Z | 2020-03252 | 1 | 0 | 090000648437b3a0 | |
| FMCSA-2013-0002-0001 | FMCSA | SSC - In the Matter of Newman Oil Company, Inc. - Field Administrator's Reply Motion for Final Order FMCSA-2013-0002 | Qualification of Drivers; Exemption Applications: Vision | Notice | Request for Comments | 2013-04-24T04:00:00Z | 2013 | 4 | 2013-04-24T04:00:00Z | 2013-05-25T03:59:59Z | 2024-11-12T05:17:48Z | 2013-09694 | 1 | 0 | 09000064812a5544 |
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;