documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FAA-2019-0770" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, open_for_comment, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 4
agency_id 1
- FAA 8
| 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-2019-0770-1036 | FAA | Flight Attendant Duty Period Limitations and Rest Requirements FAA-2019-0770 | Flight Attendant Duty Period Limitations and Rest Requirements - Final Rule - Regulatory Impact Analysis - September 2022 | Supporting & Related Material | Regulatory Analysis | 2022-10-17T04:00:00Z | 2022 | 10 | 2022-10-17T18:35:33Z | 0 | 0 | 0900006485412077 | |||
| FAA-2019-0770-1035 | FAA | Flight Attendant Duty Period Limitations and Rest Requirements FAA-2019-0770 | Flight Attendant Duty Period Limitations and Rest Requirements | Rule | Final Rule | 2022-10-12T04:00:00Z | 2022 | 10 | 2022-10-12T04:00:00Z | 2026-03-03T10:00:20Z | 2022-21963 | 1 | 0 | 09000064853f6135 | |
| FAA-2019-0770-0219 | FAA | Flight Attendant Duty Period Limitations and Rest Requirements FAA-2019-0770 | Flight Attendant Duty Period Limitations and Rest Requirements | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2021-11-02T04:00:00Z | 2021 | 11 | 2021-11-02T04:00:00Z | 2022-01-04T04:59:59Z | 2022-01-06T13:47:50Z | 2021-23253 | 0 | 0 | 0900006484e06918 |
| FAA-2019-0770-0221 | FAA | Flight Attendant Duty Period Limitations and Rest Requirements FAA-2019-0770 | Flight Attendants Duty Period Limitations and Rest Requirements NPRM EO 12866 meeting Association of Flight Attendants | Supporting & Related Material | Supplement | 2021-11-02T04:00:00Z | 2021 | 11 | 2021-11-02T14:08:54Z | 0 | 0 | 0900006484e06aa4 | |||
| FAA-2019-0770-0222 | FAA | Flight Attendant Duty Period Limitations and Rest Requirements FAA-2019-0770 | Flight Attendants Duty Period Limitations and Rest Requirements NPRM Regulatory Impact Analysis | Supporting & Related Material | Regulatory Analysis | 2021-11-02T04:00:00Z | 2021 | 11 | 2021-11-02T14:10:56Z | 0 | 0 | 0900006484e06aa6 | |||
| FAA-2019-0770-0220 | FAA | Flight Attendant Duty Period Limitations and Rest Requirements FAA-2019-0770 | Flight Attendants Duty Period Limitations and Rest Requirements NPRM EO 12866 meeting Airlines for America | Supporting & Related Material | Supplement | 2021-11-02T04:00:00Z | 2021 | 11 | 2021-11-02T14:08:06Z | 0 | 0 | 0900006484e06a79 | |||
| FAA-2019-0770-0143 | FAA | Flight Attendant Duty Period Limitations and Rest Requirements FAA-2019-0770 | Comment from Allie Malis | Other | Correspondence | 2019-10-24T04:00:00Z | 2019 | 10 | 2019-10-24T04:00:00Z | 2019-10-24T14:05:23Z | 0 | 0 | 09000064840f0f41 | ||
| FAA-2019-0770-0001 | FAA | Flight Attendant Duty Period Limitations and Rest Requirements FAA-2019-0770 | Flight Attendant Duty Period Limitations and Rest Requirements | Proposed Rule | Advance Notice of Proposed Rulemaking (ANPRM) | 2019-09-25T04:00:00Z | 2019 | 9 | 2019-09-25T04:00:00Z | 2019-11-13T04:59:59Z | 2022-01-06T02:00:31Z | 2019-20682 | 0 | 0 | 0900006483fc1e39 |
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;