documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where agency_id = "EPA", docket_id = "EPA-HQ-OAR-2003-0130" and posted_year = 2006 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, last_modified, posted_date (date), comment_start_date (date), comment_end_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| EPA-HQ-OAR-2003-0130-0176 | EPA | Protection of Stratospheric Ozone: Allowance System for Controlling HCFCs Legacy Docket ID #: A-98-33 EPA-HQ-OAR-2003-0130 | Protection of Stratospheric Ozone: Minor Amendments to the Regulations Implementing the Allowance System for Controlling HCFC Production, Import and Export | Proposed Rule | Federal Register Document | 2006-07-20T13:35:06Z | 2006 | 7 | 2006-07-20T13:35:06Z | 2006-08-22T03:59:59Z | 2011-06-11T15:59:38Z | E6-11531 | 0 | 0 | 09000064801a279e |
| EPA-HQ-OAR-2003-0130-0175 | EPA | Protection of Stratospheric Ozone: Allowance System for Controlling HCFCs Legacy Docket ID #: A-98-33 EPA-HQ-OAR-2003-0130 | Protection of Stratospheric Ozone: Minor Amendments to the Regulations Implementing the Allowance System for Controlling HCFC Production, Import and Export | Rule | Federal Register Document | 2006-07-20T13:07:51Z | 2006 | 7 | 2006-07-20T13:07:51Z | 2006-08-22T03:59:59Z | 2011-06-11T15:59:38Z | E6-11532 | 0 | 0 | 09000064801a2801 |
| EPA-HQ-OAR-2003-0130-0177 | EPA | Protection of Stratospheric Ozone: Allowance System for Controlling HCFCs Legacy Docket ID #: A-98-33 EPA-HQ-OAR-2003-0130 | Letter to Tom Werkema, ATOFINA Chemicals, Inc. | Supporting & Related Material | Letter, Memorandum, Email | 2006-07-20T04:00:00Z | 2006 | 7 | 2006-09-02T15:11:18Z | 0 | 0 | 0900006480188f1d | |||
| EPA-HQ-OAR-2003-0130-0179 | EPA | Protection of Stratospheric Ozone: Allowance System for Controlling HCFCs Legacy Docket ID #: A-98-33 EPA-HQ-OAR-2003-0130 | Letter to Frank B. Arnold, Edelman Arnold, representing Mondy Global, Inc. | Supporting & Related Material | Letter, Memorandum, Email | 2006-07-20T04:00:00Z | 2006 | 7 | 2006-09-02T15:11:18Z | 0 | 0 | 090000648018e0d4 | |||
| EPA-HQ-OAR-2003-0130-0178 | EPA | Protection of Stratospheric Ozone: Allowance System for Controlling HCFCs Legacy Docket ID #: A-98-33 EPA-HQ-OAR-2003-0130 | Letter to Mack McFarland, E. I. du Pont de Nemours and Company (DuPont) | Supporting & Related Material | Letter, Memorandum, Email | 2006-07-20T04:00:00Z | 2006 | 7 | 2006-09-02T15:11:18Z | 0 | 0 | 0900006480188f1e |
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;