forked from rootgov/open-gsa-redesign
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.json
12415 lines (12415 loc) · 695 KB
/
data.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
{
"conformsTo": "https://project-open-data.cio.gov/v1.1/schema",
"describedBy": "https://project-open-data.cio.gov/v1.1/schema/catalog.json",
"@context": "https://project-open-data.cio.gov/v1.1/schema/catalog.jsonld",
"@type": "dcat:Catalog",
"dataset": [{
"@type": "dcat:Dataset",
"title": "2015 GSA Common Baseline Implementation Plan and CIO Assignment Plan",
"description": "This is GSA's 2015 Common Baseline Implementation Plan and its CIO Assignment Plan per the requirements set forth in FITARA legislation.",
"modified": "2017-05-15",
"accessLevel": "public",
"identifier": "GSA-2016-01-22-01",
"dataQuality": true,
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"accrualPeriodicity": "R/P1Y",
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Mick Harris",
"hasEmail": "mailto:[email protected]"
},
"distribution": [{
"@type": "dcat:Distribution",
"mediaType": "application/pdf",
"format": "pdf",
"title": "2015 GSA Common Baseline Implementation Plan and CIO Assignment Plan",
"description": "This is GSA's 2015 Common Baseline Implementation Plan and its CIO Assignment Plan per the requirements set forth in FITARA legislation. Updated April 2017. Last Major Change to version updated on March 4, 2019. Last Major change to version update on 8/5/2020. Last Major change to version update on 03/24/2022. Updated on 3/14/23 to add roles of SAOP and CPO to personnel list. Also updated new CTO name and contact info. Updated 5/11/2023 to add acting roles and delegation of authorities link.",
"downloadURL": "https://inventory.data.gov/dataset/64c56cec-4b8f-44c7-ba69-090517f9f32e/resource/87e53999-aff1-4560-8bf0-42d9dc8e4a69/download/2015gsafitaraimplementationandcioassignmentplan.pdf"
}
],
"keyword": ["Assignment Plan", "CIO", "Common Baseline", "FITARA", "GSA IT", "Implementation Plan"],
"bureauCode": ["023:00"],
"programCode": ["023:000"],
"theme": ["IT Initiatives"]
}, {
"@type": "dcat:Dataset",
"title": "Acquisition Gateway Document Library API",
"description": "In addition to being published and available at Document Library, the documents for hallways.cap.gsa.gov is also available via APIs.",
"modified": "2022-08-04T13:52:48.671Z",
"accessLevel": "public",
"identifier": "GSA-2022-08-04-02",
"rights": "true",
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration",
"subOrganizationOf": {
"@type": "org:Organization",
"name": "General Services Administration"
}
},
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Farbod Sedghi",
"hasEmail": "mailto:[email protected]"
},
"distribution": [{
"@type": "dcat:Distribution",
"accessURL": "https://open.gsa.gov/api/ag-api/",
"title": "Acquisition Gateway Document Library API"
}
],
"keyword": ["acquisition", "api"],
"bureauCode": ["015:11"],
"programCode": ["015:001"],
"language": ["en-US"]
}, {
"@type": "dcat:Dataset",
"title": "Acquisition Workforce Annual Report 2006",
"description": "This is the Federal Acquisition Institute's (FAI's) Annual demographic report on the Federal acquisition workforce, showing trends by occupational series, employment grade and educational level, as well as turnover and hiring data for fiscal year (FY) 2006.",
"modified": "2009-01-31",
"accessLevel": "public",
"identifier": "GSA-4733",
"dataQuality": true,
"describedBy": "http://www.fai.gov/fapis.asp",
"issued": "2009-01-31",
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"rights": "N/A",
"spatial": "US domestic",
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"accrualPeriodicity": "R/P1Y",
"contactPoint": {
"@type": "vcard:Contact",
"fn": "John P Andre",
"hasEmail": "mailto:[email protected]"
},
"distribution": [{
"@type": "dcat:Distribution",
"mediaType": "application/pdf",
"format": "pdf",
"title": "Acquisition Workforce Annual Report 2006",
"downloadURL": "http://www.fai.gov/pdfs/FAI%20Report%202007r.pdf"
}
],
"keyword": ["Federal acquisition workforce report", "Federal acquisition workforce statistics"],
"bureauCode": ["023:00"],
"programCode": ["023:007"],
"language": ["en-us"],
"theme": ["Acquisition"]
}, {
"@type": "dcat:Dataset",
"title": "Acquisition Workforce Annual Report 2008",
"description": "This is the Federal Acquisition Institute's (FAI's) Annual demographic report on the Federal acquisition workforce, showing trends by occupational series, employment grade and educational level, as well as turnover and hiring data for fiscal year (FY) 2008.",
"modified": "2009-01-31",
"accessLevel": "public",
"identifier": "GSA-4732",
"dataQuality": true,
"describedBy": "http://www.fai.gov/fapis.asp",
"issued": "2009-01-31",
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"rights": "N/A",
"spatial": "US domestic",
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"accrualPeriodicity": "R/P1Y",
"contactPoint": {
"@type": "vcard:Contact",
"fn": "John P Andre",
"hasEmail": "mailto:[email protected]"
},
"distribution": [{
"@type": "dcat:Distribution",
"mediaType": "application/pdf",
"format": "pdf",
"title": "Acquisition Workforce Annual Report 2008",
"downloadURL": "http://www.fai.gov/pdfs/FAI%20Annual%20Report_Final_29%20Jul%202009_v2.pdf"
}
],
"keyword": ["Federal acquisition workforce report", "Federal acquisition workforce statistics"],
"bureauCode": ["023:00"],
"programCode": ["023:007"],
"language": ["en-us"],
"theme": ["Acquisition"]
}, {
"@type": "dcat:Dataset",
"title": "American Job Center Resource API",
"description": "American Job Center partners with O'Net to provide a variety of APIs useful for jobseekers.",
"modified": "2015-11-16",
"accessLevel": "public",
"identifier": "GSA - 138668",
"dataQuality": true,
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"rights": "N/A",
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"accrualPeriodicity": "R/P1Y",
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Darlene S Meskell",
"hasEmail": "mailto:[email protected]"
},
"distribution": [{
"@type": "dcat:Distribution",
"mediaType": "text/html",
"format": "text/html",
"title": "American Job Center Resource API",
"downloadURL": "http://jobcenter.usa.gov/apis"
}
],
"keyword": ["American Job Center", "Job", "Resource Center"],
"bureauCode": ["023:30"],
"programCode": ["023:019"],
"language": ["en-us"],
"theme": ["API"]
}, {
"@type": "dcat:Dataset",
"title": "Annual Reports",
"description": "These reports provide GSA financial and performance information, enabling the assessment of agency performance (Agency Financial Reports, Peformance and Accountability Reports, Citizen Reports, Annual Performance Reports)",
"modified": "2014-11-11",
"accessLevel": "public",
"identifier": "GSA - 32792",
"dataQuality": true,
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"rights": "N/A",
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"accrualPeriodicity": "R/P1Y",
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Vivi D Tran-Chu",
"hasEmail": "mailto:[email protected]"
},
"distribution": [{
"@type": "dcat:Distribution",
"mediaType": "text/html",
"format": "html",
"title": "Annual Reports",
"downloadURL": "http://www.gsa.gov/portal/category/26851"
}
],
"keyword": ["Agency Financial Report AFR", "Annual Performance Reports", "Citizens Reports", "Performance and Accountability Reports PAR"],
"bureauCode": ["023:30"],
"programCode": ["023:014"],
"language": ["en-us"],
"theme": ["Other"]
}, {
"@type": "dcat:Dataset",
"title": "Api.Data.Gov Admin API",
"description": "api.data.gov is a free API management service for federal agencies. The api.data.gov Admin API implements the API Umbrella Admin API and can be used by api.data.gov agency admins to perform admin operations and to query their API analytics.",
"modified": "2022-08-04T13:55:54.294Z",
"accessLevel": "public",
"identifier": "GSA-2022-08-04-03",
"rights": "true",
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration",
"subOrganizationOf": {
"@type": "org:Organization",
"name": "General Services Administration"
}
},
"contactPoint": {
"@type": "vcard:Contact",
"fn": "API Team",
"hasEmail": "mailto:[email protected]"
},
"distribution": [{
"@type": "dcat:Distribution",
"accessURL": "https://open.gsa.gov/api/apidatagov/",
"title": "Api.Data.Gov Admin API"
}
],
"keyword": ["api", "data"],
"bureauCode": ["015:11"],
"programCode": ["015:001"],
"language": ["en-US"]
}, {
"@type": "dcat:Dataset",
"title": "Api.Data.Gov Metrics API",
"description": "api.data.gov is a free API management service for federal agencies. This API offers access to high level metrics for the APIs that are using the shared service.\n\nThis API is used to power the api.data.gov metrics page.",
"modified": "2022-07-11T14:15:09.532Z",
"accessLevel": "public",
"identifier": "GSA-2022-07-11-01",
"rights": "true",
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration",
"subOrganizationOf": {
"@type": "org:Organization",
"name": "General Services Administration"
}
},
"contactPoint": {
"@type": "vcard:Contact",
"fn": "API Help Team",
"hasEmail": "mailto:[email protected]"
},
"distribution": [{
"@type": "dcat:Distribution",
"accessURL": "https://open.gsa.gov/api/apidatagov-metrics/#overview",
"title": "Api.Data.Gov Metrics API"
}
],
"keyword": ["api"],
"bureauCode": ["015:11"],
"programCode": ["015:001"],
"language": ["en-US"]
}, {
"@type": "dcat:Dataset",
"title": "GSA Auctions",
"description": "The General Services Administration (GSA) has a history of pioneering electronic solutions for streamlining and enhancing the management of excess and surplus Federal assets. GSA continued the transformation of the Federal disposal process throughout the late 1990s with the introduction and subsequent refinement of the Federal Disposal System, a centralized electronic clearinghouse for reporting and transferring excess/surplus personal property within the Federal community and among eligible donees.\n\nThe GSA Auctions website (www.gsaauctions.gov) has been developed to complete GSA's transformation to an all-electronic asset management system. The site offers the general public the opportunity to bid electronically on a wide array of Federal assets. The auctions are completely web-enabled, allowing all registered participants to bid on a single item or multiple items (lots) within specified timeframes.\n\nGSA Auctions offers Federal personal property assets ranging from commonplace items (such as office equipment and furniture) to more select products like scientific equipment, heavy machinery, airplanes, vessels, and vehicles. GSA Auctions online capabilities allow GSA to offer assets located across the country to any interested buyer, regardless of location.\n\nParticipants may choose to browse items that are offered on this site or may choose to search for items and place bids. In order to place a bid(s), participants must register first. To register, please go to the GSA Auctions homepage and click on register.",
"modified": "2022-02-02T17:44:18.543Z",
"accessLevel": "public",
"identifier": "GSA-4145",
"dataQuality": true,
"describedBy": "https://www.asap.gsa.gov/datagov/auctions/auctions-data-dictionary.html",
"describedByType": "text/html",
"issued": "2010-11-23",
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"rights": "true",
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"accrualPeriodicity": "R/P1Y",
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Mike Wycoff",
"hasEmail": "mailto:[email protected]"
},
"distribution": [{
"@type": "dcat:Distribution",
"accessURL": "https://gsaauctions.gov/gsaauctions/gsaauctions/",
"format": "html",
"title": "GSA Auctions",
"description": "GSA Auctions offers Federal personal property assets ranging from commonplace items (such as office equipment and furniture) to more select products like scientific equipment, heavy machinery, airplanes, vessels, and vehicles. GSA Auctions online capabilities allow GSA to offer assets located across the country to any interested buyer, regardless of location."
}
],
"keyword": ["Agricultural Equipment and Supplies", "Aircraft and Aircraft Parts", "Artifacts Jewelry and Exotic Collectibles", "Boats and Marine Equipment", "Communication Equipment", "Construction Equipment", "Electrical and Electronic Equipment and Components", "Fire Trucks and Fire Fighting Equipment", "Hand Tools and Shop Equipment", "Household and Personal", "Industrial Machinery", "Lab Equipment", "Medical Dental and Veterinary Equipment and Supplies", "Miscellaneous", "Motorcycles and Bicycles", "NASA Shuttle and Hubble", "Office Equipment and Supplies", "Photographic Equipment", "Trailers Tractors and Manufactured Housing", "Vehichles", "furniture", "real estate"],
"bureauCode": ["015:11"],
"programCode": ["015:001"],
"language": ["en-us"]
}, {
"@type": "dcat:Dataset",
"title": "Auctions API",
"description": "GSA Auctions offers Federal personal property assets ranging from common place items (such as office equipment and furniture) to more select products like scientific equipment, heavy machinery, airplanes, vessels and vehicles. GSA Auctions\u2019 online capabilities allow GSA to offer assets located across the country to any interested buyer, regardless of location. Build your own tools using our API to access GSA Auctions listings. The Auctions API is a GET API which has currently one operation. The operation will retrieve GSA Auctions data. The output data will be in XML and JSON format. These files are downloadable. The data in the API output file is live data.",
"modified": "2018-09-24",
"accessLevel": "public",
"identifier": "GSA-2015-11-09-01",
"dataQuality": true,
"license": "http://creativecommons.org/publicdomain/zero/1.0/",
"spatial": "National",
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"accrualPeriodicity": "R/PT1S",
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Cindy A Smith",
"hasEmail": "mailto:[email protected]"
},
"distribution": [{
"@type": "dcat:Distribution",
"mediaType": "application/json",
"format": "json",
"title": "Auctions API",
"description": "GSA Auctions API is a public GET API. The Auction listings will be delivered to the user in two formats. One is JSON and the other one is XML. The auction listings delivered thru the API contains the auction listings from all the participating agencies.\r\n\r\nThe output data will be in XML and JSON format. These files are downloadable. The data in the API output file is live data.",
"downloadURL": "http://gsa.github.io/auctions_api/"
}
],
"keyword": ["API", "Assets", "Auctions", "Federal Personal Property"],
"bureauCode": ["023:30"],
"programCode": ["023:009"],
"language": ["us-en"],
"theme": ["Auctions"]
}, {
"@type": "dcat:Dataset",
"title": "Award Exploration Tool",
"description": "Interactive query tool designed to support in-depth data exploration and exports; users are able to search for specific award records, query expiring contracts, and export line item data with added Category Management enrichments such as Level 1/2 categories, SUM Tier, Addressable BIC / Tier 2 Contract, Contract Name (if applicable).",
"modified": "2021-03-30T15:14:53.668Z",
"accessLevel": "public",
"identifier": "GSA-2021-03-30-03",
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"rights": "true",
"publisher": {
"@type": "org:Organization",
"name": "Federal Acquisition Service",
"subOrganizationOf": {
"@type": "org:Organization",
"name": "General Services Administration"
}
},
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Kristen Wilson",
"hasEmail": "mailto:[email protected]"
},
"distribution": [{
"@type": "dcat:Distribution",
"mediaType": "text/html",
"format": "html",
"title": "Award Exploration Tool",
"downloadURL": "https://d2d.gsa.gov/report/government-wide-category-management-contract-management-and-operational-reporting-tools"
}
],
"keyword": ["award", "category management", "contract", "exploration", "obligation", "vendor"],
"bureauCode": ["015:11"],
"programCode": ["015:001"],
"language": ["en-US"]
}, {
"@type": "dcat:Dataset",
"title": "Broker Services",
"description": "The Center for Broker Services provides lease workload support services to GSA to create more efficient building space solutions by awarding and administering collections of multiple, zonal Indefinite Delivery/Indefinite Quantity (IDIQ) contracts that engage the services of commercial real estate brokers. Past contracts included National Broker Contracts (NBC), NBC2, and GSA Leasing Support Services (GLS).\n\nOur current contract, GLS Plus, emphasizes saving public funds, improving customer experience from requirements development through occupancy, and leveraging private-sector expertise.\n\nGLS Plus saves money with more efficient broker performance through extensive customer planning efforts, closer adherence to project schedules and costs, and providing continued opportunities for small businesses. We have increased the use of brokers under GLS Plus with enhanced pre- and post-award services and have integrated virtual market tours and analytical tools.",
"modified": "2022-09-30T14:47:29.381Z",
"accessLevel": "public",
"identifier": "GSA-2020-09-30-03",
"rights": "true",
"publisher": {
"@type": "org:Organization",
"name": "Public Buildings Service",
"subOrganizationOf": {
"@type": "org:Organization",
"name": "General Services Administration"
}
},
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Matt Crothers",
"hasEmail": "mailto:[email protected]"
},
"distribution": [{
"@type": "dcat:Distribution",
"accessURL": "https://www.gsa.gov/real-estate/real-estate-services/leasing/broker-services",
"title": "Broker Services"
}
],
"keyword": ["broker", "pbs"],
"bureauCode": ["015:11"],
"programCode": ["015:001"],
"language": ["en-US"]
}, {
"@type": "dcat:Dataset",
"title": "Bureau IT Leadership Directory",
"description": "Json file for Bureau IT Leadership Directory",
"modified": "2015-09-01",
"accessLevel": "public",
"identifier": "GSA-2015-09-01-02",
"dataQuality": true,
"issued": "2015-09-01",
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"accrualPeriodicity": "R/P3M",
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Jonah M Hatfield",
"hasEmail": "mailto:[email protected]"
},
"distribution": [{
"@type": "dcat:Distribution",
"accessURL": "http://www.gsa.gov/largedocs/bureaudirectory.json",
"format": "json",
"title": "Bureau IT Leadership",
"description": "Json file for Bureau IT Leadership"
}
],
"keyword": ["Bureau", "IT", "Leadership"],
"bureauCode": ["023:00"],
"programCode": ["023:014"],
"language": ["en-us"],
"theme": ["Json file"]
}, {
"@type": "dcat:Dataset",
"title": "Capital Investment and Leasing Program Prospectus Library",
"description": "We work closely with the Office of Management and Budget, the Senate Committee on Environment and Public Works, and the House Committee on Transportation and Infrastructure to prepare and review prospectuses for capital and leasing projects that require funding in excess of the established annual prospectus threshold. These projects, as approved by Congress, help to maintain and improve federal building's across the country.",
"modified": "2022-09-30T14:38:26.368Z",
"accessLevel": "public",
"identifier": "GSA-2022-09-30-01",
"rights": "true",
"publisher": {
"@type": "org:Organization",
"name": "Public Buildings Service",
"subOrganizationOf": {
"@type": "org:Organization",
"name": "General Services Administration"
}
},
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Matt Crothers",
"hasEmail": "mailto:[email protected]"
},
"distribution": [{
"@type": "dcat:Distribution",
"accessURL": "https://www.gsa.gov/real-estate/gsa-properties/capital-investment-and-leasing-program-prospectus-library",
"title": "Capital Investment and Leasing Program Prospectus Library"
}
],
"keyword": ["capital investment", "leasing", "pbs"],
"bureauCode": ["015:11"],
"programCode": ["015:001"],
"language": ["en-US"]
}, {
"@type": "dcat:Dataset",
"title": "Capital Projects Application (CPA)",
"description": "Capital Projects application (CPA) provides users with the ability to maintain project related financial data for Budget Activity (BA) 51, 55, 64, 01, 02, 03, 04. CPA maintains extensive project related data for single year and multiple year funded projects for these budget activities. CPA maintains transaction details of the amount appropriated and obligated over the course of the project at the project level. The information contained in CPA is used daily by field personnel and serves as the system of record when responding to Office of management and Budget (OMB) and Congress. CPA interfaces with Business Information System (BIS) and performs daily downloads of obligation data for BA51, BA55, BA64, BA01, BA02, BA03, BA04, segmented by budget activity, region, and project status and type. Accessible through the PBS Portal CPA data elements include Region, Projects Number, Project Name/Location, Status, Project Manager, Balance Amounts, and Authorization/Schedules for single and multiple year funds projects.",
"modified": "2015-09-10",
"accessLevel": "non-public",
"identifier": "GSA-4722",
"dataQuality": true,
"describedBy": "http://www.gsa.gov/dg/CPA_DataDictionary.docx",
"issued": "2011-03-24",
"license": "http://www.usa.gov/publicdomain/label/1.0/",
"rights": "Trade secrets & commercial/financial info obtained from a person and privileged or confidential.",
"spatial": "United States",
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"accrualPeriodicity": "R/P1M",
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Justin M Pinkney",
"hasEmail": "mailto:[email protected]"
},
"keyword": ["Activity", "Alterations", "Budget", "Construction", "Historic Preservation", "Project", "Repairs", "Reporting"],
"bureauCode": ["023:05"],
"programCode": ["023:014"],
"language": ["en-us"],
"theme": ["Real Estate"]
}, {
"@type": "dcat:Dataset",
"title": "Assistance Listings at beta.SAM.gov (formerly CFDA)",
"description": "The federal government provides assistance to the American public in the form of projects, services, and activities. It supports a broad range of programs such as education, health care, research, infrastructure, economic development and other programs through grants, loans, scholarships, insurance, and other types of financial assistance.\r\n\r\nAssistance Listings at beta.SAM.gov provides detailed, public descriptions of federal assistance listings available to State and Local governments (including the District of Columbia); federally recognized Indian tribal governments, Territories (and possessions) of the United States; domestic public, quasi- public, and private profit and nonprofit organizations and institutions; specialized groups, and individuals.",
"modified": "2010-07-16",
"accessLevel": "public",
"identifier": "GSA-1423",
"dataQuality": true,
"describedBy": "http://www.cfda.gov",
"issued": "2010-01-14",
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"rights": "N/A",
"spatial": "National",
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Michael Stephenson",
"hasEmail": "mailto:[email protected]"
},
"distribution": [{
"@type": "dcat:Distribution",
"accessURL": "https://s3.amazonaws.com/falextracts/Assistance%20Listings/datagov/AssistanceListings_DataGov_PUBLIC_CURRENT.csv",
"format": "bin",
"title": "Assistance Listings in beta.SAM.gov (formerly CFDA)",
"description": "The Federal Government provides assistance to the American Public in the form of projects, services, and activities."
}
],
"keyword": ["Assistance Listings", "CFDA", "Economic Development", "Education", "Federal", "Financial Assistance", "Grants", "Health Care", "Insurance", "Loans", "Local Government", "Nonprofit Organizations", "Private Profit", "Projects", "Research", "Scholarships", "Services", "State Government"],
"bureauCode": ["023:00"],
"programCode": ["023:016"],
"language": ["en-us"],
"theme": ["Other"]
}, {
"@type": "dcat:Dataset",
"title": "Category Management (CM) Plan Workbench",
"description": "This workbook is a series of tools for Departments to use for their planning of the next FY for Category Management purposes; contract shifting from Tier 0 to Managed tiers, etc.",
"modified": "2021-07-16T16:59:04.037Z",
"accessLevel": "public",
"identifier": "GSA-2021-07-16-01",
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"rights": "true",
"publisher": {
"@type": "org:Organization",
"name": "Federal Acquisition Service",
"subOrganizationOf": {
"@type": "org:Organization",
"name": "General Services Administration"
}
},
"contactPoint": {
"@type": "vcard:Contact",
"fn": "David Dixon",
"hasEmail": "mailto:[email protected]"
},
"distribution": [{
"@type": "dcat:Distribution",
"mediaType": "text/html",
"format": "html",
"title": "Category Management (CM) Plan Workbench",
"downloadURL": "https://d2d.gsa.gov/report/government-wide-category-management-contract-management-and-operational-reporting-tools"
}
],
"keyword": ["FPDS", "FY Plan", "Spend Under Management", "obligation"],
"bureauCode": ["015:11"],
"programCode": ["015:001"],
"language": ["en-US"]
}, {
"@type": "dcat:Dataset",
"title": "CIO Governance Board Membership List",
"description": "Json file for CIO Governance Board Membership List",
"modified": "2015-09-01",
"accessLevel": "public",
"identifier": "GSA-2015-09-01-01",
"dataQuality": true,
"issued": "2015-09-01",
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"accrualPeriodicity": "R/P3M",
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Jonah M Hatfield",
"hasEmail": "mailto:[email protected]"
},
"distribution": [{
"@type": "dcat:Distribution",
"accessURL": "http://www.gsa.gov/largedocs/governanceboards.json",
"format": "json",
"title": "Governance Board",
"description": "CIO Governance Board Membership List"
}
],
"keyword": ["Board", "CIO", "Governance", "List", "Membership"],
"bureauCode": ["023:00"],
"programCode": ["023:014"],
"language": ["en-us"],
"theme": ["Json File"]
}, {
"@type": "dcat:Dataset",
"title": "Citizenscience.gov Catalog",
"description": "The complete dataset of all citizen science and crowdsourcing projects maintained and updated dynamically on https://citizenscience.gov",
"modified": "2019-06-14",
"accessLevel": "public",
"identifier": "GSA-2019-06-14-01",
"dataQuality": true,
"issued": "2019-06-14",
"landingPage": "https://citizenscience.gov",
"spatial": "United States",
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"accrualPeriodicity": "R/PT1H",
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Citizen Science Team",
"hasEmail": "mailto:[email protected]"
},
"distribution": [{
"@type": "dcat:Distribution",
"mediaType": "application/json",
"format": "json",
"title": "JSON feed",
"downloadURL": "https://www.citizenscience.gov/data.json"
}, {
"@type": "dcat:Distribution",
"mediaType": "text/csv",
"format": "csv",
"title": "CSV feed",
"downloadURL": "https://www.citizenscience.gov/feed.csv"
}, {
"@type": "dcat:Distribution",
"mediaType": "text/html",
"format": "html",
"title": "HTML",
"downloadURL": "https://www.citizenscience.gov/catalog/"
}
],
"keyword": ["citizenscience", "crowdsourcing", "science"],
"bureauCode": ["023:00"],
"programCode": ["023:000"],
"language": ["us-EN"]
}, {
"@type": "dcat:Dataset",
"title": "City Pair Program (CSV)",
"description": "This csv file provides access to the City Pair Program FY15 Award data.",
"modified": "2015-05-19",
"accessLevel": "public",
"identifier": "GSA - 155327",
"dataQuality": true,
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"accrualPeriodicity": "R/P1Y",
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Patrick Sok Son",
"hasEmail": "mailto:[email protected]"
},
"distribution": [{
"@type": "dcat:Distribution",
"mediaType": "text/csv",
"format": "csv",
"title": "City Pairs - FY15 Contract Awards",
"downloadURL": "https://apps.fas.gsa.gov/citypairs/createcsv.cfm?runsched=yes&award_year=2015"
}
],
"keyword": ["City Pair Program"],
"bureauCode": ["023:00"],
"programCode": ["023:010"],
"language": ["en-us"],
"theme": ["Travel"]
}, {
"@type": "dcat:Dataset",
"title": "City Pair Program",
"description": "The City Pair Program offers discounted air passenger transportation for federal government travelers. The airfares offered under this program are discounted considerably off of comparable commercial fares, saving the federal government and taxpayers billions of dollars annually. In addition, these contracted annual fares enable government agencies to project travel costs and forecast their travel budgets more accurately.",
"modified": "2013-09-30",
"accessLevel": "public",
"identifier": "GSA - 138584",
"dataQuality": true,
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"rights": "N/A",
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"accrualPeriodicity": "R/P1Y",
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Jerome Charles Bristow",
"hasEmail": "mailto:[email protected]"
},
"distribution": [{
"@type": "dcat:Distribution",
"mediaType": "text/html",
"format": "text/html",
"title": "City Pair Program",
"downloadURL": "http://gsa.gov/portal/category/27093"
}
],
"keyword": ["CPP", "City Pair Program", "Travel"],
"bureauCode": ["023:00"],
"programCode": ["023:010"],
"language": ["en-us"],
"theme": ["Travel and Transportation"]
}, {
"@type": "dcat:Dataset",
"title": "Commercial Platforms Sales Data",
"description": "A aggregate collection of Commercial Platforms sales across all platforms",
"modified": "2021-07-29T16:44:06.857Z",
"accessLevel": "non-public",
"identifier": "GSA-2021-07-29-01",
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"rights": "Vendor sensitive",
"publisher": {
"@type": "org:Organization",
"name": "Federal Acquisition Service",
"subOrganizationOf": {
"@type": "org:Organization",
"name": "General Services Administration"
}
},
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Stephanie Fultz",
"hasEmail": "mailto:[email protected]"
},
"distribution": [{
"@type": "dcat:Distribution",
"accessURL": "https://d2d.gsa.gov/report/fas-commercial-platforms-government-wide-operational-dashboard",
"title": "Commercial Platforms Sales Data",
"description": "A aggregate collection of Commercial Platforms sales across all platforms"
}
],
"keyword": ["Commercial Platforms", "Micropurchase"],
"bureauCode": ["015:11"],
"programCode": ["015:001"],
"language": ["en-US"]
}, {
"@type": "dcat:Dataset",
"title": "Common and Defense Centric Spend Tables",
"description": "Top-level view of annual Obligation totals for Categories and Subcategories. Also includes Small Business utilization. The only GWCM Dashboard that includes all 19 Lv1 categories (the other dashboards only include common-spend categories).",
"modified": "2021-07-16T17:21:58.837Z",
"accessLevel": "public",
"identifier": "GSA-2021-07-16-02",
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"rights": "true",
"publisher": {
"@type": "org:Organization",
"name": "Federal Acquisition Service",
"subOrganizationOf": {
"@type": "org:Organization",
"name": "General Services Administration"
}
},
"contactPoint": {
"@type": "vcard:Contact",
"fn": "David Dixon",
"hasEmail": "mailto:[email protected]"
},
"distribution": [{
"@type": "dcat:Distribution",
"accessURL": "https://d2d.gsa.gov/report/government-wide-category-management-oversight-performance-management-tools",
"title": "Common and Defense Centric Spend Tables",
"description": "Top-level view of annual Obligation totals for Categories and Subcategories. Also includes Small Business utilization. The only GWCM Dashboard that includes all 19 Lv1 categories (the other dashboards only include common-spend categories)."
}
],
"keyword": ["FPDS", "obligation", "small business"],
"bureauCode": ["015:11"],
"programCode": ["015:001"],
"language": ["en-US"]
}, {
"@type": "dcat:Dataset",
"title": "Concur - Reporting Authorization Model",
"description": "The data dictionary for the reporting authorization model within Concur.",
"modified": "2016-02-23",
"accessLevel": "non-public",
"identifier": "GSA - 139042",
"dataQuality": true,
"license": "http://www.usa.gov/publicdomain/label/1.0/",
"rights": "Trade secrets & commercial/financial info obtained from a person and privileged or confidential.",
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"accrualPeriodicity": "R/P1Y",
"isPartOf": "GSA-2015-09-11-01",
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Norma H Tolson",
"hasEmail": "mailto:[email protected]"
},
"keyword": ["Credit Card", "purchase card", "travel card"],
"bureauCode": ["023:00"],
"programCode": ["023:010"],
"language": ["en-us"],
"theme": ["Travel and Transportation"]
}, {
"@type": "dcat:Dataset",
"title": "Concur - Reporting Travel Model",
"description": "The data dictionary for the reporting travel model within Concur.",
"modified": "2016-01-20",
"accessLevel": "non-public",
"identifier": "GSA - 139046",
"dataQuality": true,
"license": "http://www.usa.gov/publicdomain/label/1.0/",
"rights": "Trade secrets & commercial/financial info obtained from a person and privileged or confidential.",
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"accrualPeriodicity": "R/P1Y",
"isPartOf": "GSA-2015-09-11-01",
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Norma H Tolson",
"hasEmail": "mailto:[email protected]"
},
"keyword": ["Credit Card", "travel card"],
"bureauCode": ["023:00"],
"programCode": ["023:010"],
"language": ["en-us"],
"theme": ["Travel and Transportation"]
}, {
"@type": "dcat:Dataset",
"title": "Concur - Reporting User Profile Folder",
"description": "The data dictionary for the reporting user profile folder within Concur.",
"modified": "2016-02-23",
"accessLevel": "non-public",
"identifier": "GSA - 139047",
"dataQuality": true,
"license": "http://www.usa.gov/publicdomain/label/1.0/",
"rights": "Trade secrets & commercial/financial info obtained from a person and privileged or confidential.",
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"accrualPeriodicity": "R/P1Y",
"isPartOf": "GSA-2015-09-11-01",
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Norma H Tolson",
"hasEmail": "mailto:[email protected]"
},
"keyword": ["Credit Card", "Travel Card"],
"bureauCode": ["023:00"],
"programCode": ["023:010"],
"language": ["en-us"],
"theme": ["Travel and Transportation"]
}, {
"@type": "dcat:Dataset",
"title": "Concur - Reporting Voucher Model",
"description": "The data dictionary for the reporting voucher model within Concur.",
"modified": "2016-02-23",
"accessLevel": "non-public",
"identifier": "GSA - 139048",
"dataQuality": true,
"license": "http://www.usa.gov/publicdomain/label/1.0/",
"rights": "Trade secrets & commercial/financial info obtained from a person and privileged or confidential.",
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"accrualPeriodicity": "R/P1Y",
"isPartOf": "GSA-2015-09-11-01",
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Norma H Tolson",
"hasEmail": "mailto:[email protected]"
},
"keyword": ["Credit Card", "Travel Card"],
"bureauCode": ["023:00"],
"programCode": ["023:010"],
"language": ["en-us"],
"theme": ["Travel and Transportation"]
}, {
"@type": "dcat:Dataset",
"title": "Concur Travel Parent",
"description": "This is the Parent folder for Concur datasets reporting on; Closed-Paid Vouchers in Concur Government Edition (CGE), Authorization Model, Travel Model, User Profile, and Voucher Model.",
"modified": "2016-02-23",
"accessLevel": "non-public",
"identifier": "GSA-2015-09-11-01",
"dataQuality": true,
"license": "http://www.usa.gov/publicdomain/label/1.0/",
"rights": "Trade secrets & commercial/financial info obtained from a person and privileged or confidential.",
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"accrualPeriodicity": "R/P1Y",
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Norma H Tolson",
"hasEmail": "mailto:[email protected]"
},
"keyword": ["Authorization", "Closed", "Concur", "Paid", "Travel", "Voucher"],
"bureauCode": ["023:00"],
"programCode": ["023:010"],
"language": ["en-us"],
"theme": ["Travel and Transportation"]
}, {
"@type": "dcat:Dataset",
"title": "Contract Inventory Exploration Tool",
"description": "Simple reference for agency and category teams to search and export all tier rated contract information, including the enhanced fields used by the data team to determine the master and derivative contract information required to determine the appropriate tier level.",
"modified": "2021-03-30T15:24:06.013Z",
"accessLevel": "public",
"identifier": "GSA-2021-03-30-04",
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"rights": "true",
"publisher": {
"@type": "org:Organization",
"name": "Federal Acquisition Service",
"subOrganizationOf": {
"@type": "org:Organization",
"name": "General Services Administration"
}
},
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Kristen Wilson",
"hasEmail": "mailto:[email protected]"
},
"distribution": [{
"@type": "dcat:Distribution",
"mediaType": "text/html",
"format": "html",
"title": "Contract Inventory Exploration Tool",
"downloadURL": "https://d2d.gsa.gov/report/government-wide-category-management-contract-management-and-operational-reporting-tools"
}
],
"keyword": ["category management", "contract", "contract inventory", "exploration", "vendor"],
"bureauCode": ["015:11"],
"programCode": ["015:001"],
"language": ["en-US"]
}, {
"@type": "dcat:Dataset",
"title": "Contract Opportunities from SAM.gov",
"description": "Contract Opportunities data from SAM.gov",
"modified": "2022-08-04T13:47:28.294Z",
"accessLevel": "public",
"identifier": "GSA-2022-08-04-01",
"rights": "true",
"publisher": {
"@type": "org:Organization",
"name": "Federal Acquisition Service",
"subOrganizationOf": {
"@type": "org:Organization",
"name": "General Services Administration"
}
},
"contactPoint": {
"@type": "vcard:Contact",
"fn": "IAE Outreach",
"hasEmail": "mailto:[email protected]"
},
"distribution": [{
"@type": "dcat:Distribution",
"accessURL": "https://sam.gov/data-services/Contract%20Opportunities?privacy=Public",
"title": "Contract Opportunities"
}
],
"keyword": ["SAM.gov"],
"bureauCode": ["015:11"],
"programCode": ["015:001"],
"language": ["en-US"]
}, {
"@type": "dcat:Dataset",
"title": "COVID-19 Contract Obligation Tracking Dataset",
"description": "COVID-19 dashboard dataset provides all government-wide Emergency Acquisitions spending in support of the Novel Coronavirus Disease 2019 (COVID-19) pandemic.",
"modified": "2021-03-25T17:26:22.917Z",
"accessLevel": "public",
"identifier": "GSA-2021-03-22-01",
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"rights": "true",
"publisher": {
"@type": "org:Organization",
"name": "Federal Acquisition Service",
"subOrganizationOf": {
"@type": "org:Organization",
"name": "Federal Acquisition Service"
}
},
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Beang Tong",
"hasEmail": "mailto:[email protected]"
},
"distribution": [{
"@type": "dcat:Distribution",
"mediaType": "text/html",
"format": "HTML",
"title": "Covid-19 Contract Obligation Tracking Data Dictionary",
"downloadURL": "https://fpds.gov/wiki/index.php/V1.5_FPDS-NG_Data_Dictionary"
}, {
"@type": "dcat:Distribution",
"mediaType": "text/html",
"format": "html",
"title": "Covid-19 Contract Obligation Tracking Dataset",
"downloadURL": "https://d2d.gsa.gov/report/covid-19-contract-obligation-tracking-dashboard"