documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "EPA-HQ-OAR-1985-0070" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, posted_date (date), comment_start_date (date), last_modified (date)
document_type 3
agency_id 1
- EPA 7
| 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-1985-0070-0012 | EPA | Standards off Performance for New Stationary Sources; Addition of Alternative Procedure (Critical Orifices as Calibration Standards) to Method 5, Appendix A Legacy Docket ID #: A-85-25 EPA-HQ-OAR-1985-0070 | R.T. Shigehara, P.R. Westlin, and J.W. Brown. Using the Environmental Protection Agency Calibration Orifice to Check Method 5 Dry Gas Meter Calibration. Source Evaluation Society Newsletter. 9 (1):5-16. February 1984 [A-85-25-II-I-2] | Supporting & Related Material | Report | 2022-09-07T04:00:00Z | 2022 | 9 | 2022-09-08T00:37:38Z | 0 | 0 | 0900006484ec9a32 | |||
| EPA-HQ-OAR-1985-0070-0013 | EPA | Standards off Performance for New Stationary Sources; Addition of Alternative Procedure (Critical Orifices as Calibration Standards) to Method 5, Appendix A Legacy Docket ID #: A-85-25 EPA-HQ-OAR-1985-0070 | J.P. Lodge, Jr., J.B. Pates, B.E. Ammons, G.A. Swanson. The Use of Hypodermic Needles as Critical Orifices in Air Sampling. J. Air Pollution Control Association 16: 197-200. 1966 [A-85-25-II-I-3] | Supporting & Related Material | Publication | 2022-09-07T04:00:00Z | 2022 | 9 | 2022-09-08T00:37:11Z | 0 | 0 | 0900006484ec9a33 | |||
| EPA-HQ-OAR-1985-0070-0010 | EPA | Standards off Performance for New Stationary Sources; Addition of Alternative Procedure (Critical Orifices as Calibration Standards) to Method 5, Appendix A Legacy Docket ID #: A-85-25 EPA-HQ-OAR-1985-0070 | R.T. Shigehara and Candace B. Sorrell. Using Critical Orifices as Method 5 Calibration Standards. Emission Measurement Branch. U.S. Environmental Protection Agency. Research Triangle Park, North Carolina (undated) [A-85-25-II-I-1] | Supporting & Related Material | Report | 2022-09-07T04:00:00Z | 2022 | 9 | 2022-09-08T00:37:20Z | 0 | 0 | 0900006484ec9a31 | |||
| EPA-HQ-OAR-1985-0070-0011 | EPA | Standards off Performance for New Stationary Sources; Addition of Alternative Procedure (Critical Orifices as Calibration Standards) to Method 5, Appendix A Legacy Docket ID #: A-85-25 EPA-HQ-OAR-1985-0070 | P. Urone and R.C. Ross. Pressure Change Effects on Hypodermic Needles Critical Orifice Air Flow Rates. Environmental Science Technology 13:351-353. 1979 [A-85-25-II-I-4] | Supporting & Related Material | Publication | 2022-09-07T04:00:00Z | 2022 | 9 | 2022-09-08T00:37:29Z | 0 | 0 | 0900006484ec9a0a | |||
| EPA-HQ-OAR-1985-0070-0003 | EPA | Standards off Performance for New Stationary Sources; Addition of Alternative Procedure (Critical Orifices as Calibration Standards) to Method 5, Appendix A Legacy Docket ID #: A-85-25 EPA-HQ-OAR-1985-0070 | Legacy Index for Docket A-85-25 | Supporting & Related Material | Index | 2021-12-14T05:00:00Z | 2021 | 12 | 2021-12-15T01:44:17Z | 0 | 0 | 0900006484ec9a07 | |||
| EPA-HQ-OAR-1985-0070-0002 | EPA | Standards off Performance for New Stationary Sources; Addition of Alternative Procedure (Critical Orifices as Calibration Standards) to Method 5, Appendix A Legacy Docket ID #: A-85-25 EPA-HQ-OAR-1985-0070 | Standards off Performance for New Stationary Sources; Addition of Alternative Procedure (Critical Orifices as Calibration Standards) to Method 5, Appendix A [A-85-25-V-A-1] | Rule | Final Rule | 2021-12-14T05:00:00Z | 2021 | 12 | 2021-12-14T05:00:00Z | 2021-12-15T01:44:08Z | 87-6551 | 0 | 0 | 0900006484ec9a09 | |
| EPA-HQ-OAR-1985-0070-0001 | EPA | Standards off Performance for New Stationary Sources; Addition of Alternative Procedure (Critical Orifices as Calibration Standards) to Method 5, Appendix A Legacy Docket ID #: A-85-25 EPA-HQ-OAR-1985-0070 | Standards off Performance for New Stationary Sources; Addition of Alternative Procedure (Critical Orifices as Calibration Standards) to Method 5, Appendix A; Notice of Public Hearing [A-85-25-III-A-1] | Proposed Rule | 2021-12-14T05:00:00Z | 2021 | 12 | 2021-12-14T05:00:00Z | 2021-12-15T02:00:22Z | 86-4478 | 0 | 0 | 0900006484ec9a08 |
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;