-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgsa.json
17947 lines (17947 loc) · 790 KB
/
gsa.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",
"@type": "dcat:Catalog",
"conformsTo": "https://project-open-data.cio.gov/v1.1/schema",
"dataset": [
{
"@type": "dcat:Dataset",
"accessLevel": "public",
"accrualPeriodicity": "R/P3M",
"bureauCode": [
"023:00"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Toni L. Holloway",
"hasEmail": "mailto:[email protected]"
},
"dataQuality": true,
"describedBy": "http://www.gsa.gov/networx",
"description": "The dataset represents the Networx Universal and Enterprise business volume by contractor, agency, contract vehicle and month for the centralized billing account. This represents the business volume of each government agency that has ordered telecommunications services from the Networx contract.",
"distribution": [
{
"@type": "dcat:Distribution",
"downloadURL": "https://www.asap.gsa.gov/datagov/TotRevFY13_3rdQtr.xlsx",
"format": "xlsx",
"mediaType": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
"title": "Networx Business Volume_FY2013_3rd Qtr"
}
],
"identifier": "GSA-2015-02-26-1",
"isPartOf": "GSA-2015-08-27",
"issued": "2015-02-27",
"keyword": [
"Networx",
"telecommunications"
],
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"modified": "2019-06-12",
"programCode": [
"023:019"
],
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"spatial": "National",
"theme": [
"Procurement"
],
"title": "Networx Business Volume FY2013, 3rd Qtr"
},
{
"@type": "dcat:Dataset",
"accessLevel": "public",
"accrualPeriodicity": "R/P1Y",
"bureauCode": [
"023:10"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Usha Gopal",
"hasEmail": "mailto:[email protected]"
},
"dataQuality": true,
"description": "GSA e-Buy, is an electronic Request for Quote (RFQ) / Request for Proposal (RFP) system designed to allow government buyers to request information, find sources, and prepare RFQs/RFPs, online, for millions of services and products offered through GSA's Multiple Award Schedule (MAS) and GSA Technology Contracts. Government buyers can use eBuy to obtain quotes or proposals for services, large quantity purchases, big ticket items, and purchases with complex requirements. Buyers may use e-Buy to evaluate and accept the quotation that represents the best value. Buyers may then make award to any contractor whose quotation was accepted. The e-Buy Award dataset are the award data collected by e-Buy for a given fiscal year.",
"distribution": [
{
"@type": "dcat:Distribution",
"description": "e-Buy Awards for FY 2019",
"downloadURL": "https://inventory.data.gov/dataset/c0013298-52ea-4f3e-a0bc-9f68cb7f5144/resource/1b0710dc-fa8c-4837-be40-6017325607d7/download/ebuyawardsfy2019.xlsx",
"format": "xlsx",
"mediaType": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
"title": "ebuy_awards_FY2019"
}
],
"identifier": "GSA-2020-04-01-01",
"isPartOf": "GSA-2015-08-31",
"issued": "2015-09-28",
"keyword": [
"Awards",
"Contracts",
"Quote",
"RFQ",
"Schedules",
"e-Buy",
"procurement"
],
"language": [
"en-us"
],
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"modified": "2020-04-01",
"programCode": [
"023:007"
],
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"rights": "N/A",
"theme": [
"Acquisition"
],
"title": "e-Buy Awards for Fiscal Year 2019"
},
{
"@type": "dcat:Dataset",
"accessLevel": "public",
"accrualPeriodicity": "R/P3M",
"bureauCode": [
"023:00"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Toni L Holloway",
"hasEmail": "mailto:[email protected]"
},
"dataQuality": true,
"description": "The dataset represents the Networx Universal and Enterprise business volume of each government agency that has ordered telecommunications services from the Networx Contact, by Fiscal Year, Contract, Contract Vehicle, Agency and Month for the Central and Direct billing accounts.",
"distribution": [
{
"@type": "dcat:Distribution",
"downloadURL": "https://inventory.data.gov/dataset/53aebcad-db78-4871-9df5-7a909e30b1e4/resource/76deb9f1-e595-4009-8d0a-d04da481221c/download/networxtotrevfy162ndqtr.xlsx",
"format": "xlsx",
"mediaType": "application/vnd.ms-excel",
"title": "Networx Total Revenue FY16 2nd Quarter"
}
],
"identifier": "GSA-2016-05-18-01",
"isPartOf": "GSA-2015-08-27",
"issued": "2015-11-13",
"keyword": [
"Contract",
"Networx Telecommunications",
"Telecommunications"
],
"language": [
"en-US"
],
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"modified": "2019-06-12",
"programCode": [
"023:019"
],
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"theme": [
"Telecommunications Services"
],
"title": "Networx Business Volume FY2016, 2nd Qtr"
},
{
"@type": "dcat:Dataset",
"accessLevel": "public",
"accrualPeriodicity": "R/P3M",
"bureauCode": [
"023:00"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Nancy V Hexmoor",
"hasEmail": "mailto:[email protected]"
},
"dataQuality": true,
"description": "Purchases made with the purchase card. Files will be batched quarterly.",
"distribution": [
{
"@type": "dcat:Distribution",
"description": "4th Quarter US Bank Purchase Card transactions.",
"downloadURL": "https://inventory.data.gov/dataset/08a347ec-2429-41a1-9728-51e442266968/resource/58206663-fb54-4bae-a7eb-8a3aef57c2c3/download/us-bank-pc-qtr4-2019.xlsx",
"format": "xlsx",
"mediaType": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
"title": "US Bank PC Qtr4 2019"
}
],
"identifier": "GSA-2020-02-04-01",
"isPartOf": "GSA-2016-01-05-01",
"keyword": [
"august",
"july",
"purchase card",
"september",
"transactions"
],
"language": [
"en-us"
],
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"modified": "2020-02-04",
"programCode": [
"023:010"
],
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"rights": "N/A",
"theme": [
"Card Services Program"
],
"title": "GSA Purchase Card Transactions July-Sept 2019, 4th Qtr - US Bank"
},
{
"@type": "dcat:Dataset",
"accessLevel": "public",
"accrualPeriodicity": "R/P3M",
"bureauCode": [
"023:00"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Toni L Holloway",
"hasEmail": "mailto:[email protected]"
},
"dataQuality": true,
"description": "The dataset represents the Networx Universal and Enterprise business volume of each government agency that has ordered telecommunications services from the Networx Contact, by Fiscal Year, Contract, Contract Vehicle, Agency and Month for the Central and Direct billing accounts.",
"distribution": [
{
"@type": "dcat:Distribution",
"description": "2nd Quarter FY20",
"downloadURL": "https://inventory.data.gov/dataset/c2095a7c-0a1c-4f2e-8e80-5f218e805213/resource/ba337757-50b9-4ce5-a43f-83fc62be35d5/download/totrevfy202ndqtr.xlsx",
"format": "xlsx",
"mediaType": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
"title": "TotRevFY20_2ndQtr"
}
],
"identifier": "GSA-2020-05-18-01",
"isPartOf": "GSA-2015-08-27",
"issued": "2015-11-13",
"keyword": [
"Contract",
"Networx Telecommunications",
"Telecommunications"
],
"language": [
"en-US"
],
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"modified": "2020-02-20",
"programCode": [
"023:019"
],
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"theme": [
"Telecommunications Services"
],
"title": "Networx Business Volume FY2020, 2nd Qtr"
},
{
"@type": "dcat:Dataset",
"accessLevel": "public",
"accrualPeriodicity": "R/P3M",
"bureauCode": [
"023:00"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Nancy V Hexmoor",
"hasEmail": "mailto:[email protected]"
},
"dataQuality": true,
"description": "Purchases made with the purchase card. Files will be batched quarterly.",
"distribution": [
{
"@type": "dcat:Distribution",
"description": "1st Quarter US Bank Purchase Card transactions.",
"downloadURL": "https://inventory.data.gov/dataset/41e9f279-c461-4c8f-a8af-57c2a3e4c4ee/resource/e9609cbc-a825-4377-a81b-768dc05dadb8/download/us-bank-pc-qtr1-2020.xlsx",
"mediaType": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
"title": "US Bank PC Qtr1 2020"
}
],
"identifier": "GSA-2020-02-04-02",
"isPartOf": "GSA-2016-01-05-01",
"keyword": [
"december",
"november",
"october",
"purchase card",
"transactions"
],
"language": [
"en-us"
],
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"modified": "2020-02-04",
"programCode": [
"023:010"
],
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"rights": "N/A",
"theme": [
"Card Services Program"
],
"title": "GSA Purchase Card Transactions Oct-Dec 2020, 1st Qtr - US Bank"
},
{
"@type": "dcat:Dataset",
"accessLevel": "public",
"accrualPeriodicity": "R/P3M",
"bureauCode": [
"023:00"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Nancy V Hexmoor",
"hasEmail": "mailto:[email protected]"
},
"dataQuality": true,
"description": "Purchases made with the purchase card. Files will be batched quarterly.",
"distribution": [
{
"@type": "dcat:Distribution",
"description": "Purchase Card transactions for January through March 2020.",
"downloadURL": "https://inventory.data.gov/dataset/f5820775-f12d-48f3-aef2-ecf96912f7d1/resource/5b0f49fc-120a-489f-8a3d-e6dd58be24eb/download/us-bank-pc-qtr2-2020.xlsx",
"format": "xlsx",
"mediaType": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
"title": "US Bank PC Qtr 2 2020"
}
],
"identifier": "GSA-2020-05-26-01",
"isPartOf": "GSA-2016-01-05-01",
"keyword": [
"february",
"january",
"march",
"purchase card",
"transactions"
],
"language": [
"en-us"
],
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"modified": "2020-02-04",
"programCode": [
"023:010"
],
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"rights": "N/A",
"theme": [
"Card Services Program"
],
"title": "GSA Purchase Card Transactions Jan-Mar 2020, 2nd Qtr - US Bank"
},
{
"@type": "dcat:Dataset",
"accessLevel": "public",
"accrualPeriodicity": "R/P3M",
"bureauCode": [
"023:00"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "James G Parks",
"hasEmail": "mailto:[email protected]"
},
"dataQuality": true,
"description": "The GSA SmartPay\u00ae purchase card program provides cards to federal employees to make official government purchases. These are transactions made by the GSA Board of Contract Appeals.",
"distribution": [
{
"@type": "dcat:Distribution",
"description": "CBCA PC transactions for 2nd Qtr 2020 US Bank",
"downloadURL": "https://inventory.data.gov/dataset/59757dcd-296e-4143-b267-a8d3e24ed4e3/resource/f74e792f-d28b-4ab4-ac6c-4daf2e76fe82/download/2020-2nd-qtr-jan-marcbca-pc-transactionsus-bank.xlsx",
"format": "xlsx",
"mediaType": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
"title": "2020-2nd Qtr (Jan-Mar)_CBCA PC transactions_US Bank"
}
],
"identifier": "GSA-2020-05-26-02",
"isPartOf": "GSA-2016-01-06-1",
"issued": "2014-10-01",
"keyword": [
"BOCA",
"Contract Board",
"GSA SmartPay",
"Purchase Card",
"Transactions",
"february",
"january",
"march"
],
"language": [
"en-us"
],
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"modified": "2020-02-13",
"programCode": [
"023:010"
],
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"rights": "N/A",
"theme": [
"Card Services Program"
],
"title": "Purchase Card Transactions - CBCA Jan-Mar 2020, 2nd Qtr US Bank"
},
{
"@type": "dcat:Dataset",
"accessLevel": "public",
"accrualPeriodicity": "R/P3M",
"bureauCode": [
"023:00"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "James G Parks",
"hasEmail": "mailto:[email protected]"
},
"dataQuality": true,
"description": "The GSA SmartPay\u00ae purchase card program provides cards to federal employees to make official government purchases. These are transactions made by the GSA Board of Contract Appeals.",
"distribution": [
{
"@type": "dcat:Distribution",
"description": "1st Quarter CBCA Purchase Card transactions",
"downloadURL": "https://inventory.data.gov/dataset/40a169df-a46e-4a02-8ced-af4971650091/resource/623b0ebe-e235-4fde-a96d-c443776597f7/download/2020-1st-qtr-oct-dec-cbca-pc-transactionsus-bank.xlsx",
"format": "xlsx",
"mediaType": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
"title": "2020-1st Qtr (Oct-Dec) CBCA PC transactions_US Bank"
}
],
"identifier": "GSA-2020-02-13-01",
"isPartOf": "GSA-2016-01-06-1",
"issued": "2014-10-01",
"keyword": [
"BOCA",
"Contract Board",
"December",
"GSA SmartPay",
"November",
"October",
"Purchase Card",
"Transactions"
],
"language": [
"en-us"
],
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"modified": "2020-02-13",
"programCode": [
"023:010"
],
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"rights": "N/A",
"theme": [
"Card Services Program"
],
"title": "Purchase Card Transactions - CBCA Oct-Dec 2020, 1st Qtr US Bank"
},
{
"@type": "dcat:Dataset",
"accessLevel": "public",
"accrualPeriodicity": "R/P3M",
"bureauCode": [
"023:00"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Toni L Holloway",
"hasEmail": "mailto:[email protected]"
},
"dataQuality": true,
"description": "The dataset represents the Networx Universal and Enterprise business volume of each government agency that has ordered telecommunications services from the Networx Contact, by Fiscal Year, Contract, Contract Vehicle, Agency and Month for the Central and Direct billing accounts.",
"distribution": [
{
"@type": "dcat:Distribution",
"description": "1st Quarter Total Revenue FY20",
"downloadURL": "https://inventory.data.gov/dataset/65ddcbed-eba0-48b9-9c6f-c956c1e8deb2/resource/1c09a826-64ad-42d3-9333-f46c3dc8c4f4/download/totrevfy201stqtr.xlsx",
"format": "xlsx",
"mediaType": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
"title": "TotRevFY20_1stQtr"
}
],
"identifier": "GSA-2020-02-20-01",
"isPartOf": "GSA-2015-08-27",
"issued": "2015-11-13",
"keyword": [
"Contract",
"Networx Telecommunications",
"Telecommunications"
],
"language": [
"en-US"
],
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"modified": "2020-02-20",
"programCode": [
"023:019"
],
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"theme": [
"Telecommunications Services"
],
"title": "Networx Business Volume FY2020, 1st Qtr"
},
{
"@type": "dcat:Dataset",
"accessLevel": "public",
"accrualPeriodicity": "R/P3M",
"bureauCode": [
"023:00"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Loren Smith",
"hasEmail": "mailto:[email protected]"
},
"dataQuality": true,
"description": "These datasets represent the Enterprise Infrastructure Solutions (EIS), business volume of each government agency that has ordered telecommunications services from the EIS Contract. This collection contains data from FY2019 to the present.",
"identifier": "GSA-2020-06-26-01",
"issued": "2020-06-26",
"keyword": [
"Business Volume",
"EIS",
"Enterprise Infrastructure Solutions",
"GSA",
"Telecommunications"
],
"language": [
"en-US"
],
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"modified": "2020-06-26",
"programCode": [
"023:019"
],
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"theme": [
"Telecommunications Services"
],
"title": "Enterprise Infrastructure Solutions (EIS)"
},
{
"@type": "dcat:Dataset",
"accessLevel": "public",
"accrualPeriodicity": "R/P3M",
"bureauCode": [
"023:00"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Loren Smith",
"hasEmail": "mailto:[email protected]"
},
"dataQuality": true,
"description": "These datasets represent the Enterprise Infrastructure Solutions (EIS), business volume of each government agency that has ordered telecommunications services from the EIS Contract. This collection contains data from FY2019.",
"distribution": [
{
"@type": "dcat:Distribution",
"description": "This report contains the business volume of each government agency\r\nthat has ordered telecommunications services from the EIS contract for \r\nFY2019.",
"downloadURL": "https://inventory.data.gov/dataset/8b1640e0-d828-4edd-81fe-8dee6b04c9c7/resource/233fc5dd-fbf5-423e-9d45-316385b2b433/download/eistotrevfy19q1q4.xlsx",
"format": "xlsx",
"mediaType": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
"title": "EISTotRevFY19_Q1_Q4"
}
],
"identifier": "GSA-2020-06-26-02",
"isPartOf": "GSA-2020-06-26-01",
"issued": "2020-06-26",
"keyword": [
"Business Volume",
"EIS",
"Enterprise Infrastructure Solutions",
"GSA",
"Telecommunications"
],
"language": [
"en-US"
],
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"modified": "2020-06-26",
"programCode": [
"023:019"
],
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"theme": [
"Telecommunications Services"
],
"title": "FY19 Enterprise Infrastructure Solutions (EIS) Qtrly Report"
},
{
"@type": "dcat:Dataset",
"accessLevel": "public",
"accrualPeriodicity": "R/P3M",
"bureauCode": [
"023:00"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Loren Smith",
"hasEmail": "mailto:[email protected]"
},
"dataQuality": true,
"description": "These datasets represent the Enterprise Infrastructure Solutions (EIS), business volume of each government agency that has ordered telecommunications services from the EIS Contract. This collection contains data from FY2020.",
"distribution": [
{
"@type": "dcat:Distribution",
"description": "This report contains each government agency that has ordered telecommunications services from the EIS contract.",
"downloadURL": "https://inventory.data.gov/dataset/bf94f704-2ede-4058-955e-30b44e43b2d9/resource/0c29f996-574a-42f3-9a6f-b86c1c855a84/download/eistotrevfy20q1q2.xlsx",
"format": "xlsx",
"mediaType": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
"title": "EISTotRevFY20_Q1_Q2"
},
{
"@type": "dcat:Distribution",
"downloadURL": "https://inventory.data.gov/dataset/bf94f704-2ede-4058-955e-30b44e43b2d9/resource/59f0ef50-c468-4d8f-82b9-59dc2e95a536/download/eistotrevfy20_q3.xlsx",
"format": "xlsx",
"mediaType": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
"title": "EISTotRevFY20_Q3"
},
{
"@type": "dcat:Distribution",
"downloadURL": "https://inventory.data.gov/dataset/bf94f704-2ede-4058-955e-30b44e43b2d9/resource/417c0432-0263-4e39-85c9-0073cb1a2a1f/download/eistotrevfy20_q4.xlsx",
"format": "xlsx",
"mediaType": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
"title": "EISTotRevFY20_Q4"
}
],
"identifier": "GSA-2020-06-26-03",
"isPartOf": "GSA-2020-06-26-01",
"issued": "2020-06-26",
"keyword": [
"Business Volume",
"EIS",
"Enterprise Infrastructure Solutions",
"GSA",
"Telecommunications"
],
"language": [
"en-US"
],
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"modified": "2021-03-25T16:16:05.905Z",
"programCode": [
"023:019"
],
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"rights": "true",
"theme": [
"Telecommunications Services"
],
"title": "FY20 Enterprise Infrastructure Solutions (EIS) Quarterly Reports"
},
{
"@type": "dcat:Dataset",
"accessLevel": "public",
"accrualPeriodicity": "R/P3M",
"bureauCode": [
"023:10"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Cindy Smith",
"hasEmail": "mailto:[email protected]"
},
"dataQuality": true,
"describedBy": "https://inventory.data.gov/dataset/federal-data-center-consolidation-initiative-fdcci-data-center-closings-2010-2014/resource/5ac29bc3-2a8f-4bdc-810c-31598058ba8f",
"describedByType": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
"description": "Posted quarterly, using FDCCI Task Force data reported to OMB through the quarterly Integrated Data Collection (IDC) deadline. Federal Data Center Consolidation Initiative (FDCCI) Data Center Closures 2010-2015. Under the FDDCI, agencies have categorized their agency data center populations into two categories: core and non-core. The government is closing 40% of agency-identified, non-\u00adcore data centers, while optimizing agency-identified core-data centers, according to a series of total cost of ownership metrics (see OMB M-13-09 and OMB M-14-08). This dataset reflects information only for agency-identified, non-core closures. All questions or inquiries should be directed to the specific agencies. The FY2010 through FY2015 dataset provides a list of planned or closed data centers by agency and by city/state location since the FDCCI started. Please note ?OTHER? is listed for data centers in cloud, co-located or managed service data centers, where square footage is unavailable. See related information about the FDCCI, including the definition of a data center and other FAQs at http://cio.gov/fdcci.",
"distribution": [
{
"@type": "dcat:Distribution",
"description": "Data as of 05/31/2015",
"downloadURL": "https://inventory.data.gov/dataset/251f4905-c320-468a-975e-45e9835ba418/resource/5ac29bc3-2a8f-4bdc-810c-31598058ba8f/download/federaldatacenterconsolidationinitiativefdccidatacenterclosings20102015053115.xlsx",
"format": "xlsx",
"mediaType": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
"title": "Federal_Data_Center_Consolidation_Initiative__FDCCI__Data_Center_Closings_2010-2015_053115"
}
],
"identifier": "GSA - 32830",
"issued": "2015-04-01",
"keyword": [
"consolidation",
"fddci",
"federal data center consolidation initiative"
],
"landingPage": "http://www.cio.gov/",
"language": [
"us-EN"
],
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"modified": "2015-11-16",
"programCode": [
"023:019"
],
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"references": [
"http://www.cio.gov/FDCCI"
],
"theme": [
"Data Centers"
],
"title": "Fed. Data Center Consolidation Initiative (FDCCI) Data Center Closings 2010-2015"
},
{
"@type": "dcat:Dataset",
"accessLevel": "public",
"bureauCode": [
"023:00"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Bill Shah",
"hasEmail": "mailto:[email protected]"
},
"dataQuality": true,
"describedBy": "http://www.gsa.gov/pbs",
"description": "IRIS tracks the status of safety deficiencies identified during Occupational Safety and Health Administration (OSHA) and Safety & Environmental Management (SEM) survey inspections.",
"distribution": [
{
"@type": "dcat:Distribution",
"downloadURL": "https://inventory.data.gov/dataset/24ccab47-cd58-4e1a-a7c3-d06ccd63b338/resource/0f648994-4341-40ed-9d19-e5746764c4a2/download/inventoryreportinginfosystemssafety.csv",
"format": "csv",
"mediaType": "text/csv",
"title": "Inventory_Reporting_Info_Systems_Safety.csv"
}
],
"identifier": "GSA-33271",
"issued": "2011-05-02",
"keyword": [
"Interactive",
"building",
"findings",
"fire",
"osha",
"safety",
"sem",
"survey"
],
"language": [
"us-EN"
],
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"modified": "2018-10-09",
"programCode": [
"023:019"
],
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"spatial": "National",
"title": "Inventory Reporting Information System (IRIS) Safety"
},
{
"@type": "dcat:Dataset",
"accessLevel": "public",
"accrualPeriodicity": "R/P1M",
"bureauCode": [
"023:00"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Hyon Joo Kim",
"hasEmail": "mailto:[email protected]"
},
"dataQuality": true,
"describedBy": "http://www.data.gov/metric",
"describedByType": "text/csv",
"description": "This dataset provides the trend of downloads in Data.gov up to 2013. These numbers represent the number of times a user has clicked on the XML or CSV (for example) links in the catalog.",
"distribution": [
{
"@type": "dcat:Distribution",
"downloadURL": "https://inventory.data.gov/dataset/3a69e635-ff9c-4bd9-8fb3-04f8ccb7b351/resource/06684cd2-f911-49e9-8d44-d4fe256b4882/download/userssharedsdfdata.govdatasetmonthlydownloadtrends.csv",
"format": "text/csv",
"mediaType": "text/csv",
"title": "Data.gov_Dataset_Monthly_Download_Trends.csv"
}
],
"identifier": "GSA-32421",
"isPartOf": "GSA-2015-09-14-01",
"issued": "2013-04-11",
"keyword": [
"Data.gov",
"Dataset",
"Downloads",
"Interactive",
"Monthly"
],
"language": [
"us-EN"
],
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"modified": "2016-01-20",
"programCode": [
"023:019"
],
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"spatial": "Worldwide",
"theme": [
"Monthly Download Trends for Data.gov"
],
"title": "Data.gov Dataset Monthly Download Trends - Archival"
},
{
"@type": "dcat:Dataset",
"accessLevel": "public",
"accrualPeriodicity": "R/P1M",
"bureauCode": [
"023:00"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Hyon Joo Kim",
"hasEmail": "mailto:[email protected]"
},
"dataQuality": true,
"describedBy": "http://www.data.gov/metric",
"describedByType": "text/csv",
"description": "This dataset provides top 10 visiting countries by month in Data.gov up to July 2013.",
"distribution": [
{
"@type": "dcat:Distribution",
"downloadURL": "https://inventory.data.gov/dataset/b0d40da1-a505-476a-a49b-cfc50ea6d9da/resource/0a1a3fb8-a813-4470-b50c-51b7856203be/download/userssharedsdfdata.govtop10visitingcountries.csv",
"format": "text/csv",
"mediaType": "text/csv",
"title": "Data.gov_Top_10_Visiting_Countries.csv"
}
],
"identifier": "GSA-32491",
"isPartOf": "GSA-2015-09-14-01",
"issued": "2013-05-13",
"keyword": [
"Countries",
"Interactive"
],
"language": [
"us-EN"
],
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"modified": "2016-01-20",
"programCode": [
"023:019"
],
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"spatial": "United States",
"theme": [
"Countries",
"Top 10"
],
"title": "Data.gov Top 10 Visiting Countries - Archival"
},
{
"@type": "dcat:Dataset",
"accessLevel": "public",
"accrualPeriodicity": "R/P1D",
"bureauCode": [
"023:00"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Hyon Joo Kim",
"hasEmail": "mailto:[email protected]"
},
"dataQuality": true,
"describedBy": "http://www.data.gov/metric",
"describedByType": "text/csv",
"description": "This dataset provides distribution of daily visitors to the Data.gov site up to 2013.",
"distribution": [
{
"@type": "dcat:Distribution",
"downloadURL": "https://inventory.data.gov/dataset/2dc37fea-3afa-4f9d-93ef-5e11957a371b/resource/0f96083f-0089-4524-8574-8eec91e2a7f2/download/userssharedsdfdata.govdailyvisitorstatistics.csv",
"format": "text/csv",
"mediaType": "text/csv",
"title": "Data.gov_Daily_Visitor_Statistics.csv"
}
],
"identifier": "GSA-32441",
"isPartOf": "GSA-2015-09-14-01",
"issued": "2013-04-11",
"keyword": [
"Daily",
"Interactive",
"Statistics",
"Visitor"
],
"language": [
"us-EN"
],
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"modified": "2016-01-20",
"programCode": [
"023:019"
],
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"spatial": "Worldwide",
"theme": [
"Visitors to Data.gov Site"
],
"title": "Data.gov Daily Visitor Statistics - Archival"
},
{
"@type": "dcat:Dataset",
"accessLevel": "public",
"accrualPeriodicity": "R/P1M",
"bureauCode": [
"023:00"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Hyon Joo Kim",
"hasEmail": "mailto:[email protected]"
},
"dataQuality": true,
"describedBy": "http://www.data.gov/metric",
"describedByType": "text/csv",
"description": "This dataset provides the number of visitors to Data.gov per month up to 2013.",
"distribution": [
{
"@type": "dcat:Distribution",
"downloadURL": "https://inventory.data.gov/dataset/a84616de-f4a8-4834-8acf-be5aa05e2713/resource/5fb970e5-11a5-4ef7-ae06-5df03688caec/download/userssharedsdfdata.govmonthlyvisitorstatistics.csv",
"format": "text/csv",
"mediaType": "text/csv",
"title": "Data.gov_Monthly_Visitor_Statistics.csv"
}
],
"identifier": "GSA-32431",
"isPartOf": "GSA-2015-09-14-01",
"issued": "2013-04-11",
"keyword": [
"Interactive",
"monthly",
"statistics",
"visitor"
],
"language": [
"us-EN"
],
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"modified": "2016-01-20",
"programCode": [
"023:019"
],
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"spatial": "Worldwide",
"theme": [
"Statistics",
"Visitors Monthly"
],
"title": "Data.gov Monthly Visitor Statistics - Archival"
},
{
"@type": "dcat:Dataset",
"accessLevel": "public",
"accrualPeriodicity": "R/P1M",
"bureauCode": [
"023:00"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Hyon Joo Kim",
"hasEmail": "mailto:[email protected]"
},
"dataQuality": true,
"describedBy": "http://www.data.gov/metric",
"describedByType": "text/csv",
"description": "This dataset provides distribution of all datasets provided by all Departments/ Agencies/ Organizations in Data.gov up to 2013. See http://www.data.gov/metric for current information on federal agency participation.",
"distribution": [