home / openregs

documents

Regulatory documents from Regulations.gov including rules, proposed rules, notices, and supporting materials.

Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API

14 rows where docket_id = "DOT-OST-2009-0061" sorted by posted_date descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: title, subtype, posted_month, open_for_comment, posted_date (date), comment_start_date (date), last_modified (date)

posted_year 5

  • 2009 5
  • 2010 5
  • 2012 2
  • 2011 1
  • 2019 1

document_type 1

  • Other 14

agency_id 1

  • DOT 14
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
DOT-OST-2009-0061-0014 DOT None DOT-OST-2009-0061 All Nippon Airways Co., Ltd. (Notification of Termination of Codeshare) Other Correspondence 2019-01-10T05:00:00Z 2019 1 2019-01-10T05:00:00Z   2024-11-12T22:52:56Z   1 0 09000064839e9e52
DOT-OST-2009-0061-0013 DOT None DOT-OST-2009-0061 Notice of Additional Codesharing Other Additional Information 2012-10-01T04:00:00Z 2012 10 2012-10-01T04:00:00Z   2024-11-12T05:06:27Z   1 0 090000648112d7d1
DOT-OST-2009-0061-0012 DOT None DOT-OST-2009-0061 Approval of Application Other Decision 2012-01-13T05:00:00Z 2012 1 2012-01-13T05:00:00Z   2012-01-13T15:43:45Z   0 0 0900006480f95ab3
DOT-OST-2009-0061-0011 DOT None DOT-OST-2009-0061 Joint Application of All Nippon Airways Co., Ltd. and Air Japan Co., Ltd. Other Application-Other 2011-12-27T05:00:00Z 2011 12 2011-12-27T05:00:00Z   2024-11-07T01:39:17Z   1 0 0900006480f882a5
DOT-OST-2009-0061-0010 DOT None DOT-OST-2009-0061 Joint Application of All Nippon Airways Co., Ltd. and United Parcel Service Co. for an Amended Statement of Authorization and Waiver Other Application-Other 2010-03-30T04:00:00Z 2010 3 2010-03-30T04:00:00Z   2024-11-07T22:19:30Z   1 0 0900006480ac91ce
DOT-OST-2009-0061-0009 DOT None DOT-OST-2009-0061 Approval of Application Other Decision 2010-03-29T04:00:00Z 2010 3 2010-03-29T04:00:00Z   2024-11-12T04:52:39Z   1 0 0900006480acbd14
DOT-OST-2009-0061-0008 DOT None DOT-OST-2009-0061 Approval of Application Other Decision 2010-03-17T04:00:00Z 2010 3 2010-03-17T04:00:00Z   2024-11-12T04:50:56Z   1 0 0900006480abed0c
DOT-OST-2009-0061-0007 DOT None DOT-OST-2009-0061 Approval of Application Other Decision 2010-03-15T04:00:00Z 2010 3     2024-11-12T04:50:45Z   1 0 0900006480abd986
DOT-OST-2009-0061-0006 DOT None DOT-OST-2009-0061 Application of All Nippon Airways Co., Ltd. for an Amended Statement of Authorization and Waiver Other Application-Other 2010-03-01T05:00:00Z 2010 3 2010-03-01T05:00:00Z   2024-11-12T04:47:42Z   1 0 0900006480aaf730
DOT-OST-2009-0061-0005 DOT None DOT-OST-2009-0061 All Nippon Airways Co., Ltd. Other Letter(s) 2009-10-15T04:00:00Z 2009 10 2009-10-15T04:00:00Z   2013-07-27T22:57:03Z   0 0 0900006480a41c79
DOT-OST-2009-0061-0004 DOT None DOT-OST-2009-0061 Application of All Nippon Airways Co., Ltd., For An Amended Statement Of Authorization And Waiver Other Application-Other 2009-10-13T04:00:00Z 2009 10 2009-10-13T04:00:00Z   2024-11-07T22:04:39Z   1 0 0900006480a3f53c
DOT-OST-2009-0061-0003 DOT None DOT-OST-2009-0061 Approval of Joint Application Other Decision 2009-03-12T04:00:00Z 2009 3 2009-03-12T04:00:00Z   2013-07-27T22:40:00Z   0 0 090000648090edaa
DOT-OST-2009-0061-0002 DOT None DOT-OST-2009-0061 All Nippon Airways Co., Ltd. Other Correspondence 2009-03-11T04:00:00Z 2009 3 2009-03-11T04:00:00Z   2013-07-27T22:39:42Z   0 0 0900006480900e23
DOT-OST-2009-0061-0001 DOT None DOT-OST-2009-0061 Joint Application of All Nippon Airways Co., Ltd. and United Parcel Service Co. for a Statement of Authorization and Waiver Other Application-Other 2009-03-09T04:00:00Z 2009 3 2009-03-09T04:00:00Z   2024-11-07T22:02:53Z   1 0 09000064808ee47a

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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;
Powered by Datasette · Queries took 9.624ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API