documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FAA-1999-5535" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_end_date, last_modified, open_for_comment, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- FAA 9
| 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-1999-5535-0033 | FAA | Commercial Space Transportation Reusable Launch Vehicle and Reentry Licensing Regulations FAA-1999-5535 | Commercial Space Transportation Reusable Launch Vehicle and Reentry Licensing Regulations: Technical Amendment | Rule | Final Rule | 2016-08-30T04:00:00Z | 2016 | 8 | 2016-08-30T04:00:00Z | 2024-11-11T21:29:31Z | 2016-20815 | 1 | 0 | 09000064821ae2cc | |
| FAA-1999-5535-0032 | FAA | Commercial Space Transportation Reusable Launch Vehicle and Reentry Licensing Regulations FAA-1999-5535 | Final Rule | Rule | Federal Register Publication | 2000-09-19T04:00:00Z | 2000 | 9 | 2000-09-19T04:00:00Z | 2000-09-21T03:59:59Z | 2008-01-12T00:34:29Z | 0 | 0 | 090000648032c4fd | |
| FAA-1999-5535-0031 | FAA | Commercial Space Transportation Reusable Launch Vehicle and Reentry Licensing Regulations FAA-1999-5535 | U.S. DOT/FAA - Final Regulatory Evaluation, Regulatory Flexibility Determination, Trade Impact Assessment, and Unfunded Mandates Assessment | Supporting & Related Material | Assessment Document or Analysis | 2000-09-19T04:00:00Z | 2000 | 9 | 2008-01-08T19:28:54Z | 0 | 0 | 090000648032c4fc | |||
| FAA-1999-5535-0030 | FAA | Commercial Space Transportation Reusable Launch Vehicle and Reentry Licensing Regulations FAA-1999-5535 | U.S. DOT/FAA - Commercial Space Transportation Reusable Launch Vehicle and Reentry Licensing Regulations | Rule | Final Rule | 2000-09-15T04:00:00Z | 2000 | 9 | 2000-09-15T04:00:00Z | 2000-09-19T03:59:59Z | 2008-01-12T00:34:29Z | 0 | 0 | 090000648032c4fb | |
| FAA-1999-5535-0029 | FAA | Commercial Space Transportation Reusable Launch Vehicle and Reentry Licensing Regulations FAA-1999-5535 | Memorandum re: New Mexico Office of Space Commercialization Presentation | Other | Memo, Action Memo or Letter | 2000-07-12T04:00:00Z | 2000 | 7 | 2000-07-12T04:00:00Z | 2000-07-21T03:59:59Z | 2008-01-12T00:36:45Z | 0 | 0 | 090000648032c4f9 | |
| FAA-1999-5535-0001 | FAA | Commercial Space Transportation Reusable Launch Vehicle and Reentry Licensing Regulations FAA-1999-5535 | Commercial Space Transportation Reusable Launch Vehicle and Reentry Licensing Regulations | Rule | Federal Register Publication | 1999-04-21T04:00:00Z | 1999 | 4 | 1999-04-21T04:00:00Z | 1999-04-22T03:59:59Z | 2008-01-12T00:36:02Z | 0 | 0 | 090000648032c4e4 | |
| FAA-1999-5535-0002 | FAA | Commercial Space Transportation Reusable Launch Vehicle and Reentry Licensing Regulations FAA-1999-5535 | Preliminary Regulatory Evaluation, Initial Regulatory Flexibility Determination, Trade Impact Assessment, and Unfunded Mandates Assessment | Supporting & Related Material | Analysis | 1999-04-21T04:00:00Z | 1999 | 4 | 2008-01-08T19:18:18Z | 0 | 0 | 090000648032c4ef | |||
| FAA-1999-5535-0004 | FAA | Commercial Space Transportation Reusable Launch Vehicle and Reentry Licensing Regulations FAA-1999-5535 | Draft - Reusable Launch Vehicle System Safety Process | Other | Circular | 1999-04-16T04:00:00Z | 1999 | 4 | 1999-04-16T04:00:00Z | 1999-04-27T03:59:59Z | 2008-01-12T00:34:29Z | 0 | 0 | 090000648032c4ff | |
| FAA-1999-5535-0003 | FAA | Commercial Space Transportation Reusable Launch Vehicle and Reentry Licensing Regulations FAA-1999-5535 | Expected Casualty Calculations For Commercial Space Launch and Reentry Missions | Other | Circular | 1999-04-12T04:00:00Z | 1999 | 4 | 1999-04-12T04:00:00Z | 1999-04-27T03:59:59Z | 2008-01-12T00:34:29Z | 0 | 0 | 090000648032c4fa |
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;