documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FMCSA-2007-29190" 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, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FMCSA-2007-29190-0007 | FMCSA | WSC - In the Matter of Kuldip Kaur dba Sangha Trucking - Field Administrator's Consent to Respondent's Request for Binding Arbitration FMCSA-2007-29190 | In the Matter of Kuldip Kaur dba Sangha Trucking - Order Dismissing Proceeding and Closing Docket | Other | Order | 2008-02-04T05:00:00Z | 2008 | 2 | 2008-02-04T05:00:00Z | 2024-11-08T03:48:25Z | 1 | 0 | 09000064803a7dca | ||
| FMCSA-2007-29190-0006 | FMCSA | WSC - In the Matter of Kuldip Kaur dba Sangha Trucking - Field Administrator's Consent to Respondent's Request for Binding Arbitration FMCSA-2007-29190 | In the Matter of Kuldip Kaur dba Sangha Trucking - Order Dismissing Proceeding and Closing Docket | Other | 2008-02-01T00:00:00Z | 2008 | 2 | 2024-11-07T01:41:06Z | 0 | 1 | 09000064803a60c2 | ||||
| FMCSA-2007-29190-0004 | FMCSA | WSC - In the Matter of Kuldip Kaur dba Sangha Trucking - Field Administrator's Consent to Respondent's Request for Binding Arbitration FMCSA-2007-29190 | In the Matter of Kuldip Kaur dba Sangha Trucking - Notice of Settlement and Motion to Terminate Proceedings and Close Docket | Other | Notification of Settlement | 2007-12-28T05:00:00Z | 2007 | 12 | 2007-12-28T05:00:00Z | 2024-11-07T21:43:52Z | 1 | 0 | 090000648037ea16 | ||
| FMCSA-2007-29190-0005 | FMCSA | WSC - In the Matter of Kuldip Kaur dba Sangha Trucking - Field Administrator's Consent to Respondent's Request for Binding Arbitration FMCSA-2007-29190 | In the Matter of Kuldip Kaur dba Sangha Trucking - Notice of Settlement and Motion to Terminate Arbitration Proceeding | Other | Notification of Settlement | 2007-12-28T05:00:00Z | 2007 | 12 | 2007-12-28T05:00:00Z | 2024-11-12T04:01:58Z | 1 | 0 | 090000648037ea1c | ||
| FMCSA-2007-29190-0003 | FMCSA | WSC - In the Matter of Kuldip Kaur dba Sangha Trucking - Field Administrator's Consent to Respondent's Request for Binding Arbitration FMCSA-2007-29190 | In the Matter of Kuldip Kaur dba Sangha Trucking - Follow-up Letter | Other | Letter(s) | 2007-11-28T05:00:00Z | 2007 | 11 | 2007-11-28T05:00:00Z | 2024-11-11T21:36:17Z | 1 | 0 | 0900006480369aab | ||
| FMCSA-2007-29190-0002 | FMCSA | WSC - In the Matter of Kuldip Kaur dba Sangha Trucking - Field Administrator's Consent to Respondent's Request for Binding Arbitration FMCSA-2007-29190 | In the Matter of Kuldip Kaur dba Sangha Trucking - Order on Binding Arbitration | Other | Order | 2007-10-22T04:00:00Z | 2007 | 10 | 2007-10-22T04:00:00Z | 2008-01-08T22:04:28Z | 0 | 0 | 09000064802fed1a | ||
| FMCSA-2007-29190-0001 | FMCSA | WSC - In the Matter of Kuldip Kaur dba Sangha Trucking - Field Administrator's Consent to Respondent's Request for Binding Arbitration FMCSA-2007-29190 | In the Matter of Kuldip Kaur dba Sangha Trucking - Field Administrator's Consent to Respondent's Request for Binding Arbitration | Other | Request | 2007-09-06T04:00:00Z | 2007 | 9 | 2007-09-06T04:00:00Z | 2007-09-07T03:59:59Z | 2024-11-07T02:16:49Z | 1 | 0 | 09000064802ae5d8 |
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;