-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathfcc.json
3543 lines (3543 loc) · 174 KB
/
fcc.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"@context": "https://project-open-data.cio.gov/v1.1/schema/catalog.jsonld",
"@id": "https://opendata.fcc.gov/data.json",
"@type": "dcat:Catalog",
"conformsTo": "https://project-open-data.cio.gov/v1.1/schema",
"dataset": [
{
"@type": "dcat:Dataset",
"accessLevel": "public",
"bureauCode": [
"356:00"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Humza Riaz",
"hasEmail": "mailto:[email protected]"
},
"description": "This file that is a subset of the Linked-Station Set file. This file specifies, for each U.S. or impeding Canadian station part of a linked station set, the set of stations in their linked-station set with which they need to coordinate. Stations with which the transitioning station must coordinate are upstream neighbors (the transitioning station\u2019s post-auction channel interferes with the upstream neighbors\u2019 pre-auction channel); stations that must coordinate with the transitioning station are downstream neighbors (the transitioning station\u2019s pre-auction channel interferes with the downstream neighbors\u2019 post-auction channel). \u2022\tContains two records for each U.S. and impeding Canadian station that is in a linked-station set, one record listing its upstream neighbors and another record listing its downstream neighbors",
"distribution": [
{
"@type": "dcat:Distribution",
"downloadURL": "https://opendata.fcc.gov/api/views/2ah7-n9rk/rows.csv?accessType=DOWNLOAD",
"mediaType": "text/csv"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/2ah7-n9rk/columns.rdf",
"describedByType": "application/rdf+xml",
"downloadURL": "https://opendata.fcc.gov/api/views/2ah7-n9rk/rows.rdf?accessType=DOWNLOAD",
"mediaType": "application/rdf+xml"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/2ah7-n9rk/columns.json",
"describedByType": "application/json",
"downloadURL": "https://opendata.fcc.gov/api/views/2ah7-n9rk/rows.json?accessType=DOWNLOAD",
"mediaType": "application/json"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/2ah7-n9rk/columns.xml",
"describedByType": "application/xml",
"downloadURL": "https://opendata.fcc.gov/api/views/2ah7-n9rk/rows.xml?accessType=DOWNLOAD",
"mediaType": "application/xml"
}
],
"identifier": "https://opendata.fcc.gov/api/views/2ah7-n9rk",
"issued": "2017-06-20",
"keyword": [
"incentive auctions"
],
"landingPage": "https://opendata.fcc.gov/d/2ah7-n9rk",
"license": "https://www.usa.gov/government-works",
"modified": "2019-01-28",
"programCode": [
"000:000"
],
"publisher": {
"@type": "org:Organization",
"name": "opendata.fcc.gov"
},
"title": "Linked Station Neighbors"
},
{
"@type": "dcat:Dataset",
"accessLevel": "public",
"bureauCode": [
"356:00"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Steven Rosenberg",
"hasEmail": "mailto:[email protected]"
},
"description": "<b>The data collected to create this dataset was in place through data as of June, 2021. For more recent broadband availability data, please see https://broadbandmap.fcc.gov; for more information about the related data collection, please see https://www.fcc.gov/BroadbandData.</b>\n\nSummary data of fixed broadband coverage by geographic area",
"distribution": [
{
"@type": "dcat:Distribution",
"downloadURL": "https://opendata.fcc.gov/api/views/2ra3-4jd4/rows.csv?accessType=DOWNLOAD",
"mediaType": "text/csv"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/2ra3-4jd4/columns.rdf",
"describedByType": "application/rdf+xml",
"downloadURL": "https://opendata.fcc.gov/api/views/2ra3-4jd4/rows.rdf?accessType=DOWNLOAD",
"mediaType": "application/rdf+xml"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/2ra3-4jd4/columns.json",
"describedByType": "application/json",
"downloadURL": "https://opendata.fcc.gov/api/views/2ra3-4jd4/rows.json?accessType=DOWNLOAD",
"mediaType": "application/json"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/2ra3-4jd4/columns.xml",
"describedByType": "application/xml",
"downloadURL": "https://opendata.fcc.gov/api/views/2ra3-4jd4/rows.xml?accessType=DOWNLOAD",
"mediaType": "application/xml"
}
],
"identifier": "https://opendata.fcc.gov/api/views/2ra3-4jd4",
"issued": "2021-10-14",
"keyword": [
"broadband",
"fixed",
"form 477",
"map"
],
"landingPage": "https://opendata.fcc.gov/d/2ra3-4jd4",
"license": "https://www.usa.gov/government-works",
"modified": "2023-08-01",
"programCode": [
"000:000"
],
"publisher": {
"@type": "org:Organization",
"name": "opendata.fcc.gov"
},
"theme": [
"Wireline"
],
"title": "Provider Table December 2020"
},
{
"@type": "dcat:Dataset",
"accessLevel": "public",
"bureauCode": [
"356:00"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Humza Riaz",
"hasEmail": "mailto:[email protected]"
},
"description": "EAS (Equipment Authorization System). Radio Frequency (RF) devices are required to be properly authorized under 47 CFR Part 2 prior to being marketed or imported into the United States. The Office of Engineering and Technology (OET) administers the equipment authorization program under the authority delegated to it by the Commission. This program is one of the principal ways the Commission ensures that RF devices used in the United States operate effectively without causing harmful interference and otherwise comply with the Commission\u2019s rules. All RF devices subject to equipment authorization must comply with the Commission\u2019s technical requirements prior to importation or marketing. For more information about EAS, visit: https://www.fcc.gov/general/equipment-authorization-procedures",
"distribution": [
{
"@type": "dcat:Distribution",
"downloadURL": "https://opendata.fcc.gov/api/views/3b3k-34jp/rows.csv?accessType=DOWNLOAD",
"mediaType": "text/csv"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/3b3k-34jp/columns.rdf",
"describedByType": "application/rdf+xml",
"downloadURL": "https://opendata.fcc.gov/api/views/3b3k-34jp/rows.rdf?accessType=DOWNLOAD",
"mediaType": "application/rdf+xml"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/3b3k-34jp/columns.json",
"describedByType": "application/json",
"downloadURL": "https://opendata.fcc.gov/api/views/3b3k-34jp/rows.json?accessType=DOWNLOAD",
"mediaType": "application/json"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/3b3k-34jp/columns.xml",
"describedByType": "application/xml",
"downloadURL": "https://opendata.fcc.gov/api/views/3b3k-34jp/rows.xml?accessType=DOWNLOAD",
"mediaType": "application/xml"
}
],
"identifier": "https://opendata.fcc.gov/api/views/3b3k-34jp",
"issued": "2017-06-20",
"keyword": [
"fcc eas equipment authorization grantee registrations"
],
"landingPage": "https://opendata.fcc.gov/d/3b3k-34jp",
"license": "https://www.usa.gov/government-works",
"modified": "2021-03-22",
"programCode": [
"000:000"
],
"publisher": {
"@type": "org:Organization",
"name": "opendata.fcc.gov"
},
"theme": [
"Engineering & Technology"
],
"title": "EAS Equipment Authorization Grantee Registrations"
},
{
"@type": "dcat:Dataset",
"accessLevel": "public",
"bureauCode": [
"356:00"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Andrew Nebus",
"hasEmail": "mailto:[email protected]"
},
"description": "Individual informal consumer complaint data detailing complaints filed with the Consumer Help Center beginning October 31, 2014. This data represents information selected by the consumer. The FCC does not verify the facts alleged in these complaints.",
"distribution": [
{
"@type": "dcat:Distribution",
"downloadURL": "https://opendata.fcc.gov/api/views/3xyp-aqkj/rows.csv?accessType=DOWNLOAD",
"mediaType": "text/csv"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/3xyp-aqkj/columns.rdf",
"describedByType": "application/rdf+xml",
"downloadURL": "https://opendata.fcc.gov/api/views/3xyp-aqkj/rows.rdf?accessType=DOWNLOAD",
"mediaType": "application/rdf+xml"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/3xyp-aqkj/columns.json",
"describedByType": "application/json",
"downloadURL": "https://opendata.fcc.gov/api/views/3xyp-aqkj/rows.json?accessType=DOWNLOAD",
"mediaType": "application/json"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/3xyp-aqkj/columns.xml",
"describedByType": "application/xml",
"downloadURL": "https://opendata.fcc.gov/api/views/3xyp-aqkj/rows.xml?accessType=DOWNLOAD",
"mediaType": "application/xml"
}
],
"identifier": "https://opendata.fcc.gov/api/views/3xyp-aqkj",
"issued": "2021-08-12",
"keyword": [
"fcc",
"fcc consumer complaints",
"fcc consumer inquiry"
],
"landingPage": "https://opendata.fcc.gov/d/3xyp-aqkj",
"license": "https://www.usa.gov/government-works",
"modified": "2025-02-14",
"programCode": [
"000:000"
],
"publisher": {
"@type": "org:Organization",
"name": "opendata.fcc.gov"
},
"theme": [
"Consumer"
],
"title": "CGB - Consumer Complaints Data"
},
{
"@type": "dcat:Dataset",
"accessLevel": "public",
"bureauCode": [
"356:00"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Humza Riaz",
"hasEmail": "mailto:[email protected]"
},
"description": "FINAL TELEVISION CHANNEL ASSIGNMENT INFORMATION RELATED TO INCENTIVE AUCTION REPACKING. NOTE: This file provides new baseline coverage and population data for all U.S. full power and Class A stations on their post-auction channel. NOTE: DTV TV stations use the transmit coordinates for each facility ID. DTS TV stations will have a single row. These results are based on the 20151020UCM Database, 2015Oct_132Settings.xml study template, and TVStudy version 1.3.2 (patched).",
"distribution": [
{
"@type": "dcat:Distribution",
"downloadURL": "https://opendata.fcc.gov/api/views/42c8-wnh4/rows.csv?accessType=DOWNLOAD",
"mediaType": "text/csv"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/42c8-wnh4/columns.rdf",
"describedByType": "application/rdf+xml",
"downloadURL": "https://opendata.fcc.gov/api/views/42c8-wnh4/rows.rdf?accessType=DOWNLOAD",
"mediaType": "application/rdf+xml"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/42c8-wnh4/columns.json",
"describedByType": "application/json",
"downloadURL": "https://opendata.fcc.gov/api/views/42c8-wnh4/rows.json?accessType=DOWNLOAD",
"mediaType": "application/json"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/42c8-wnh4/columns.xml",
"describedByType": "application/xml",
"downloadURL": "https://opendata.fcc.gov/api/views/42c8-wnh4/rows.xml?accessType=DOWNLOAD",
"mediaType": "application/xml"
}
],
"identifier": "https://opendata.fcc.gov/api/views/42c8-wnh4",
"issued": "2017-06-19",
"keyword": [
"incentive auctions"
],
"landingPage": "https://opendata.fcc.gov/d/42c8-wnh4",
"license": "https://www.usa.gov/government-works",
"modified": "2019-01-28",
"programCode": [
"000:000"
],
"publisher": {
"@type": "org:Organization",
"name": "opendata.fcc.gov"
},
"theme": [
"Wireless"
],
"title": "Post Auction Coverage Baseline 2.0"
},
{
"@type": "dcat:Dataset",
"accessLevel": "public",
"bureauCode": [
"356:00"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Steven Rosenberg",
"hasEmail": "mailto:[email protected]"
},
"description": "All facilities-based broadband providers are required to file data with the FCC twice a year (Form 477) on where they offer Internet access service at speeds exceeding 200 kbps in at least one direction. Fixed providers file lists of census blocks in which they can or do offer service to at least one location, with additional information about the service. Data Download Page: https://www.fcc.gov/general/broadband-deployment-data-fcc-form-477. Resources page: https://www.fcc.gov/general/form-477-resources-filers.",
"distribution": [
{
"@type": "dcat:Distribution",
"downloadURL": "https://opendata.fcc.gov/api/views/4kuc-phrr/rows.csv?accessType=DOWNLOAD",
"mediaType": "text/csv"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/4kuc-phrr/columns.rdf",
"describedByType": "application/rdf+xml",
"downloadURL": "https://opendata.fcc.gov/api/views/4kuc-phrr/rows.rdf?accessType=DOWNLOAD",
"mediaType": "application/rdf+xml"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/4kuc-phrr/columns.json",
"describedByType": "application/json",
"downloadURL": "https://opendata.fcc.gov/api/views/4kuc-phrr/rows.json?accessType=DOWNLOAD",
"mediaType": "application/json"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/4kuc-phrr/columns.xml",
"describedByType": "application/xml",
"downloadURL": "https://opendata.fcc.gov/api/views/4kuc-phrr/rows.xml?accessType=DOWNLOAD",
"mediaType": "application/xml"
}
],
"identifier": "https://opendata.fcc.gov/api/views/4kuc-phrr",
"issued": "2021-04-12",
"keyword": [
"2020",
"broadband",
"fcc",
"wcb"
],
"landingPage": "https://opendata.fcc.gov/d/4kuc-phrr",
"license": "https://www.usa.gov/government-works",
"modified": "2021-04-13",
"programCode": [
"000:000"
],
"publisher": {
"@type": "org:Organization",
"name": "opendata.fcc.gov"
},
"theme": [
"Wireline"
],
"title": "Fixed Broadband Deployment Data: June 2020 V1"
},
{
"@type": "dcat:Dataset",
"accessLevel": "public",
"bureauCode": [
"356:00"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Humza Riaz",
"hasEmail": "mailto:[email protected]"
},
"description": "EAS (Equipment Authorization System). The accreditation bodies for testing laboratories are referred to as Test Firm Accrediting Bodies (TFABs). They are responsible for determining Conformity Assessment Bodies (CAB) competence. The TFABs for CABs located outside the U.S. can be found by contacting the designating authority in the CABs economy. For more information about EAS, visit: https://www.fcc.gov/general/equipment-authorization-procedures",
"distribution": [
{
"@type": "dcat:Distribution",
"downloadURL": "https://opendata.fcc.gov/api/views/6cjf-vuh4/rows.csv?accessType=DOWNLOAD",
"mediaType": "text/csv"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/6cjf-vuh4/columns.rdf",
"describedByType": "application/rdf+xml",
"downloadURL": "https://opendata.fcc.gov/api/views/6cjf-vuh4/rows.rdf?accessType=DOWNLOAD",
"mediaType": "application/rdf+xml"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/6cjf-vuh4/columns.json",
"describedByType": "application/json",
"downloadURL": "https://opendata.fcc.gov/api/views/6cjf-vuh4/rows.json?accessType=DOWNLOAD",
"mediaType": "application/json"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/6cjf-vuh4/columns.xml",
"describedByType": "application/xml",
"downloadURL": "https://opendata.fcc.gov/api/views/6cjf-vuh4/rows.xml?accessType=DOWNLOAD",
"mediaType": "application/xml"
}
],
"identifier": "https://opendata.fcc.gov/api/views/6cjf-vuh4",
"issued": "2017-06-20",
"keyword": [
"fcc equipment authorization system"
],
"landingPage": "https://opendata.fcc.gov/d/6cjf-vuh4",
"license": "https://www.usa.gov/government-works",
"modified": "2021-03-22",
"programCode": [
"000:000"
],
"publisher": {
"@type": "org:Organization",
"name": "opendata.fcc.gov"
},
"theme": [
"Engineering & Technology"
],
"title": "EAS Test Firm Accrediting Bodies (TFAB)"
},
{
"@type": "dcat:Dataset",
"accessLevel": "public",
"bureauCode": [
"356:00"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Humza Riaz",
"hasEmail": "mailto:[email protected]"
},
"description": "EAS (Equipment Authorization System). A Telecommunication Certification Body (TCB) is an accredited product certification body with the authority to issue Grants of Certification for compliance with Federal Communications Commission (FCC) Rules & Regulations. For more information about EAS, visit: https://www.fcc.gov/general/equipment-authorization-procedures",
"distribution": [
{
"@type": "dcat:Distribution",
"downloadURL": "https://opendata.fcc.gov/api/views/6dwc-c4xx/rows.csv?accessType=DOWNLOAD",
"mediaType": "text/csv"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/6dwc-c4xx/columns.rdf",
"describedByType": "application/rdf+xml",
"downloadURL": "https://opendata.fcc.gov/api/views/6dwc-c4xx/rows.rdf?accessType=DOWNLOAD",
"mediaType": "application/rdf+xml"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/6dwc-c4xx/columns.json",
"describedByType": "application/json",
"downloadURL": "https://opendata.fcc.gov/api/views/6dwc-c4xx/rows.json?accessType=DOWNLOAD",
"mediaType": "application/json"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/6dwc-c4xx/columns.xml",
"describedByType": "application/xml",
"downloadURL": "https://opendata.fcc.gov/api/views/6dwc-c4xx/rows.xml?accessType=DOWNLOAD",
"mediaType": "application/xml"
}
],
"identifier": "https://opendata.fcc.gov/api/views/6dwc-c4xx",
"issued": "2017-06-20",
"keyword": [
"eas telecommunications certification bodies"
],
"landingPage": "https://opendata.fcc.gov/d/6dwc-c4xx",
"license": "https://www.usa.gov/government-works",
"modified": "2021-03-22",
"programCode": [
"000:000"
],
"publisher": {
"@type": "org:Organization",
"name": "opendata.fcc.gov"
},
"theme": [
"Engineering & Technology"
],
"title": "EAS Telecommunications Certification Bodies (TCB)"
},
{
"@type": "dcat:Dataset",
"accessLevel": "public",
"bureauCode": [
"356:00"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Steven Rosenberg",
"hasEmail": "mailto:[email protected]"
},
"description": "<b>The data collected to create this dataset was in place through data as of June, 2021. For more recent broadband availability data, please see https://broadbandmap.fcc.gov; for more information about the related data collection, please see https://www.fcc.gov/BroadbandData.</b>\n\nSummary data of fixed broadband coverage by geographic area",
"distribution": [
{
"@type": "dcat:Distribution",
"downloadURL": "https://opendata.fcc.gov/api/views/6nz8-czf5/rows.csv?accessType=DOWNLOAD",
"mediaType": "text/csv"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/6nz8-czf5/columns.rdf",
"describedByType": "application/rdf+xml",
"downloadURL": "https://opendata.fcc.gov/api/views/6nz8-czf5/rows.rdf?accessType=DOWNLOAD",
"mediaType": "application/rdf+xml"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/6nz8-czf5/columns.json",
"describedByType": "application/json",
"downloadURL": "https://opendata.fcc.gov/api/views/6nz8-czf5/rows.json?accessType=DOWNLOAD",
"mediaType": "application/json"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/6nz8-czf5/columns.xml",
"describedByType": "application/xml",
"downloadURL": "https://opendata.fcc.gov/api/views/6nz8-czf5/rows.xml?accessType=DOWNLOAD",
"mediaType": "application/xml"
}
],
"identifier": "https://opendata.fcc.gov/api/views/6nz8-czf5",
"issued": "2020-10-26",
"keyword": [
"broadband",
"fixed",
"form 477",
"map"
],
"landingPage": "https://opendata.fcc.gov/d/6nz8-czf5",
"license": "https://www.usa.gov/government-works",
"modified": "2023-08-01",
"programCode": [
"000:000"
],
"publisher": {
"@type": "org:Organization",
"name": "opendata.fcc.gov"
},
"theme": [
"Wireline"
],
"title": "Provider Table December 2019 V1"
},
{
"@type": "dcat:Dataset",
"accessLevel": "public",
"bureauCode": [
"356:00"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "[email protected]",
"hasEmail": "mailto:[email protected]"
},
"description": "47 CFR Parts 73/74, 23 and 25 (Earth Stations)",
"distribution": [
{
"@type": "dcat:Distribution",
"description": "Updated Daily - midnight",
"downloadURL": "http://www.fcc.gov/oet/info/software/suss/",
"mediaType": "text/html",
"title": "Data File"
},
{
"@type": "dcat:Distribution",
"description": "Updated Daily - midnight",
"downloadURL": "ftp://ftp.fcc.gov/pub/Bureaus/International/databases/IBFS.zip",
"mediaType": "text/html",
"title": "Data File"
}
],
"identifier": "https://opendata.fcc.gov/api/views/78n9-wprc",
"issued": "2016-06-21",
"keyword": [
"fcc",
"ibfs"
],
"landingPage": "https://opendata.fcc.gov/d/78n9-wprc",
"license": "https://www.usa.gov/government-works",
"modified": "2017-04-21",
"programCode": [
"000:000"
],
"publisher": {
"@type": "org:Organization",
"name": "opendata.fcc.gov"
},
"theme": [
"International"
],
"title": "International Bureau Filing System (IBFS)"
},
{
"@type": "dcat:Dataset",
"accessLevel": "public",
"bureauCode": [
"356:00"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Patrick Newcomb",
"hasEmail": "mailto:[email protected]"
},
"description": "<b>The data collected to create this dataset was in place through data as of June, 2021. For more recent broadband availability data, please see https://broadbandmap.fcc.gov; for more information about the related data collection, please see https://www.fcc.gov/BroadbandData.</b>\n\nVersion 1 reflects data filed by the September 1, 2017 filing deadline and any revisions made before June 15, 2018. All facilities-based broadband providers are required to file data with the FCC twice a year (Form 477) on where they offer Internet access service at speeds exceeding 200 kbps in at least one direction. Fixed providers file lists of census blocks in which they can or do offer service to at least one location, with additional information about the service. Data Download Page: https://www.fcc.gov/general/broadband-deployment-data-fcc-form-477. Resources page: https://www.fcc.gov/general/form-477-resources-filers",
"distribution": [
{
"@type": "dcat:Distribution",
"downloadURL": "https://opendata.fcc.gov/api/views/9r8r-g7ut/rows.csv?accessType=DOWNLOAD",
"mediaType": "text/csv"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/9r8r-g7ut/columns.rdf",
"describedByType": "application/rdf+xml",
"downloadURL": "https://opendata.fcc.gov/api/views/9r8r-g7ut/rows.rdf?accessType=DOWNLOAD",
"mediaType": "application/rdf+xml"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/9r8r-g7ut/columns.json",
"describedByType": "application/json",
"downloadURL": "https://opendata.fcc.gov/api/views/9r8r-g7ut/rows.json?accessType=DOWNLOAD",
"mediaType": "application/json"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/9r8r-g7ut/columns.xml",
"describedByType": "application/xml",
"downloadURL": "https://opendata.fcc.gov/api/views/9r8r-g7ut/rows.xml?accessType=DOWNLOAD",
"mediaType": "application/xml"
}
],
"identifier": "https://opendata.fcc.gov/api/views/9r8r-g7ut",
"issued": "2018-06-22",
"keyword": [
"2017",
"broadband",
"fcc",
"wcb"
],
"landingPage": "https://opendata.fcc.gov/d/9r8r-g7ut",
"license": "https://www.usa.gov/government-works",
"modified": "2023-08-01",
"programCode": [
"000:000"
],
"publisher": {
"@type": "org:Organization",
"name": "opendata.fcc.gov"
},
"theme": [
"Wireline"
],
"title": "Fixed Broadband Deployment Data: June, 2017 Status V1"
},
{
"@type": "dcat:Dataset",
"accessLevel": "public",
"bureauCode": [
"356:00"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Patrick Newcomb",
"hasEmail": "mailto:[email protected]"
},
"description": "All facilities-based broadband providers are required to file data with the FCC twice a year (Form 477) on where they offer Internet access service at speeds exceeding 200 kbps in at least one direction. Fixed providers file lists of census blocks in which they can or do offer service to at least one location, with additional information about the service. Data Download Page: (https://www.fcc.gov/general/broadband-deployment-data-fcc-form-477. Resources page: https://www.fcc.gov/general/form-477-resources-filers",
"distribution": [
{
"@type": "dcat:Distribution",
"downloadURL": "https://opendata.fcc.gov/api/views/9tdg-7vpy/rows.csv?accessType=DOWNLOAD",
"mediaType": "text/csv"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/9tdg-7vpy/columns.rdf",
"describedByType": "application/rdf+xml",
"downloadURL": "https://opendata.fcc.gov/api/views/9tdg-7vpy/rows.rdf?accessType=DOWNLOAD",
"mediaType": "application/rdf+xml"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/9tdg-7vpy/columns.json",
"describedByType": "application/json",
"downloadURL": "https://opendata.fcc.gov/api/views/9tdg-7vpy/rows.json?accessType=DOWNLOAD",
"mediaType": "application/json"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/9tdg-7vpy/columns.xml",
"describedByType": "application/xml",
"downloadURL": "https://opendata.fcc.gov/api/views/9tdg-7vpy/rows.xml?accessType=DOWNLOAD",
"mediaType": "application/xml"
}
],
"identifier": "https://opendata.fcc.gov/api/views/9tdg-7vpy",
"issued": "2017-03-07",
"keyword": [
"broadband",
"fcc",
"wcb"
],
"landingPage": "https://opendata.fcc.gov/d/9tdg-7vpy",
"license": "https://www.usa.gov/government-works",
"modified": "2019-01-28",
"programCode": [
"000:000"
],
"publisher": {
"@type": "org:Organization",
"name": "opendata.fcc.gov"
},
"theme": [
"Wireline"
],
"title": "Fixed Broadband Deployment Data: December, 2015 Status"
},
{
"@type": "dcat:Dataset",
"accessLevel": "public",
"bureauCode": [
"356:00"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Alireza Shadman",
"hasEmail": "mailto:[email protected]"
},
"description": "<b>The data collected to create this dataset was in place through data as of June, 2021. For more recent broadband availability data, please see https://broadbandmap.fcc.gov; for more information about the related data collection, please see https://www.fcc.gov/BroadbandData.</b>\n\nSummary data of fixed broadband coverage by geographic area",
"distribution": [
{
"@type": "dcat:Distribution",
"downloadURL": "https://opendata.fcc.gov/api/views/9wyt-yvgw/rows.csv?accessType=DOWNLOAD",
"mediaType": "text/csv"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/9wyt-yvgw/columns.rdf",
"describedByType": "application/rdf+xml",
"downloadURL": "https://opendata.fcc.gov/api/views/9wyt-yvgw/rows.rdf?accessType=DOWNLOAD",
"mediaType": "application/rdf+xml"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/9wyt-yvgw/columns.json",
"describedByType": "application/json",
"downloadURL": "https://opendata.fcc.gov/api/views/9wyt-yvgw/rows.json?accessType=DOWNLOAD",
"mediaType": "application/json"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/9wyt-yvgw/columns.xml",
"describedByType": "application/xml",
"downloadURL": "https://opendata.fcc.gov/api/views/9wyt-yvgw/rows.xml?accessType=DOWNLOAD",
"mediaType": "application/xml"
}
],
"identifier": "https://opendata.fcc.gov/api/views/9wyt-yvgw",
"issued": "2019-12-17",
"landingPage": "https://opendata.fcc.gov/d/9wyt-yvgw",
"modified": "2023-08-01",
"programCode": [
"000:000"
],
"publisher": {
"@type": "org:Organization",
"name": "opendata.fcc.gov"
},
"title": "Provider Table December 2018"
},
{
"@type": "dcat:Dataset",
"accessLevel": "public",
"bureauCode": [
"356:00"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Alireza Shadman",
"hasEmail": "mailto:[email protected]"
},
"description": "",
"distribution": [
{
"@type": "dcat:Distribution",
"downloadURL": "https://opendata.fcc.gov/api/views/a6ec-cry4/rows.csv?accessType=DOWNLOAD",
"mediaType": "text/csv"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/a6ec-cry4/columns.rdf",
"describedByType": "application/rdf+xml",
"downloadURL": "https://opendata.fcc.gov/api/views/a6ec-cry4/rows.rdf?accessType=DOWNLOAD",
"mediaType": "application/rdf+xml"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/a6ec-cry4/columns.json",
"describedByType": "application/json",
"downloadURL": "https://opendata.fcc.gov/api/views/a6ec-cry4/rows.json?accessType=DOWNLOAD",
"mediaType": "application/json"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/a6ec-cry4/columns.xml",
"describedByType": "application/xml",
"downloadURL": "https://opendata.fcc.gov/api/views/a6ec-cry4/rows.xml?accessType=DOWNLOAD",
"mediaType": "application/xml"
}
],
"identifier": "https://opendata.fcc.gov/api/views/a6ec-cry4",
"issued": "2019-04-12",
"landingPage": "https://opendata.fcc.gov/d/a6ec-cry4",
"modified": "2025-02-11",
"programCode": [
"000:000"
],
"publisher": {
"@type": "org:Organization",
"name": "opendata.fcc.gov"
},
"title": "Intermediate Provider Registry"
},
{
"@type": "dcat:Dataset",
"accessLevel": "public",
"bureauCode": [
"356:00"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Mary Deatrick",
"hasEmail": "mailto:[email protected]"
},
"description": "Daily transfer of FSS earth station antenna sites registered in the Fixed-Satellite Service Antenna Registration System (FSS ARS).",
"distribution": [
{
"@type": "dcat:Distribution",
"downloadURL": "https://opendata.fcc.gov/api/views/acbv-jbb4/rows.csv?accessType=DOWNLOAD",
"mediaType": "text/csv"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/acbv-jbb4/columns.rdf",
"describedByType": "application/rdf+xml",
"downloadURL": "https://opendata.fcc.gov/api/views/acbv-jbb4/rows.rdf?accessType=DOWNLOAD",
"mediaType": "application/rdf+xml"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/acbv-jbb4/columns.json",
"describedByType": "application/json",
"downloadURL": "https://opendata.fcc.gov/api/views/acbv-jbb4/rows.json?accessType=DOWNLOAD",
"mediaType": "application/json"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/acbv-jbb4/columns.xml",
"describedByType": "application/xml",
"downloadURL": "https://opendata.fcc.gov/api/views/acbv-jbb4/rows.xml?accessType=DOWNLOAD",
"mediaType": "application/xml"
}
],
"identifier": "https://opendata.fcc.gov/api/views/acbv-jbb4",
"issued": "2023-10-11",
"keyword": [
"3.5 ghz",
"fss ars"
],
"landingPage": "https://opendata.fcc.gov/d/acbv-jbb4",
"license": "https://www.usa.gov/government-works",
"modified": "2024-11-26",
"programCode": [
"000:000"
],
"publisher": {
"@type": "org:Organization",
"name": "opendata.fcc.gov"
},
"theme": [
"Wireless"
],
"title": "Protected FSS Earth Station Registration (Complete Dataset)"
},
{
"@type": "dcat:Dataset",
"accessLevel": "public",
"bureauCode": [
"356:00"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Steven Rosenberg",
"hasEmail": "mailto:[email protected]"
},
"description": "Geographic extent of fixed broadband coverage providers. License and Attribution: Broadband data from FCC Form 477, and data from the U.S. Census Bureau that are presented on this site are offered free and not subject to copyright restriction. Data and content created by government employees within the scope of their employment are not subject to domestic copyright protection under 17 U.S.C. \u00a7 105. See, e.g., U.S. Government Works.\n\nWhile not required, when using content, data, documentation, code and related materials from fcc.gov or broadbandmap.fcc.gov in your own work, we ask that proper credit be given. Examples include:\n\u2022 Source data: FCC Form 477\n\u2022 Map layer based on FCC Form 477\n\u2022 Code data based on broadbandmap.fcc.gov",
"distribution": [
{
"@type": "dcat:Distribution",
"downloadURL": "https://opendata.fcc.gov/api/views/awrw-t4m8/rows.csv?accessType=DOWNLOAD",
"mediaType": "text/csv"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/awrw-t4m8/columns.rdf",
"describedByType": "application/rdf+xml",
"downloadURL": "https://opendata.fcc.gov/api/views/awrw-t4m8/rows.rdf?accessType=DOWNLOAD",
"mediaType": "application/rdf+xml"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/awrw-t4m8/columns.json",
"describedByType": "application/json",
"downloadURL": "https://opendata.fcc.gov/api/views/awrw-t4m8/rows.json?accessType=DOWNLOAD",
"mediaType": "application/json"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/awrw-t4m8/columns.xml",
"describedByType": "application/xml",
"downloadURL": "https://opendata.fcc.gov/api/views/awrw-t4m8/rows.xml?accessType=DOWNLOAD",
"mediaType": "application/xml"
}
],
"identifier": "https://opendata.fcc.gov/api/views/awrw-t4m8",
"issued": "2019-06-28",
"keyword": [
"broadband",
"fixed",
"from 477",
"map"
],
"landingPage": "https://opendata.fcc.gov/d/awrw-t4m8",
"license": "https://www.usa.gov/government-works",
"modified": "2022-08-16",
"programCode": [
"000:000"
],
"publisher": {
"@type": "org:Organization",
"name": "opendata.fcc.gov"
},
"theme": [
"Wireline"
],
"title": "Provider Lookup Table"
},
{
"@type": "dcat:Dataset",
"accessLevel": "public",
"bureauCode": [
"356:00"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Steven Rosenberg",
"hasEmail": "mailto:[email protected]"
},
"description": "<b>The data collected to create this dataset was in place through data as of June, 2021. For more recent broadband availability data, please see https://broadbandmap.fcc.gov; for more information about the related data collection, please see https://www.fcc.gov/BroadbandData.</b>\n\nAll facilities-based broadband providers are required to file data with the FCC twice a year (Form 477) on where they offer Internet access service at speeds exceeding 200 kbps in at least one direction. Fixed providers file lists of census blocks in which they can or do offer service to at least one location, with additional information about the service. Data Download Page: (https://www.fcc.gov/general/broadband-deployment-data-fcc-form-477. Resources page: https://www.fcc.gov/general/form-477-resources-filers",
"distribution": [
{
"@type": "dcat:Distribution",
"downloadURL": "https://opendata.fcc.gov/api/views/b5f4-szwq/rows.csv?accessType=DOWNLOAD",
"mediaType": "text/csv"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/b5f4-szwq/columns.rdf",
"describedByType": "application/rdf+xml",
"downloadURL": "https://opendata.fcc.gov/api/views/b5f4-szwq/rows.rdf?accessType=DOWNLOAD",
"mediaType": "application/rdf+xml"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/b5f4-szwq/columns.json",
"describedByType": "application/json",
"downloadURL": "https://opendata.fcc.gov/api/views/b5f4-szwq/rows.json?accessType=DOWNLOAD",
"mediaType": "application/json"
},
{
"@type": "dcat:Distribution",
"describedBy": "https://opendata.fcc.gov/api/views/b5f4-szwq/columns.xml",
"describedByType": "application/xml",
"downloadURL": "https://opendata.fcc.gov/api/views/b5f4-szwq/rows.xml?accessType=DOWNLOAD",
"mediaType": "application/xml"
}
],
"identifier": "https://opendata.fcc.gov/api/views/b5f4-szwq",
"issued": "2017-11-20",