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

10 rows where docket_id = "NHTSA-1997-2814" and posted_year = 2002 sorted by posted_date descending

✎ View and edit SQL

This data as json, CSV (advanced)

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

posted_year 1

  • 2002 · 10 ✖

document_type 1

  • Other 10

agency_id 1

  • NHTSA 10
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
NHTSA-1997-2814-0072 NHTSA Occupant Crash Protection: Notice - Technical Workshop Issues Re; Advanced Air Bags NHTSA-1997-2814 U.S. DOT/NHTSA - Memorandum transmitting additional records submitted by Mercedes-Benz, USA, Inc. originally requested to be withheld as confidential. Other Memo, Action Memo or Letter 2002-09-19T04:00:00Z 2002 9 2002-09-19T04:00:00Z 2002-09-20T03:59:59Z 2024-11-07T18:30:35Z   1 0 090000648031c255
NHTSA-1997-2814-0070 NHTSA Occupant Crash Protection: Notice - Technical Workshop Issues Re; Advanced Air Bags NHTSA-1997-2814 U.S. DOT/NHTSA - Additional Information (submitted by Volkswagen of America, Inc.) Other Additional Information 2002-01-08T05:00:00Z 2002 1 2002-01-08T05:00:00Z 2002-01-09T04:59:59Z 2024-11-07T18:30:35Z   1 0 090000648031c253
NHTSA-1997-2814-0063 NHTSA Occupant Crash Protection: Notice - Technical Workshop Issues Re; Advanced Air Bags NHTSA-1997-2814 U.S. DOT/NHTSA - Additional Information (Submitted by American Honda Motor Co., Inc.) Other Additional Information 2002-01-08T05:00:00Z 2002 1 2002-01-08T05:00:00Z 2002-01-09T04:59:59Z 2024-11-07T18:30:25Z   1 0 090000648031c24b
NHTSA-1997-2814-0069 NHTSA Occupant Crash Protection: Notice - Technical Workshop Issues Re; Advanced Air Bags NHTSA-1997-2814 U.S. DOT/NHTSA - Additional Information (submitted by Toyota Technical Center, USA, Inc.) Other Additional Information 2002-01-08T05:00:00Z 2002 1 2002-01-08T05:00:00Z 2002-01-09T04:59:59Z 2024-11-07T18:30:34Z   1 0 090000648031c251
NHTSA-1997-2814-0065 NHTSA Occupant Crash Protection: Notice - Technical Workshop Issues Re; Advanced Air Bags NHTSA-1997-2814 U.S. DOT/NHTSA - Additional Information (submitted by Ford Motor Company) Other Additional Information 2002-01-08T05:00:00Z 2002 1 2002-01-08T05:00:00Z 2002-01-09T04:59:59Z 2024-11-07T18:30:26Z   1 0 090000648031c24d
NHTSA-1997-2814-0067 NHTSA Occupant Crash Protection: Notice - Technical Workshop Issues Re; Advanced Air Bags NHTSA-1997-2814 U.S. DOT/NHTSA - Additional information (submitted by Mercedes Benz Other Additional Information 2002-01-08T05:00:00Z 2002 1 2002-01-08T05:00:00Z 2002-01-09T04:59:59Z 2024-11-07T18:30:26Z   1 0 090000648031c24f
NHTSA-1997-2814-0064 NHTSA Occupant Crash Protection: Notice - Technical Workshop Issues Re; Advanced Air Bags NHTSA-1997-2814 U.S. DOT/NHTSA - (Additional information submitted by Daimler-Chrysler Corporation) Other Additional Information 2002-01-08T05:00:00Z 2002 1 2002-01-08T05:00:00Z 2002-01-09T04:59:59Z 2024-11-07T18:30:25Z   1 0 090000648031c24c
NHTSA-1997-2814-0066 NHTSA Occupant Crash Protection: Notice - Technical Workshop Issues Re; Advanced Air Bags NHTSA-1997-2814 U.S. DOT/NHTSA - Additional information (submitted by General Motors Corporation) Other Additional Information 2002-01-08T05:00:00Z 2002 1 2002-01-08T05:00:00Z 2002-01-09T04:59:59Z 2024-11-07T18:30:26Z   1 0 090000648031c24e
NHTSA-1997-2814-0068 NHTSA Occupant Crash Protection: Notice - Technical Workshop Issues Re; Advanced Air Bags NHTSA-1997-2814 U.S. DOT/NHTSA - Additional Information (submitted by Nissan North America, Inc.) Other Additional Information 2002-01-08T05:00:00Z 2002 1 2002-01-08T05:00:00Z 2002-01-09T04:59:59Z 2024-11-07T18:30:26Z   1 0 090000648031c250
NHTSA-1997-2814-0071 NHTSA Occupant Crash Protection: Notice - Technical Workshop Issues Re; Advanced Air Bags NHTSA-1997-2814 U.S. DOT/NHTSA - Additional Information (submitted by Volvo Cars of North America, Inc.)) Other Additional Information 2002-01-08T05:00:00Z 2002 1 2002-01-08T05:00:00Z 2002-01-09T04:59:59Z 2024-11-07T18:30:35Z   1 0 090000648031c254

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 2534.883ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API