documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FAA-2018-1051" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, open_for_comment, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
- Rule 3
- Notice 2
- Proposed Rule 1
agency_id 1
- FAA 6
| 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-2018-1051-0014 | FAA | None FAA-2018-1051 | Update to Investigative and Enforcement Procedures and Part 11; Correction | Rule | Correction | 2022-11-04T04:00:00Z | 2022 | 11 | 2022-11-04T04:00:00Z | 2024-11-12T23:47:48Z | 2022-23990 | 1 | 0 | 0900006485488208 | |
| FAA-2018-1051-0013 | FAA | None FAA-2018-1051 | Update to Investigative and Enforcement Procedures and General Rulemaking Procedures; Technical Amendments | Rule | Final Rule | 2022-10-11T04:00:00Z | 2022 | 10 | 2022-10-11T04:00:00Z | 2022-10-13T19:23:30Z | 2022-21354 | 0 | 0 | 09000064853eb71c | |
| FAA-2018-1051-0012 | FAA | None FAA-2018-1051 | Update to Investigative and Enforcement Procedures | Rule | Final Rule | 2021-10-01T04:00:00Z | 2021 | 10 | 2021-10-01T04:00:00Z | 2021-10-01T12:40:16Z | 2021-19948 | 0 | 0 | 0900006484db6262 | |
| FAA-2018-1051-0011 | FAA | None FAA-2018-1051 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Formal Complaints | Notice | Request for Comments | 2021-09-07T04:00:00Z | 2021 | 9 | 2021-09-07T04:00:00Z | 2021-10-08T03:59:59Z | 2024-11-12T23:33:26Z | 2021-19271 | 1 | 0 | 0900006484d5677d |
| FAA-2018-1051-0010 | FAA | None FAA-2018-1051 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Formal Complaints Collection | Notice | Request for Comments | 2020-08-04T04:00:00Z | 2020 | 8 | 2020-08-04T04:00:00Z | 2020-10-06T03:59:59Z | 2024-11-12T23:23:07Z | 2020-16966 | 1 | 0 | 09000064847d2519 |
| FAA-2018-1051-0001 | FAA | None FAA-2018-1051 | Investigative and Enforcement Procedures | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2019-02-19T05:00:00Z | 2019 | 2 | 2019-02-19T05:00:00Z | 2019-05-14T03:59:59Z | 2024-11-12T22:53:59Z | 2019-00771 | 1 | 0 | 0900006483a8bf45 |
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;