documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "SEC", document_type = "Rule" and posted_year = 2005 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| SEC-2005-0443-0001 | SEC | Revisions to Accelerated Filer Definition and Accelerated Deadlines for Filing Periodic Reports | Rule | 2005-12-27T05:00:00Z | 2005 | 12 | 2005-12-27T05:00:00Z | 2011-06-11T17:58:42Z | 05-24479 | 0 | 0 | 09000064801005be | |||
| SEC-2005-0345-0001 | SEC | Commission Guidance Regarding Accounting for Sales of Vaccines and Bioterror Countermeasures to the Federal Government for Placement Into the Pediatric Vaccine Stockpile or the Strategic National Stockpile | Rule | 2005-12-09T05:00:00Z | 2005 | 12 | 2005-12-09T05:00:00Z | 2006-09-02T22:47:54Z | 05-23843 | 0 | 0 | 09000064800f1ac5 | |||
| SEC-2005-0316-0001 | SEC | Adoption of Amendments to the Rules of Practice and Related Provisions and Delegations of Authority of the Commission | Rule | 2005-12-05T05:00:00Z | 2005 | 12 | 2005-12-05T05:00:00Z | 2006-09-02T22:47:10Z | 05-23613 | 0 | 0 | 09000064800ec9f7 | |||
| SEC-2005-0321-0001 | SEC | Asset-Backed Securities | Rule | 2005-12-05T05:00:00Z | 2005 | 12 | 2005-12-05T05:00:00Z | 2006-09-02T22:47:17Z | 05-23614 | 0 | 0 | 09000064800ecad3 | |||
| SEC-2005-0206-0001 | SEC | Adoption of Updated EDGAR Filer Manual | Rule | 2005-11-07T05:00:00Z | 2005 | 11 | 2005-11-07T05:00:00Z | 2011-06-11T17:58:41Z | 05-22085 | 0 | 0 | 090000648009be03 | |||
| SEC-2005-0137-0001 | SEC | Adoption of Amendment to Delegation of Authority to Secretary of the Commission | Rule | 2005-10-20T04:00:00Z | 2005 | 10 | 2005-10-20T04:00:00Z | 2006-09-02T22:42:41Z | 05-20973 | 0 | 0 | 090000648009502e | |||
| SEC-2005-0057-0001 | SEC | Adoption of Updated EDGAR Filer Manual | Rule | 2005-09-30T04:00:00Z | 2005 | 9 | 2005-09-30T04:00:00Z | 2011-06-11T17:58:41Z | 05-19315 | 0 | 0 | 090000648008d22b | |||
| SEC-2005-0046-0001 | SEC | Managements Report on Internal Control Over Financial Reporting and Certification of Disclosure in Exchange Act Periodic Reports of Companies That Are Not Accelerated Filers | Rule | 2005-09-29T04:00:00Z | 2005 | 9 | 2005-09-29T04:00:00Z | 2005-11-01T04:59:59Z | 2011-06-11T17:58:40Z | 05-19426 | 0 | 0 | 090000648008c9f5 |
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;