-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathdata.json
8549 lines (8549 loc) · 376 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.",
"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 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": "Auction Sale Data",
"description": "This dataset contains sale data information for Agency reported items sold via GSA Auctions® Sales. The data is for closed sales during FY2009. GSA Auctions® offers the 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. GSA Auctions® sale items include communications, computer, electric, electronic, agricultural, office, photographic, marine, laboratory, medical, dental and veterinary supplies and equipment; trailers, tractors, bicycles and salvage/scrap vehicles; furniture, household and personal items, industrial machinery, jewelry and collectibles. GSA Auctions® is accessible at http://www.gsaauctions.gov. Unregistered users may browse the site. Registration is required for bidders.",
"modified": "2010-11-23",
"accessLevel": "public",
"identifier": "GSA-4145",
"dataQuality": true,
"describedBy": "https://www.asap.gsa.gov/datagov/auctions/auctions-data-dictionary.html",
"issued": "2010-11-23",
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"rights": "N/A",
"spatial": "National",
"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",
"mediaType": "application/vnd.ms-excel",
"format": "xls",
"title": "Auction Sale Data",
"downloadURL": "https://www.asap.gsa.gov/datagov/auctions/auctions-data-fy2009.xls"
}
],
"keyword": ["ADP", "ADP Equipment", "Auctions", "Automobile", "Computer Equipment", "Furniture", "GSA Auctions", "GSA Auctions Sale Data", "GSA Sales Data", "Jewelry", "Motorcycles", "Property", "Property Data", "Property Sales Data", "Sales", "Trucks", "Vechicles"],
"bureauCode": ["023:30"],
"programCode": ["023:009"],
"language": ["en-us"],
"theme": ["Acquisition"]
}, {
"@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’ 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": "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 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": "Cash and Payments Management Data",
"description": "The Prompt Payment Act, along with the Debt Collection Improvement Act of 1996, requires the timely payment of commercial obligations for supplies and services using electronic funds transfer (EFT).",
"modified": "2015-11-16",
"accessLevel": "public",
"identifier": "GSA-1439",
"dataQuality": true,
"describedBy": "http://www.gsa.gov/Portal/gsa/ep/channelView.do?file=afr&ptitle=false&pageTypeId=8199&channelId=-26403",
"issued": "2010-01-19",
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"rights": "N/A",
"spatial": "National",
"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": "application/zip",
"format": "csv",
"title": "Cash and Payments Management Data",
"downloadURL": "http://www.gsa.gov/graphics/admin/CashandPaymentsManagement2007-2009.zip"
}
],
"keyword": ["Agency Financial Report AFR", "Budgeting", "Cash and Payments Management", "Controller", "Financial", "Interactive", "Interest", "Invoice", "Performance"],
"bureauCode": ["023:30"],
"programCode": ["023:016"],
"language": ["en-us"],
"theme": ["Other"]
}, {
"@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": "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": "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": "Data.gov CKAN API",
"description": "The data.gov catalog is powered by CKAN, a powerful open source data platform that includes a robust API. Please be aware that data.gov and the data.gov CKAN API only contain metadata about datasets. This metadata includes URLs and descriptions of datasets, but it does not include the actual data within each dataset.",
"modified": "2018-09-24",
"accessLevel": "public",
"identifier": "GSA-2015-11-09-02",
"dataQuality": true,
"landingPage": "https://www.data.gov/developers/harvesting",
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"publisher": {
"@type": "org:Organization",
"name": "Data.gov",
"subOrganizationOf": {
"@type": "org:Organization",
"name": "Technology Transformation Service",
"subOrganizationOf": {
"@type": "org:Organization",
"name": "General Services Administration"
}
}
},
"accrualPeriodicity": "R/P1M",
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Hyon Kim",
"hasEmail": "mailto:[email protected]"
},
"distribution": [{
"@type": "dcat:Distribution",
"accessURL": "http://www.data.gov/developers/apis",
"format": "JSON",
"title": "Data.gov CKAN API",
"description": "This metadata includes URLs and descriptions of datasets, but it does not include the actual data within each dataset."
}, {
"@type": "dcat:Distribution",
"mediaType": "application/gzip",
"format": "JSON",
"title": "Government-wide open data metadata bulk download",
"description": "This provides a bulk extract of all metadata stored in Data.gov for Federal datasets. The file is automatically generated monthly as an export from the CKAN API using the JSON Lines serialization format (jsonlines.org). This does not provide all metadata stored on Data.gov, only metadata for Federal datasets following the metadata guidelines described at http://www.digitalgov.gov/resources/how-to-get-your-open-data-on-data-gov/ \r\n\r\nThe compressed file is approximately 2.3GB.",
"downloadURL": "https://filestore.data.gov/gsa/catalog/jsonl/dataset.jsonl.gz"
}
],
"keyword": ["API", "CKAN", "DATA", "GOV"],
"bureauCode": ["023:00"],
"programCode": ["023:014"],
"language": ["us-en"],
"theme": ["API"]
}, {
"@type": "dcat:Dataset",
"title": "Data.gov Daily Sessions",
"description": "Data.gov Daily Sessions 20120101-20151231",
"modified": "2016-08-01",
"accessLevel": "public",
"identifier": "GSA - DATA.GOVMETRICS1",
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"isPartOf": "GSA-2015-09-14-01",
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Hyon Joo Kim",
"hasEmail": "mailto:[email protected]"
},
"distribution": [{
"@type": "dcat:Distribution",
"mediaType": "text/csv",
"title": "Data.gov Daily Sessions",
"description": "Data.gov Daily Sessions 20120101-20151231",
"downloadURL": "https://inventory.data.gov/dataset/e0de4198-eaaa-423a-9154-7af76ab8d822/resource/a78ae43e-0ceb-4f2d-83ac-99c61b249afa/download/analytics-www.data.gov-data.gov-daily-sessions-20120101-20151231---analytics-www.data.gov-data.g.csv"
}, {
"@type": "dcat:Distribution",
"mediaType": "text/csv",
"title": "Data.gov Daily Sessions Day Index",
"description": "Data.gov Daily Sessions 20120101-20151231 Day Index",
"downloadURL": "https://inventory.data.gov/dataset/e0de4198-eaaa-423a-9154-7af76ab8d822/resource/925f6204-5240-4dd1-8604-c279843c8974/download/analytics-www.data.gov-data.gov-daily-sessions-20120101-20151231b---sheet1.csv"
}
],
"keyword": ["Data.gov Analytics", "metrics"],
"bureauCode": ["023:00"],
"programCode": ["023:019"]
}, {
"@type": "dcat:Dataset",
"title": "Data.gov Daily Visitor Statistics - Archival",
"description": "This dataset provides distribution of daily visitors to the Data.gov site up to 2013.",
"modified": "2016-01-20",
"accessLevel": "public",
"identifier": "GSA-32441",
"dataQuality": true,
"describedBy": "http://www.data.gov/metric",
"describedByType": "text/csv",
"issued": "2013-04-11",
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"spatial": "Worldwide",
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"accrualPeriodicity": "R/P1D",
"isPartOf": "GSA-2015-09-14-01",
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Hyon Joo Kim",
"hasEmail": "mailto:[email protected]"
},
"distribution": [{
"@type": "dcat:Distribution",
"mediaType": "text/csv",
"format": "text/csv",
"title": "Data.gov_Daily_Visitor_Statistics.csv",
"downloadURL": "https://inventory.data.gov/dataset/2dc37fea-3afa-4f9d-93ef-5e11957a371b/resource/0f96083f-0089-4524-8574-8eec91e2a7f2/download/userssharedsdfdata.govdailyvisitorstatistics.csv"
}
],
"keyword": ["Daily", "Interactive", "Statistics", "Visitor"],
"bureauCode": ["023:00"],
"programCode": ["023:019"],
"language": ["us-EN"],
"theme": ["Visitors to Data.gov Site"]
}, {
"@type": "dcat:Dataset",
"title": "Data.gov Dataset Monthly Download Trends - Archival",
"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.",
"modified": "2016-01-20",
"accessLevel": "public",
"identifier": "GSA-32421",
"dataQuality": true,
"describedBy": "http://www.data.gov/metric",
"describedByType": "text/csv",
"issued": "2013-04-11",
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"spatial": "Worldwide",
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"accrualPeriodicity": "R/P1M",
"isPartOf": "GSA-2015-09-14-01",
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Hyon Joo Kim",
"hasEmail": "mailto:[email protected]"
},
"distribution": [{
"@type": "dcat:Distribution",
"mediaType": "text/csv",
"format": "text/csv",
"title": "Data.gov_Dataset_Monthly_Download_Trends.csv",
"downloadURL": "https://inventory.data.gov/dataset/3a69e635-ff9c-4bd9-8fb3-04f8ccb7b351/resource/06684cd2-f911-49e9-8d44-d4fe256b4882/download/userssharedsdfdata.govdatasetmonthlydownloadtrends.csv"
}
],
"keyword": ["Data.gov", "Dataset", "Downloads", "Interactive", "Monthly"],
"bureauCode": ["023:00"],
"programCode": ["023:019"],
"language": ["us-EN"],
"theme": ["Monthly Download Trends for Data.gov"]
}, {
"@type": "dcat:Dataset",
"title": "Data.gov Datasets Download By Data Category - Archival",
"description": "This dataset provides archival data on downloads for different data categories in Data.gov based on a previous dataset management system for Data.gov. Download represents the number of times a user has clicked on the XML or CSV (for example) links in the catalog to download datasets in these categories.",
"modified": "2016-01-20",
"accessLevel": "public",
"identifier": "GSA-32031",
"dataQuality": true,
"describedBy": "http://www.data.gov/metric",
"describedByType": "text/csv",
"issued": "2013-04-11",
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"spatial": "Worldwide",
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"accrualPeriodicity": "R/P1M",
"isPartOf": "GSA-2015-09-14-01",
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Hyon Joo Kim",
"hasEmail": "mailto:[email protected]"
},
"distribution": [{
"@type": "dcat:Distribution",
"mediaType": "text/csv",
"format": "text/csv",
"title": "Data.gov_Datasets_Download_By_Data_Category.csv",
"downloadURL": "https://inventory.data.gov/dataset/05c94390-bd32-4ae5-955e-6c812143a4fc/resource/5a64130b-d5d8-421b-9f2d-c8d6ff25b28b/download/userssharedsdfdata.govdatasetsdownloadbydatacategory.csv"
}
],
"keyword": ["Category", "Data.gov", "Interactive", "datasets", "download"],
"bureauCode": ["023:00"],
"programCode": ["023:019"],
"language": ["us-EN"],
"theme": ["Datasets download metrics"]
}, {
"@type": "dcat:Dataset",
"title": "Data.gov Datasets Uploaded by Agencies per Month - Archival",
"description": "This dataset provides count of datasets uploaded by agencies per month in Data.gov. This is from the prior dataset management system and not the current harvesting system for catalog.data.gov.",
"modified": "2016-01-20",
"accessLevel": "public",
"identifier": "GSA-32481",
"dataQuality": true,
"describedBy": "http://www.data.gov/metric",
"describedByType": "text/csv",
"issued": "2013-05-13",
"license": "https://creativecommons.org/publicdomain/zero/1.0",
"spatial": "United States",
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"accrualPeriodicity": "R/P1M",
"isPartOf": "GSA-2015-09-14-01",
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Hyon Joo Kim",
"hasEmail": "mailto:[email protected]"
},
"distribution": [{
"@type": "dcat:Distribution",
"mediaType": "text/csv",
"format": "text/csv",
"title": "Data.gov_Upld_By_Agencies_per_Month.csv",
"downloadURL": "https://inventory.data.gov/dataset/07db4fc0-3ab1-401a-bb77-7ce502d7dc1b/resource/8abf19fd-8d83-4eb0-a7cc-35d22c986673/download/userssharedsdfdata.govupldbyagenciespermonth.csv"
}
],
"keyword": ["agencies", "interactive data", "monthly", "uploaded"],
"bureauCode": ["023:00"],
"programCode": ["023:019"],
"language": ["us-EN"],
"theme": ["Datasets uploaded"]
}, {
"@type": "dcat:Dataset",
"title": "Data.gov Dataset Visitor Metrics",
"description": "The dataset provides metrics for the number of dataset views in catalog.data.gov broken down by month starting Jan 2014. There is a gap in the dataset for December 2016 due to a temporary halt in collection of metrics during infrastructure migration of the Data.gov site during that month.",
"modified": "2017-10-14",
"accessLevel": "public",
"identifier": "GSA - 139375",
"dataQuality": true,
"describedBy": "https://inventory.data.gov/dataset/data-gov-dataset-view-metrics",
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"accrualPeriodicity": "R/P1M",
"isPartOf": "GSA-2015-09-14-01",
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Hyon Kim",
"hasEmail": "mailto:[email protected]"
},
"distribution": [{
"@type": "dcat:Distribution",
"mediaType": "text/csv",
"format": "text/csv",
"title": "datagov_datasets_view_metrics.csv",
"description": "Data.gov Datasets View Metrics",
"downloadURL": "https://inventory.data.gov/dataset/e5ba009c-3e40-4f5a-b010-e294a8369ba4/resource/7385188a-84f1-4e1a-8e78-05e694b65bdf/download/datagovdatasetsviewmetrics.csv"
}
],
"keyword": ["Data", "Data.gov", "metrics"],
"bureauCode": ["023:00"],
"programCode": ["023:019"],
"language": ["us-en"],
"theme": ["Data metrics"]
}, {
"@type": "dcat:Dataset",
"title": "Data.gov Federal Agency Participation - Archival",
"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.",
"modified": "2016-01-20",
"accessLevel": "public",
"identifier": "GSA-32041",
"dataQuality": true,
"describedBy": "http://www.data.gov/metric",
"describedByType": "text/csv",
"issued": "2013-04-11",
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"spatial": "United States",
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"accrualPeriodicity": "R/P1M",
"isPartOf": "GSA-2015-09-14-01",
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Hyon Joo Kim",
"hasEmail": "mailto:[email protected]"
},
"distribution": [{
"@type": "dcat:Distribution",
"mediaType": "text/csv",
"format": "text/csv",
"title": "Data.gov_Federal_Agency_Participation.csv",
"downloadURL": "https://inventory.data.gov/dataset/f6f06df8-c102-4fe8-af31-c368be66166d/resource/d65072b5-08f0-4f90-bd57-65e731c59df2/download/userssharedsdfdata.govfederalagencyparticipation.csv"
}
],
"keyword": ["Agency interactive", "federal", "participation"],
"bureauCode": ["023:00"],
"programCode": ["023:019"],
"language": ["us-EN"],
"theme": ["Participation Federal"]
}, {
"@type": "dcat:Dataset",
"title": "Data.gov Monthly Page Views - Archival",
"description": "This dataset provides monthly page views in Data.gov up to 2013.",
"modified": "2016-01-20",
"accessLevel": "public",
"identifier": "GSA-32451",
"dataQuality": true,
"describedBy": "http://www.data.gov/metric",
"describedByType": "text/csv",
"issued": "2013-04-11",
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"spatial": "Worldwide",
"publisher": {
"@type": "org:Organization",
"name": "General Services Administration"
},
"accrualPeriodicity": "R/P1M",
"isPartOf": "GSA-2015-09-14-01",
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Hyon Joo Kim",
"hasEmail": "mailto:[email protected]"
},
"distribution": [{
"@type": "dcat:Distribution",
"mediaType": "text/csv",
"format": "text/csv",
"title": "Data.gov_Monthly_Page_Views.csv",
"downloadURL": "https://inventory.data.gov/dataset/bbde0832-623e-46df-90eb-2c033843cd00/resource/3b2d23db-82ab-44a5-8152-1d65a88be376/download/userssharedsdfdata.govmonthlypageviews.csv"
}
],
"keyword": ["interactive", "page", "views"],
"bureauCode": ["023:00"],
"programCode": ["023:019"],
"language": ["us-EN"],
"theme": ["Page Views Monthly"]
}, {
"@type": "dcat:Dataset",
"title": "Data.gov Monthly Visitor Statistics - Archival",
"description": "This dataset provides the number of visitors to Data.gov per month up to 2013.",
"modified": "2016-01-20",
"accessLevel": "public",
"identifier": "GSA-32431",
"dataQuality": true,
"describedBy": "http://www.data.gov/metric",
"describedByType": "text/csv",
"issued": "2013-04-11",