documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FMCSA-2021-0064" and posted_year = 2022 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, posted_date (date), comment_start_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-2021-0064-0020 | FMCSA | None FMCSA-2021-0064 | In the Matter of Rainey Bros. Inc. - Order Approving the Settlement Agreement and Granting Motion to Dismiss | Other | Order | 2022-10-26T04:00:00Z | 2022 | 10 | 2022-10-26T04:00:00Z | 2024-11-07T00:43:36Z | 1 | 0 | 090000648545eada | ||
| FMCSA-2021-0064-0019 | FMCSA | None FMCSA-2021-0064 | In the Matter of Rainey Bros, Inc. - Notice Of Settlement and Motion to Terminate Proceeding & Close Docket | Other | Notification of Settlement | 2022-10-25T04:00:00Z | 2022 | 10 | 2022-10-25T04:00:00Z | 2024-11-07T00:43:18Z | 1 | 0 | 0900006485457e91 | ||
| FMCSA-2021-0064-0018 | FMCSA | None FMCSA-2021-0064 | In the Matter of Rainey Bros, Inc. - Field Administrator's Rebuttal to Respondents Response to Claimant's Motion for Summary Judgment | Other | Rebuttal | 2022-10-03T04:00:00Z | 2022 | 10 | 2022-10-03T04:00:00Z | 2024-11-07T00:42:55Z | 1 | 0 | 09000064853a1e3f | ||
| FMCSA-2021-0064-0017 | FMCSA | None FMCSA-2021-0064 | In the Matter of Rainey Bros. Inc. - Motion for Summary Judgment | Other | Motion | 2022-08-04T04:00:00Z | 2022 | 8 | 2022-08-04T04:00:00Z | 2024-11-12T23:44:23Z | 1 | 0 | 09000064852132b1 | ||
| FMCSA-2021-0064-0016 | FMCSA | None FMCSA-2021-0064 | In the Matter of Rainey Bros. Inc. - Order Amending Litigation Dates and Procedures | Other | Order | 2022-05-16T04:00:00Z | 2022 | 5 | 2022-05-16T04:00:00Z | 2024-11-12T23:40:56Z | 1 | 0 | 0900006485081487 | ||
| FMCSA-2021-0064-0015 | FMCSA | None FMCSA-2021-0064 | In the Matter of Rainey Bros. Inc. - Order Setting Telephone Status Conference | Other | Order | 2022-03-18T04:00:00Z | 2022 | 3 | 2022-03-18T04:00:00Z | 2024-11-07T00:38:29Z | 1 | 0 | 0900006484fd429e | ||
| FMCSA-2021-0064-0014 | FMCSA | None FMCSA-2021-0064 | In the Matter of Rainey Bros, Inc. - Order Setting Pre-Hearing Telephone Conference | Other | Order | 2022-03-03T05:00:00Z | 2022 | 3 | 2022-03-03T05:00:00Z | 2024-11-12T23:38:46Z | 1 | 0 | 0900006484fb82b0 | ||
| FMCSA-2021-0064-0013 | FMCSA | None FMCSA-2021-0064 | In the Matter of Rainey Bros, Inc. - Order of Withdrawal of Counsel for Respondent | Other | Order | 2022-03-02T05:00:00Z | 2022 | 3 | 2022-03-02T05:00:00Z | 2024-11-12T23:39:54Z | 1 | 0 | 0900006484fb6684 | ||
| FMCSA-2021-0064-0012 | FMCSA | None FMCSA-2021-0064 | In the Matter of Rainey Bros, Inc. - Notice of Withdrawal of Counsel for Respondent | Other | Withdrawal | 2022-02-28T05:00:00Z | 2022 | 2 | 2022-02-28T05:00:00Z | 2024-11-12T23:39:29Z | 1 | 0 | 0900006484fadff4 |
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;