documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "NHTSA-2013-0055" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, open_for_comment, posted_date (date), comment_start_date (date), last_modified (date)
| 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-2013-0055-0010 | NHTSA | Child Restraint Systems General Reference NHTSA-2013-0055 | U.S. DOT/NHTSA - Memorandum dated November 24, 2015 | Other | Memorandum | 2015-12-08T05:00:00Z | 2015 | 12 | 2015-12-08T05:00:00Z | 2015-12-17T17:40:32Z | 0 | 0 | 0900006481d8d259 | ||
| NHTSA-2013-0055-0009 | NHTSA | Child Restraint Systems General Reference NHTSA-2013-0055 | U.S. DOT/NHTSA - Memorandum - JPMA September 29 2015 Meeting | Other | Memorandum | 2015-10-29T04:00:00Z | 2015 | 10 | 2015-10-29T04:00:00Z | 2015-10-29T15:02:55Z | 0 | 0 | 0900006481cedefb | ||
| NHTSA-2013-0055-0008 | NHTSA | Child Restraint Systems General Reference NHTSA-2013-0055 | U.S. DOT/NHTSA - Memorandum re: Modifications of the Preliminary Drawings of an Upgraded Standard Seat Assembly to Evaluate Child Restraint Systems | Other | Memorandum | 2015-08-25T04:00:00Z | 2015 | 8 | 2015-08-25T04:00:00Z | 2024-11-11T21:07:03Z | 1 | 0 | 0900006481c372ee | ||
| NHTSA-2013-0055-0005 | NHTSA | Child Restraint Systems General Reference NHTSA-2013-0055 | U.S. DOT/NHTSA - SAE Government Industry Presentation on Child Safety | Other | Report | 2015-04-21T04:00:00Z | 2015 | 4 | 2015-04-21T04:00:00Z | 2015-04-21T19:51:54Z | 0 | 0 | 0900006481a97814 | ||
| NHTSA-2013-0055-0007 | NHTSA | Child Restraint Systems General Reference NHTSA-2013-0055 | U.S. DOT/NHTSA - Memorandum | Other | Memorandum | 2015-04-21T04:00:00Z | 2015 | 4 | 2015-04-21T04:00:00Z | 2015-04-21T20:06:16Z | 0 | 0 | 0900006481a9c1b4 | ||
| NHTSA-2013-0055-0006 | NHTSA | Child Restraint Systems General Reference NHTSA-2013-0055 | JPMA – NHTSA Annual Meeting | Other | Hearing/Meeting Summary | 2015-04-21T04:00:00Z | 2015 | 4 | 2015-04-21T04:00:00Z | 2015-04-21T20:00:47Z | 0 | 0 | 0900006481a97816 | ||
| NHTSA-2013-0055-0004 | NHTSA | Child Restraint Systems General Reference NHTSA-2013-0055 | U.S. DOT/NHTSA - Memorandum re: Ex Parte Meeting with the Juvenile Products Manufacturers Association | Other | Acknowledgement Letter/Receipt | 2015-04-21T04:00:00Z | 2015 | 4 | 2015-04-21T04:00:00Z | 2015-04-21T19:49:16Z | 0 | 0 | 0900006481a97812 | ||
| NHTSA-2013-0055-0003 | NHTSA | Child Restraint Systems General Reference NHTSA-2013-0055 | U.S. DOT/NHTSA - Memorandum dated April 2, 2015 - U.S. DOT/NHTSA - Access to 3D Technical Drawings of the Preliminary Drawings of an Upgraded Standard Seat Assembly to Evaluate Child Restraint Systems | Other | Memorandum | 2015-04-08T04:00:00Z | 2015 | 4 | 2015-04-08T04:00:00Z | 2015-04-08T16:10:32Z | 0 | 0 | 0900006481a8910c | ||
| NHTSA-2013-0055-0002 | NHTSA | Child Restraint Systems General Reference NHTSA-2013-0055 | U.S. DOT/NHTSA - Child Frontal Impact Sled-Feb 2015 | Other | Report | 2015-03-17T04:00:00Z | 2015 | 3 | 2015-03-17T04:00:00Z | 2015-03-17T18:52:19Z | 0 | 0 | 0900006481a47e7b |
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;