documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FAA-2004-18799" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FAA-2004-18799-0009 | FAA | In the Matter of Sportsman Steel Safe Company - Request for Hearing and Complaint - CP04SW0006 FAA-2004-18799 | U.S. DOT/OST- Order of Dismissal - CP04SW0006 | Other | Order | 2005-01-06T05:00:00Z | 2005 | 1 | 2005-01-06T05:00:00Z | 2005-01-13T04:59:59Z | 2024-11-12T03:12:02Z | 1 | 0 | 0900006480322b1a | |
| FAA-2004-18799-0008 | FAA | In the Matter of Sportsman Steel Safe Company - Request for Hearing and Complaint - CP04SW0006 FAA-2004-18799 | U.S. DOT/FAA - Motion for Withdrawal of Complaint - CP04SW0006 | Other | Motion | 2005-01-05T05:00:00Z | 2005 | 1 | 2005-01-05T05:00:00Z | 2005-03-03T04:59:59Z | 2024-11-12T03:12:02Z | 1 | 0 | 0900006480322b19 | |
| FAA-2004-18799-0007 | FAA | In the Matter of Sportsman Steel Safe Company - Request for Hearing and Complaint - CP04SW0006 FAA-2004-18799 | U.S. DOT/FAA - Complainant's Preliminary Witness and Exhibit Lists - CP04SW0006 | Other | Witness List | 2004-10-15T04:00:00Z | 2004 | 10 | 2004-10-15T04:00:00Z | 2004-11-09T04:59:59Z | 2024-11-12T03:12:02Z | 1 | 0 | 0900006480322b18 | |
| FAA-2004-18799-0005 | FAA | In the Matter of Sportsman Steel Safe Company - Request for Hearing and Complaint - CP04SW0006 FAA-2004-18799 | U.S. DOT/OST - Procedural Order CP04SW0006 | Other | Order | 2004-09-29T04:00:00Z | 2004 | 9 | 2004-09-29T04:00:00Z | 2004-10-02T03:59:59Z | 2024-11-12T03:12:01Z | 1 | 0 | 0900006480322b16 | |
| FAA-2004-18799-0002-0001 | FAA | In the Matter of Sportsman Steel Safe Company - Request for Hearing and Complaint - CP04SW0006 FAA-2004-18799 | Sportsman Steel Safe Company - Respondent's Answer to Complaint - CP04SW0006 | Other | Answer | 2004-08-16T04:00:00Z | 2004 | 8 | 2004-08-16T04:00:00Z | 2004-09-03T03:59:59Z | 2024-11-12T02:43:37Z | 1 | 0 | 0900006480322b11 | |
| FAA-2004-18799-0002-0002 | FAA | In the Matter of Sportsman Steel Safe Company - Request for Hearing and Complaint - CP04SW0006 FAA-2004-18799 | Sportsman Steel Safe Company - Respondent's Answer to Complaint - CP04SW0006 | Other | Answer | 2004-08-16T04:00:00Z | 2004 | 8 | 2004-08-16T04:00:00Z | 2004-09-03T03:59:59Z | 2024-11-12T03:01:43Z | 1 | 0 | 0900006480322b12 | |
| FAA-2004-18799-0003-0001 | FAA | In the Matter of Sportsman Steel Safe Company - Request for Hearing and Complaint - CP04SW0006 FAA-2004-18799 | Sportsman Steel Safe Company - Letter in Response re: Hearing Site - CP04SW0006 | Other | Letter(s) | 2004-08-11T04:00:00Z | 2004 | 8 | 2004-08-11T04:00:00Z | 2004-09-03T03:59:59Z | 2024-11-12T03:12:01Z | 1 | 0 | 0900006480322b13 | |
| FAA-2004-18799-0003-0002 | FAA | In the Matter of Sportsman Steel Safe Company - Request for Hearing and Complaint - CP04SW0006 FAA-2004-18799 | Sportsman Steel Safe Company - Letter in Response re: Hearing Site - CP04SW0006 | Other | Letter(s) | 2004-08-11T04:00:00Z | 2004 | 8 | 2004-08-11T04:00:00Z | 2004-09-03T03:59:59Z | 2024-11-12T03:12:01Z | 1 | 0 | 0900006480322b14 | |
| FAA-2004-18799-0001 | FAA | In the Matter of Sportsman Steel Safe Company - Request for Hearing and Complaint - CP04SW0006 FAA-2004-18799 | U.S. DOT/FAA - Request for Hearing and Complaint - CP04SW0006 | Other | Request for Hearing and Complaint | 2004-07-22T04:00:00Z | 2004 | 7 | 2004-07-22T04:00:00Z | 2004-09-01T03:59:59Z | 2024-11-12T02:43:36Z | 1 | 0 | 0900006480322b10 |
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;