documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "OSHA-2008-0047" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, last_modified, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 2
agency_id 1
- OSHA 9
| 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| OSHA-2008-0047-0008 | OSHA | Federal Advisory Council on Occupational Safety and Health (FACOSH); Notice of Meeting OSHA-2008-0047 | Ex. 6. The FY 2007 President's Report | Supporting & Related Material | Meeting Exhibits | 2009-07-14T04:00:00Z | 2009 | 7 | 2009-08-25T13:43:06Z | 0 | 0 | 09000064809d210c | |||
| OSHA-2008-0047-0005 | OSHA | Federal Advisory Council on Occupational Safety and Health (FACOSH); Notice of Meeting OSHA-2008-0047 | Ex. 5. The FY 2007 SHARE Report | Supporting & Related Material | Meeting Exhibits | 2009-07-14T04:00:00Z | 2009 | 7 | 2009-08-25T13:43:06Z | 0 | 0 | 09000064809d12e4 | |||
| OSHA-2008-0047-0007 | OSHA | Federal Advisory Council on Occupational Safety and Health (FACOSH); Notice of Meeting OSHA-2008-0047 | Ex. 8. The FedTarg08 Detective | Supporting & Related Material | Meeting Exhibits | 2009-07-14T04:00:00Z | 2009 | 7 | 2009-08-25T13:43:06Z | 0 | 0 | 09000064809d12e7 | |||
| OSHA-2008-0047-0006 | OSHA | Federal Advisory Council on Occupational Safety and Health (FACOSH); Notice of Meeting OSHA-2008-0047 | Ex. 7. OSHA's FY 2008 Annual Report Request | Supporting & Related Material | Meeting Exhibits | 2009-07-14T04:00:00Z | 2009 | 7 | 2009-08-25T13:43:06Z | 0 | 0 | 09000064809d12e5 | |||
| OSHA-2008-0047-0004 | OSHA | Federal Advisory Council on Occupational Safety and Health (FACOSH); Notice of Meeting OSHA-2008-0047 | Ex. 4. The Combined Program Updates Power Point Presentation on SHARE | Supporting & Related Material | Meeting Exhibits | 2009-07-14T04:00:00Z | 2009 | 7 | 2009-08-25T13:43:06Z | 0 | 0 | 09000064809d12e3 | |||
| OSHA-2008-0047-0009 | OSHA | Federal Advisory Council on Occupational Safety and Health (FACOSH); Notice of Meeting OSHA-2008-0047 | Ex. 9. The Federal Agency Training Week Registration and Course Description Information | Supporting & Related Material | Meeting Exhibits | 2009-07-14T04:00:00Z | 2009 | 7 | 2009-08-25T13:43:06Z | 0 | 0 | 09000064809d1b39 | |||
| OSHA-2008-0047-0003 | OSHA | Federal Advisory Council on Occupational Safety and Health (FACOSH); Notice of Meeting OSHA-2008-0047 | Ex. 3. The Approved Minutes of the April 10, 2008 FACOSH Meeting | Supporting & Related Material | Meeting Minutes | 2009-07-14T04:00:00Z | 2009 | 7 | 2009-08-25T13:43:06Z | 0 | 0 | 09000064809e98c2 | |||
| OSHA-2008-0047-0002 | OSHA | Federal Advisory Council on Occupational Safety and Health (FACOSH); Notice of Meeting OSHA-2008-0047 | Ex. 2. The OSHA News Release Announcing the Meeting | Supporting & Related Material | Meeting Exhibits | 2009-06-18T04:00:00Z | 2009 | 6 | 2009-08-25T13:43:06Z | 0 | 0 | 09000064809d12e0 | |||
| OSHA-2008-0047-0001 | OSHA | Federal Advisory Council on Occupational Safety and Health (FACOSH); Notice of Meeting OSHA-2008-0047 | Ex. 1. Federal Advisory Council on Occupational Safety and Health (FACOSH): Announcement of Meeting | Notice | Federal Register Notices | 2008-10-28T04:00:00Z | 2008 | 10 | 2008-10-28T04:00:00Z | 2008-11-07T04:59:59Z | 2009-08-25T13:43:05Z | E8-25598 | 0 | 0 | 090000648078081e |
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;