documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FMCSA-2013-0283" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-0283-0032 | FMCSA | Hours of Service; Waivers and Exemptions from the 30-Minute Rest Break Requirement for the Transportation of Livestock FMCSA-2013-0283 | Hours of Service of Drivers; Exemption Applications: Agricultural and Food Transporters Conference | Notice | Request for Comments | 2015-06-12T04:00:00Z | 2015 | 6 | 2015-06-12T04:00:00Z | 2015-07-14T03:59:59Z | 2024-11-11T20:58:08Z | 2015-14277 | 1 | 0 | 0900006481b303d0 |
| FMCSA-2013-0283-0031 | FMCSA | Hours of Service; Waivers and Exemptions from the 30-Minute Rest Break Requirement for the Transportation of Livestock FMCSA-2013-0283 | Hours of Service of Drivers; Exemption Applications: National Pork Producers Council | Notice | Notice of Change | 2014-06-11T04:00:00Z | 2014 | 6 | 2014-06-11T04:00:00Z | 2014-06-11T13:40:08Z | 2014-13628 | 0 | 0 | 090000648173a662 | |
| FMCSA-2013-0283-0004 | FMCSA | Hours of Service; Waivers and Exemptions from the 30-Minute Rest Break Requirement for the Transportation of Livestock FMCSA-2013-0283 | Hours of Service of Drivers; Exemption Applications: National Pork Producers Council; Hours of Service of Drivers | Notice | Request for Comments | 2013-08-12T04:00:00Z | 2013 | 8 | 2013-08-12T04:00:00Z | 2013-09-12T03:59:59Z | 2024-11-07T22:58:27Z | 2013-19387 | 1 | 0 | 09000064813ac569 |
| FMCSA-2013-0283-0003 | FMCSA | Hours of Service; Waivers and Exemptions from the 30-Minute Rest Break Requirement for the Transportation of Livestock FMCSA-2013-0283 | Hours of Service of Drivers: Limited 90-Day Waiver from the 30-Minute Rest Break Requirement for the Transportation of Livestock | Rule | Final Rule | 2013-07-11T04:00:00Z | 2013 | 7 | 2013-07-11T04:00:00Z | 2024-11-07T22:55:06Z | 2013-16679 | 1 | 0 | 09000064813607be | |
| FMCSA-2013-0283-0002 | FMCSA | Hours of Service; Waivers and Exemptions from the 30-Minute Rest Break Requirement for the Transportation of Livestock FMCSA-2013-0283 | Trucks Involved in Fatal Accidents Factbook 2008 | Other | Report | 2013-07-10T04:00:00Z | 2013 | 7 | 2013-07-10T04:00:00Z | 2024-11-07T22:54:25Z | 1 | 0 | 090000648135f481 | ||
| FMCSA-2013-0283-0001 | FMCSA | Hours of Service; Waivers and Exemptions from the 30-Minute Rest Break Requirement for the Transportation of Livestock FMCSA-2013-0283 | Request for Limited Exemption for Livestock Carriers FMCSA Final Rule for Hours of Service of Drivers | Other | Petition(s) | 2013-07-10T04:00:00Z | 2013 | 7 | 2013-07-10T04:00:00Z | 2024-11-07T22:55:13Z | 1 | 0 | 090000648135f47e |
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;