documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FAA-2000-8157" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, last_modified, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FAA-2000-8157-0010 | FAA | Petroleum Helicopters, Inc. - Exemption/Rulemaking FAA-2000-8157 | U.S. DOT/FAA - Notice of Disposition of Prior Petitions | Rule | Federal Register Publication | 2003-05-07T04:00:00Z | 2003 | 5 | 2003-05-07T04:00:00Z | 2003-05-08T03:59:59Z | 2024-11-12T03:54:54Z | 1 | 0 | 0900006480342d09 | |
| FAA-2000-8157-0009 | FAA | Petroleum Helicopters, Inc. - Exemption/Rulemaking FAA-2000-8157 | U.S. DOT/FAA - Grant of Exemption | Other | Decision | 2003-04-28T04:00:00Z | 2003 | 4 | 2003-04-28T04:00:00Z | 2003-04-29T03:59:59Z | 2024-11-12T03:55:25Z | 1 | 0 | 0900006480342d11 | |
| FAA-2000-8157-0008 | FAA | Petroleum Helicopters, Inc. - Exemption/Rulemaking FAA-2000-8157 | Petroleum Helicopters, Inc. (PHI) - Exemption/Rulemaking | Other | Petition(s) | 2003-01-22T05:00:00Z | 2003 | 1 | 2003-01-22T05:00:00Z | 2003-01-23T04:59:59Z | 2024-11-12T03:55:25Z | 1 | 0 | 0900006480342d10 | |
| FAA-2000-8157-0007 | FAA | Petroleum Helicopters, Inc. - Exemption/Rulemaking FAA-2000-8157 | Notice of Dispositions of Prior Petitions | Rule | Federal Register Publication | 2001-05-29T04:00:00Z | 2001 | 5 | 2001-05-29T04:00:00Z | 2001-05-30T03:59:59Z | 2024-11-12T03:55:25Z | 1 | 0 | 0900006480342d0f | |
| FAA-2000-8157-0006 | FAA | Petroleum Helicopters, Inc. - Exemption/Rulemaking FAA-2000-8157 | U.S. DOT/FAA - Grant of Petition | Other | Decision | 2001-04-24T04:00:00Z | 2001 | 4 | 2001-04-24T04:00:00Z | 2001-04-25T03:59:59Z | 2024-11-12T03:55:24Z | 1 | 0 | 0900006480342d0e | |
| FAA-2000-8157-0004 | FAA | Petroleum Helicopters, Inc. - Exemption/Rulemaking FAA-2000-8157 | U.S. DOT/FAA - Notice of Petitions for Exemption Received and of Dispositions if Prior Petitions | Rule | Federal Register Publication | 2001-01-17T05:00:00Z | 2001 | 1 | 2001-01-17T05:00:00Z | 2001-01-18T04:59:59Z | 2024-11-12T03:54:55Z | 1 | 0 | 0900006480342d0c | |
| FAA-2000-8157-0003 | FAA | Petroleum Helicopters, Inc. - Exemption/Rulemaking FAA-2000-8157 | U.S. DOT/FAA | Other | Grant of Petition | 2000-12-18T05:00:00Z | 2000 | 12 | 2000-12-18T05:00:00Z | 2000-12-20T04:59:59Z | 2024-11-12T03:54:55Z | 1 | 0 | 0900006480342d0b | |
| FAA-2000-8157-0002 | FAA | Petroleum Helicopters, Inc. - Exemption/Rulemaking FAA-2000-8157 | Petroleum Helicopters, Inc. - Petition for Amendment | Other | Amendment | 2000-11-09T05:00:00Z | 2000 | 11 | 2000-11-09T05:00:00Z | 2000-11-14T04:59:59Z | 2024-11-12T03:54:55Z | 1 | 0 | 0900006480342d0a | |
| FAA-2000-8157-0001 | FAA | Petroleum Helicopters, Inc. - Exemption/Rulemaking FAA-2000-8157 | Petroleum Helicopters, Inc. - Exemption/Rulemaking | Other | Petitions for Exemption | 2000-09-21T04:00:00Z | 2000 | 9 | 2000-09-21T04:00:00Z | 2000-10-20T03:59:59Z | 2024-11-12T03:54:54Z | 1 | 0 | 0900006480342d08 |
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;