documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FMCSA-2001-9336" and document_type = "Other" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-2001-9336-0009 | FMCSA | ESC - In the Matter of Ayr Motor Express, Inc. - Motion for Final Order FMCSA-2001-9336 | In the Matter of Ayr Motor Express, Inc. - Order Dismissing Proceeding and Closing Docket | Other | Order | 2003-02-19T05:00:00Z | 2003 | 2 | 2003-02-19T05:00:00Z | 2003-02-20T04:59:59Z | 2024-11-12T03:53:36Z | 1 | 0 | 0900006480342943 | |
| FMCSA-2001-9336-0008 | FMCSA | ESC - In the Matter of Ayr Motor Express, Inc. - Motion for Final Order FMCSA-2001-9336 | In the Matter of AYR Motor Express, Inc. - Field Administrator's Motion to Withdraw Motion For Final Order | Other | Motion | 2002-05-24T04:00:00Z | 2002 | 5 | 2002-05-24T04:00:00Z | 2002-05-25T03:59:59Z | 2024-11-12T03:53:36Z | 1 | 0 | 0900006480342942 | |
| FMCSA-2001-9336-0007 | FMCSA | ESC - In the Matter of Ayr Motor Express, Inc. - Motion for Final Order FMCSA-2001-9336 | In the Matter of Ayr Motor Express, Inc. - Rebuttal to Field Aministrator's Response to Respondent's Discovery Requests | Other | Reply | 2001-05-30T04:00:00Z | 2001 | 5 | 2001-05-30T04:00:00Z | 2001-05-31T03:59:59Z | 2024-11-12T03:53:36Z | 1 | 0 | 0900006480342941 | |
| FMCSA-2001-9336-0006 | FMCSA | ESC - In the Matter of Ayr Motor Express, Inc. - Motion for Final Order FMCSA-2001-9336 | In the Matter of Ayr Motor Express, Inc. - Response to Request for Admissions, Request for Response to Interrogatories, and Request for Production of Documents, Seeking Ruling that Discovery does not Commence Until Referral for Hearing | Other | Response(s) | 2001-05-18T04:00:00Z | 2001 | 5 | 2001-05-18T04:00:00Z | 2001-05-19T03:59:59Z | 2024-11-12T03:53:36Z | 1 | 0 | 090000648034293d | |
| FMCSA-2001-9336-0005 | FMCSA | ESC - In the Matter of Ayr Motor Express, Inc. - Motion for Final Order FMCSA-2001-9336 | In the Matter of Ayr Motor Express, Inc. - Rebuttal to Field Administrator's Motion for Final Order | Other | Reply | 2001-04-20T04:00:00Z | 2001 | 4 | 2001-04-20T04:00:00Z | 2001-04-21T03:59:59Z | 2024-11-12T03:53:35Z | 1 | 0 | 090000648034293c | |
| FMCSA-2001-9336-0003 | FMCSA | ESC - In the Matter of Ayr Motor Express, Inc. - Motion for Final Order FMCSA-2001-9336 | In the Matter of Ayr Motor Express, Inc. - Motion for Extension of Time | Other | Motion | 2001-04-10T04:00:00Z | 2001 | 4 | 2001-04-10T04:00:00Z | 2001-04-11T03:59:59Z | 2024-11-12T03:53:35Z | 1 | 0 | 090000648034293a | |
| FMCSA-2001-9336-0001 | FMCSA | ESC - In the Matter of Ayr Motor Express, Inc. - Motion for Final Order FMCSA-2001-9336 | In the Matter of Ayr Motor Express, Inc. - Motion for Final Order | Other | Motion | 2001-04-04T04:00:00Z | 2001 | 4 | 2001-04-04T04:00:00Z | 2001-04-05T03:59:59Z | 2024-11-12T03:53:10Z | 1 | 0 | 0900006480342937 |
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;