documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "FCC", document_type = "Proposed Rule" and posted_year = 2026 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, open_for_comment, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FCC-2026-0760-0001 | FCC | Application Limit for New Noncommercial Educational Reserved Band FM Translator Station Applications in Upcoming 2026 Filing Window | Proposed Rule | 2026-02-26T05:00:00Z | 2026 | 2 | 2026-02-26T05:00:00Z | 2026-03-24T03:59:59Z | 2026-02-26T18:31:12Z | 2026-03889 | 1 | 0 | 09000064b91debc3 | ||
| FCC-2026-0628-0001 | FCC | Unlicensed Use of the 6 GHz Band: Expanding Flexible Use in Mid-Band Spectrum between 3.7 and 24 GHz | Proposed Rule | 2026-02-20T05:00:00Z | 2026 | 2 | 2026-02-20T05:00:00Z | 2026-04-22T03:59:59Z | 2026-02-20T17:55:46Z | 2026-03420 | 1 | 0 | 09000064b91c2fe5 | ||
| FCC-2026-0562-0001 | FCC | Petition for Reconsideration of Action in Proceeding; Correction | Proposed Rule | 2026-02-17T05:00:00Z | 2026 | 2 | 2026-02-17T05:00:00Z | 2026-02-17T17:55:31Z | 2026-03070 | 0 | 0 | 09000064b91b1f6b | |||
| FCC-2026-0529-0001 | FCC | Numbering Policies for Modern Communications | Proposed Rule | 2026-02-12T05:00:00Z | 2026 | 2 | 2026-02-12T05:00:00Z | 2026-04-14T03:59:59Z | 2026-02-12T17:16:58Z | 2026-02858 | 1 | 0 | 09000064b91a649d | ||
| FCC-2026-0496-0001 | FCC | Television Broadcasting Services: Norwell, MA | Proposed Rule | 2026-02-10T05:00:00Z | 2026 | 2 | 2026-02-10T05:00:00Z | 2026-03-28T03:59:59Z | 2026-02-10T17:14:59Z | 2026-02623 | 1 | 0 | 09000064b919d8ad | ||
| FCC-2026-0430-0001 | FCC | Petition for Reconsideration of Action in Proceeding | Proposed Rule | 2026-02-05T05:00:00Z | 2026 | 2 | 2026-02-05T05:00:00Z | 2026-02-05T17:30:31Z | 2026-02285 | 0 | 0 | 09000064b91929e4 | |||
| FCC-2026-0232-0001 | FCC | Petition for Reconsideration of Action in Rulemaking Proceeding | Proposed Rule | 2026-01-23T05:00:00Z | 2026 | 1 | 2026-01-23T05:00:00Z | 2026-01-23T17:30:36Z | 2026-01281 | 0 | 0 | 09000064b917bb3e | |||
| FCC-2026-0068-0001 | FCC | Implementation of the Final Acts of the World Radiocommunication Conference (Sharm el-Sheikh, 2019), Revision to Table Mountain Radio Quiet Zone Field Strength Limits. | Proposed Rule | 2026-01-14T05:00:00Z | 2026 | 1 | 2026-01-14T05:00:00Z | 2026-03-17T03:59:59Z | 2026-01-14T17:20:50Z | 2026-00588 | 1 | 0 | 09000064b913d4a2 | ||
| FCC-2026-0001-0001 | FCC | Analog Telecommunications Relay Service Modernization | Proposed Rule | 2026-01-02T05:00:00Z | 2026 | 1 | 2026-01-02T05:00:00Z | 2026-03-04T04:59:59Z | 2026-01-13T23:37:39Z | 2025-24210 | 0 | 0 | 09000064b9115051 |
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;