-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathraw_documents.json
More file actions
2631 lines (2631 loc) · 194 KB
/
Copy pathraw_documents.json
File metadata and controls
2631 lines (2631 loc) · 194 KB
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
{
"count": 974588,
"description": "All Documents",
"total_pages": 50,
"next_page_url": "https://www.federalregister.gov/api/v1/documents?date_from=2025-01-01&date_to=2025-05-09&format=json&page=2&per_page=100",
"results": [
{
"title": "Agency Information Collection Activities; Submission to the Office of Management and Budget (OMB) for Review and Approval; Comment Request; The American Community Survey (ACS) and Puerto Rico Community Survey (PRCS)",
"type": "Notice",
"abstract": null,
"document_number": "2025-08019",
"html_url": "https://www.federalregister.gov/documents/2025/05/08/2025-08019/agency-information-collection-activities-submission-to-the-office-of-management-and-budget-omb-for",
"pdf_url": "https://www.govinfo.gov/content/pkg/FR-2025-05-08/pdf/2025-08019.pdf",
"public_inspection_pdf_url": "https://public-inspection.federalregister.gov/2025-08019.pdf?1746621925",
"publication_date": "2025-05-08",
"agencies": [
{
"raw_name": "DEPARTMENT OF COMMERCE",
"name": "Commerce Department",
"id": 54,
"url": "https://www.federalregister.gov/agencies/commerce-department",
"json_url": "https://www.federalregister.gov/api/v1/agencies/54",
"parent_id": null,
"slug": "commerce-department"
},
{
"raw_name": "Census Bureau",
"name": "Census Bureau",
"id": 42,
"url": "https://www.federalregister.gov/agencies/census-bureau",
"json_url": "https://www.federalregister.gov/api/v1/agencies/42",
"parent_id": 54,
"slug": "census-bureau"
}
],
"excerpts": null
},
{
"title": "Agency Information Collection Activities; Comment Request; Rural Education Achievement Program: Small, Rural School Achievement Program and Rural and Low-Income School Program Application",
"type": "Notice",
"abstract": "In accordance with the Paperwork Reduction Act (PRA) of 1995, the Department is proposing an extension without change of a currently approved information collection request (ICR).",
"document_number": "2025-07979",
"html_url": "https://www.federalregister.gov/documents/2025/05/08/2025-07979/agency-information-collection-activities-comment-request-rural-education-achievement-program-small",
"pdf_url": "https://www.govinfo.gov/content/pkg/FR-2025-05-08/pdf/2025-07979.pdf",
"public_inspection_pdf_url": "https://public-inspection.federalregister.gov/2025-07979.pdf?1746621918",
"publication_date": "2025-05-08",
"agencies": [
{
"raw_name": "DEPARTMENT OF EDUCATION",
"name": "Education Department",
"id": 126,
"url": "https://www.federalregister.gov/agencies/education-department",
"json_url": "https://www.federalregister.gov/api/v1/agencies/126",
"parent_id": null,
"slug": "education-department"
}
],
"excerpts": "In accordance with the Paperwork Reduction Act (PRA) of 1995, the Department is proposing an extension without change of a currently approved information collection request (ICR)."
},
{
"title": "Tests Determined To Be Suitable for Use in the National Reporting System for Adult Education",
"type": "Notice",
"abstract": "The Secretary announces tests, test forms, and delivery formats that the Secretary determines to be suitable for use in the National Reporting System for Adult Education (NRS). The Secretary also announces an extension of the sunset period for two tests with National Reporting System for Adult Education (NRS) approvals that expired on February 5, 2025, and September 7, 2024. The sunset period for these tests is extended to June 30, 2026. This notice relates to the approved information collections under OMB control numbers 1830-0027 and 1830- 0567.",
"document_number": "2025-07974",
"html_url": "https://www.federalregister.gov/documents/2025/05/08/2025-07974/tests-determined-to-be-suitable-for-use-in-the-national-reporting-system-for-adult-education",
"pdf_url": "https://www.govinfo.gov/content/pkg/FR-2025-05-08/pdf/2025-07974.pdf",
"public_inspection_pdf_url": "https://public-inspection.federalregister.gov/2025-07974.pdf?1746621917",
"publication_date": "2025-05-08",
"agencies": [
{
"raw_name": "DEPARTMENT OF EDUCATION",
"name": "Education Department",
"id": 126,
"url": "https://www.federalregister.gov/agencies/education-department",
"json_url": "https://www.federalregister.gov/api/v1/agencies/126",
"parent_id": null,
"slug": "education-department"
}
],
"excerpts": "The Secretary announces tests, test forms, and delivery formats that the Secretary determines to be suitable for use in the National Reporting System for Adult Education (NRS). The Secretary also announces an extension of the sunset period for two..."
},
{
"title": "Notice of Inventory Completion: University of Florida, Florida Museum of Natural History, Gainesville, FL",
"type": "Notice",
"abstract": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the University of Florida, Florida Museum of Natural History (FLMNH) has completed an inventory of human remains and associated funerary objects and has determined that there is a cultural affiliation between the human remains and associated funerary objects and Indian Tribes or Native Hawaiian organizations in this notice.",
"document_number": "2025-08027",
"html_url": "https://www.federalregister.gov/documents/2025/05/08/2025-08027/notice-of-inventory-completion-university-of-florida-florida-museum-of-natural-history-gainesville",
"pdf_url": "https://www.govinfo.gov/content/pkg/FR-2025-05-08/pdf/2025-08027.pdf",
"public_inspection_pdf_url": "https://public-inspection.federalregister.gov/2025-08027.pdf?1746621926",
"publication_date": "2025-05-08",
"agencies": [
{
"raw_name": "DEPARTMENT OF THE INTERIOR",
"name": "Interior Department",
"id": 253,
"url": "https://www.federalregister.gov/agencies/interior-department",
"json_url": "https://www.federalregister.gov/api/v1/agencies/253",
"parent_id": null,
"slug": "interior-department"
},
{
"raw_name": "National Park Service",
"name": "National Park Service",
"id": 362,
"url": "https://www.federalregister.gov/agencies/national-park-service",
"json_url": "https://www.federalregister.gov/api/v1/agencies/362",
"parent_id": 253,
"slug": "national-park-service"
}
],
"excerpts": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the University of Florida, Florida Museum of Natural History (FLMNH) has completed an inventory of human remains and associated funerary objects and has determined..."
},
{
"title": "Notice of Inventory Completion: University of Illinois Urbana-Champaign, Champaign, IL",
"type": "Notice",
"abstract": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the University of Illinois Urbana-Champaign has completed an inventory of human remains and has determined that there is a cultural affiliation between the human remains and Indian Tribes or Native Hawaiian organizations in this notice.",
"document_number": "2025-08029",
"html_url": "https://www.federalregister.gov/documents/2025/05/08/2025-08029/notice-of-inventory-completion-university-of-illinois-urbana-champaign-champaign-il",
"pdf_url": "https://www.govinfo.gov/content/pkg/FR-2025-05-08/pdf/2025-08029.pdf",
"public_inspection_pdf_url": "https://public-inspection.federalregister.gov/2025-08029.pdf?1746621927",
"publication_date": "2025-05-08",
"agencies": [
{
"raw_name": "DEPARTMENT OF THE INTERIOR",
"name": "Interior Department",
"id": 253,
"url": "https://www.federalregister.gov/agencies/interior-department",
"json_url": "https://www.federalregister.gov/api/v1/agencies/253",
"parent_id": null,
"slug": "interior-department"
},
{
"raw_name": "National Park Service",
"name": "National Park Service",
"id": 362,
"url": "https://www.federalregister.gov/agencies/national-park-service",
"json_url": "https://www.federalregister.gov/api/v1/agencies/362",
"parent_id": 253,
"slug": "national-park-service"
}
],
"excerpts": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the University of Illinois Urbana-Champaign has completed an inventory of human remains and has determined that there is a cultural affiliation between the human..."
},
{
"title": "Notice of Inventory Completion: Office of the State Archaeologist, University of Iowa, Iowa City, IA",
"type": "Notice",
"abstract": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the Office of the State Archaeologist Bioarchaeology Program (OSA BP) has completed an inventory of human remains and has determined that there is a cultural affiliation between the human remains and Indian Tribes or Native Hawaiian organizations in this notice.",
"document_number": "2025-08039",
"html_url": "https://www.federalregister.gov/documents/2025/05/08/2025-08039/notice-of-inventory-completion-office-of-the-state-archaeologist-university-of-iowa-iowa-city-ia",
"pdf_url": "https://www.govinfo.gov/content/pkg/FR-2025-05-08/pdf/2025-08039.pdf",
"public_inspection_pdf_url": "https://public-inspection.federalregister.gov/2025-08039.pdf?1746621928",
"publication_date": "2025-05-08",
"agencies": [
{
"raw_name": "DEPARTMENT OF THE INTERIOR",
"name": "Interior Department",
"id": 253,
"url": "https://www.federalregister.gov/agencies/interior-department",
"json_url": "https://www.federalregister.gov/api/v1/agencies/253",
"parent_id": null,
"slug": "interior-department"
},
{
"raw_name": "National Park Service",
"name": "National Park Service",
"id": 362,
"url": "https://www.federalregister.gov/agencies/national-park-service",
"json_url": "https://www.federalregister.gov/api/v1/agencies/362",
"parent_id": 253,
"slug": "national-park-service"
}
],
"excerpts": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the Office of the State Archaeologist Bioarchaeology Program (OSA BP) has completed an inventory of human remains and has determined that there is a cultural..."
},
{
"title": "Notice of Inventory Completion: Autry Museum of the American West, Los Angeles, CA",
"type": "Notice",
"abstract": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the Autry Museum of the American West (Southwest Museum Collection) has completed an inventory associated funerary objects and has determined that there is a cultural affiliation between the associated funerary object and Indian Tribes or Native Hawaiian organizations in this notice.",
"document_number": "2025-08040",
"html_url": "https://www.federalregister.gov/documents/2025/05/08/2025-08040/notice-of-inventory-completion-autry-museum-of-the-american-west-los-angeles-ca",
"pdf_url": "https://www.govinfo.gov/content/pkg/FR-2025-05-08/pdf/2025-08040.pdf",
"public_inspection_pdf_url": "https://public-inspection.federalregister.gov/2025-08040.pdf?1746621929",
"publication_date": "2025-05-08",
"agencies": [
{
"raw_name": "DEPARTMENT OF THE INTERIOR",
"name": "Interior Department",
"id": 253,
"url": "https://www.federalregister.gov/agencies/interior-department",
"json_url": "https://www.federalregister.gov/api/v1/agencies/253",
"parent_id": null,
"slug": "interior-department"
},
{
"raw_name": "National Park Service",
"name": "National Park Service",
"id": 362,
"url": "https://www.federalregister.gov/agencies/national-park-service",
"json_url": "https://www.federalregister.gov/api/v1/agencies/362",
"parent_id": 253,
"slug": "national-park-service"
}
],
"excerpts": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the Autry Museum of the American West (Southwest Museum Collection) has completed an inventory associated funerary objects and has determined that there is a..."
},
{
"title": "Notice of Intent To Repatriate Cultural Items: California State University, Sacramento, Sacramento, CA",
"type": "Notice",
"abstract": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the California State University, Sacramento intends to repatriate certain cultural items that meet the definition of objects of cultural patrimony and that have a cultural affiliation with the Indian Tribes or Native Hawaiian organizations in this notice.",
"document_number": "2025-08032",
"html_url": "https://www.federalregister.gov/documents/2025/05/08/2025-08032/notice-of-intent-to-repatriate-cultural-items-california-state-university-sacramento-sacramento-ca",
"pdf_url": "https://www.govinfo.gov/content/pkg/FR-2025-05-08/pdf/2025-08032.pdf",
"public_inspection_pdf_url": "https://public-inspection.federalregister.gov/2025-08032.pdf?1746621927",
"publication_date": "2025-05-08",
"agencies": [
{
"raw_name": "DEPARTMENT OF THE INTERIOR",
"name": "Interior Department",
"id": 253,
"url": "https://www.federalregister.gov/agencies/interior-department",
"json_url": "https://www.federalregister.gov/api/v1/agencies/253",
"parent_id": null,
"slug": "interior-department"
},
{
"raw_name": "National Park Service",
"name": "National Park Service",
"id": 362,
"url": "https://www.federalregister.gov/agencies/national-park-service",
"json_url": "https://www.federalregister.gov/api/v1/agencies/362",
"parent_id": 253,
"slug": "national-park-service"
}
],
"excerpts": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the California State University, Sacramento intends to repatriate certain cultural items that meet the definition of objects of cultural patrimony and that have a..."
},
{
"title": "Notice of Inventory Completion: Mercyhurst University, Erie, PA",
"type": "Notice",
"abstract": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), Mercyhurst University has completed an inventory of human remains and has determined that there is a cultural affiliation between the human remains and Indian Tribes or Native Hawaiian organizations in this notice.",
"document_number": "2025-08047",
"html_url": "https://www.federalregister.gov/documents/2025/05/08/2025-08047/notice-of-inventory-completion-mercyhurst-university-erie-pa",
"pdf_url": "https://www.govinfo.gov/content/pkg/FR-2025-05-08/pdf/2025-08047.pdf",
"public_inspection_pdf_url": "https://public-inspection.federalregister.gov/2025-08047.pdf?1746621930",
"publication_date": "2025-05-08",
"agencies": [
{
"raw_name": "DEPARTMENT OF THE INTERIOR",
"name": "Interior Department",
"id": 253,
"url": "https://www.federalregister.gov/agencies/interior-department",
"json_url": "https://www.federalregister.gov/api/v1/agencies/253",
"parent_id": null,
"slug": "interior-department"
},
{
"raw_name": "National Park Service",
"name": "National Park Service",
"id": 362,
"url": "https://www.federalregister.gov/agencies/national-park-service",
"json_url": "https://www.federalregister.gov/api/v1/agencies/362",
"parent_id": 253,
"slug": "national-park-service"
}
],
"excerpts": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), Mercyhurst University has completed an inventory of human remains and has determined that there is a cultural affiliation between the human remains and Indian..."
},
{
"title": "Notice of Inventory Completion: University of California, Davis, Davis, CA",
"type": "Notice",
"abstract": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the University of California, Davis (UC Davis) has completed an inventory of human remains and associated funerary objects and has determined that there is a cultural affiliation between the human remains and associated funerary objects and Indian Tribes or Native Hawaiian organizations in this notice.",
"document_number": "2025-08036",
"html_url": "https://www.federalregister.gov/documents/2025/05/08/2025-08036/notice-of-inventory-completion-university-of-california-davis-davis-ca",
"pdf_url": "https://www.govinfo.gov/content/pkg/FR-2025-05-08/pdf/2025-08036.pdf",
"public_inspection_pdf_url": "https://public-inspection.federalregister.gov/2025-08036.pdf?1746621928",
"publication_date": "2025-05-08",
"agencies": [
{
"raw_name": "DEPARTMENT OF THE INTERIOR",
"name": "Interior Department",
"id": 253,
"url": "https://www.federalregister.gov/agencies/interior-department",
"json_url": "https://www.federalregister.gov/api/v1/agencies/253",
"parent_id": null,
"slug": "interior-department"
},
{
"raw_name": "National Park Service",
"name": "National Park Service",
"id": 362,
"url": "https://www.federalregister.gov/agencies/national-park-service",
"json_url": "https://www.federalregister.gov/api/v1/agencies/362",
"parent_id": 253,
"slug": "national-park-service"
}
],
"excerpts": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the University of California, Davis (UC Davis) has completed an inventory of human remains and associated funerary objects and has determined that there is a..."
},
{
"title": "Notice of Intended Repatriation: Autry Museum of the American West, Los Angeles, CA",
"type": "Notice",
"abstract": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the Autry Museum of the American West (Southwest Museum Collection) intends to repatriate certain cultural items that meet the definition of unassociated funerary objects and have a cultural affiliation with the Indian Tribes or Native Hawaiian organizations in this notice.",
"document_number": "2025-08041",
"html_url": "https://www.federalregister.gov/documents/2025/05/08/2025-08041/notice-of-intended-repatriation-autry-museum-of-the-american-west-los-angeles-ca",
"pdf_url": "https://www.govinfo.gov/content/pkg/FR-2025-05-08/pdf/2025-08041.pdf",
"public_inspection_pdf_url": "https://public-inspection.federalregister.gov/2025-08041.pdf?1746621929",
"publication_date": "2025-05-08",
"agencies": [
{
"raw_name": "DEPARTMENT OF THE INTERIOR",
"name": "Interior Department",
"id": 253,
"url": "https://www.federalregister.gov/agencies/interior-department",
"json_url": "https://www.federalregister.gov/api/v1/agencies/253",
"parent_id": null,
"slug": "interior-department"
},
{
"raw_name": "National Park Service",
"name": "National Park Service",
"id": 362,
"url": "https://www.federalregister.gov/agencies/national-park-service",
"json_url": "https://www.federalregister.gov/api/v1/agencies/362",
"parent_id": 253,
"slug": "national-park-service"
}
],
"excerpts": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the Autry Museum of the American West (Southwest Museum Collection) intends to repatriate certain cultural items that meet the definition of unassociated funerary..."
},
{
"title": "Notice of Intended Repatriation: Longyear Museum of Anthropology, Colgate University, Hamilton, NY",
"type": "Notice",
"abstract": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the Longyear Museum of Anthropology (LMA) intends to repatriate certain cultural items that meet the definition of unassociated funerary objects that have a cultural affiliation with the Indian Tribes or Native Hawaiian organizations in this notice.",
"document_number": "2025-08026",
"html_url": "https://www.federalregister.gov/documents/2025/05/08/2025-08026/notice-of-intended-repatriation-longyear-museum-of-anthropology-colgate-university-hamilton-ny",
"pdf_url": "https://www.govinfo.gov/content/pkg/FR-2025-05-08/pdf/2025-08026.pdf",
"public_inspection_pdf_url": "https://public-inspection.federalregister.gov/2025-08026.pdf?1746621926",
"publication_date": "2025-05-08",
"agencies": [
{
"raw_name": "DEPARTMENT OF THE INTERIOR",
"name": "Interior Department",
"id": 253,
"url": "https://www.federalregister.gov/agencies/interior-department",
"json_url": "https://www.federalregister.gov/api/v1/agencies/253",
"parent_id": null,
"slug": "interior-department"
},
{
"raw_name": "National Park Service",
"name": "National Park Service",
"id": 362,
"url": "https://www.federalregister.gov/agencies/national-park-service",
"json_url": "https://www.federalregister.gov/api/v1/agencies/362",
"parent_id": 253,
"slug": "national-park-service"
}
],
"excerpts": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the Longyear Museum of Anthropology (LMA) intends to repatriate certain cultural items that meet the definition of unassociated funerary objects that have a..."
},
{
"title": "Notice of Inventory Completion: California State University, Sacramento, Sacramento, CA",
"type": "Notice",
"abstract": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the California State University, Sacramento has completed an inventory of human remains and has determined that there is a cultural affiliation between the human remains and Indian Tribes or Native Hawaiian organizations in this notice.",
"document_number": "2025-08035",
"html_url": "https://www.federalregister.gov/documents/2025/05/08/2025-08035/notice-of-inventory-completion-california-state-university-sacramento-sacramento-ca",
"pdf_url": "https://www.govinfo.gov/content/pkg/FR-2025-05-08/pdf/2025-08035.pdf",
"public_inspection_pdf_url": "https://public-inspection.federalregister.gov/2025-08035.pdf?1746621928",
"publication_date": "2025-05-08",
"agencies": [
{
"raw_name": "DEPARTMENT OF THE INTERIOR",
"name": "Interior Department",
"id": 253,
"url": "https://www.federalregister.gov/agencies/interior-department",
"json_url": "https://www.federalregister.gov/api/v1/agencies/253",
"parent_id": null,
"slug": "interior-department"
},
{
"raw_name": "National Park Service",
"name": "National Park Service",
"id": 362,
"url": "https://www.federalregister.gov/agencies/national-park-service",
"json_url": "https://www.federalregister.gov/api/v1/agencies/362",
"parent_id": 253,
"slug": "national-park-service"
}
],
"excerpts": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the California State University, Sacramento has completed an inventory of human remains and has determined that there is a cultural affiliation between the human..."
},
{
"title": "Notice of Intended Repatriation: Mukwonago Community Library, Mukwonago, WI",
"type": "Notice",
"abstract": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the Mukwonago Community Library (MCL) intends to repatriate certain cultural items that meet the definition of unassociated funerary objects and that have a cultural affiliation with the Indian Tribes or Native Hawaiian organizations in this notice.",
"document_number": "2025-08037",
"html_url": "https://www.federalregister.gov/documents/2025/05/08/2025-08037/notice-of-intended-repatriation-mukwonago-community-library-mukwonago-wi",
"pdf_url": "https://www.govinfo.gov/content/pkg/FR-2025-05-08/pdf/2025-08037.pdf",
"public_inspection_pdf_url": "https://public-inspection.federalregister.gov/2025-08037.pdf?1746621928",
"publication_date": "2025-05-08",
"agencies": [
{
"raw_name": "DEPARTMENT OF THE INTERIOR",
"name": "Interior Department",
"id": 253,
"url": "https://www.federalregister.gov/agencies/interior-department",
"json_url": "https://www.federalregister.gov/api/v1/agencies/253",
"parent_id": null,
"slug": "interior-department"
},
{
"raw_name": "National Park Service",
"name": "National Park Service",
"id": 362,
"url": "https://www.federalregister.gov/agencies/national-park-service",
"json_url": "https://www.federalregister.gov/api/v1/agencies/362",
"parent_id": 253,
"slug": "national-park-service"
}
],
"excerpts": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the Mukwonago Community Library (MCL) intends to repatriate certain cultural items that meet the definition of unassociated funerary objects and that have a..."
},
{
"title": "Notice of Inventory Completion: California State University, Sacramento, Sacramento, CA and East Bay Municipal Utility District, Oakland, CA",
"type": "Notice",
"abstract": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the California State University, Sacramento, and East Bay Municipal Utility District (EBMUD) have completed an inventory of human remains and associated funerary objects and have determined that there is a cultural affiliation between the human remains and associated funerary objects and Indian Tribes in this notice.",
"document_number": "2025-08033",
"html_url": "https://www.federalregister.gov/documents/2025/05/08/2025-08033/notice-of-inventory-completion-california-state-university-sacramento-sacramento-ca-and-east-bay",
"pdf_url": "https://www.govinfo.gov/content/pkg/FR-2025-05-08/pdf/2025-08033.pdf",
"public_inspection_pdf_url": "https://public-inspection.federalregister.gov/2025-08033.pdf?1746621927",
"publication_date": "2025-05-08",
"agencies": [
{
"raw_name": "DEPARTMENT OF THE INTERIOR",
"name": "Interior Department",
"id": 253,
"url": "https://www.federalregister.gov/agencies/interior-department",
"json_url": "https://www.federalregister.gov/api/v1/agencies/253",
"parent_id": null,
"slug": "interior-department"
},
{
"raw_name": "National Park Service",
"name": "National Park Service",
"id": 362,
"url": "https://www.federalregister.gov/agencies/national-park-service",
"json_url": "https://www.federalregister.gov/api/v1/agencies/362",
"parent_id": 253,
"slug": "national-park-service"
}
],
"excerpts": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the California State University, Sacramento, and East Bay Municipal Utility District (EBMUD) have completed an inventory of human remains and associated funerary..."
},
{
"title": "Notice of Inventory Completion: Los Rios Community College District, Sacramento, CA",
"type": "Notice",
"abstract": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the Los Rios Community College District (LRCCD) has completed an inventory of human remains and has determined that there is a cultural affiliation between the human remains and Indian Tribes or Native Hawaiian organizations in this notice.",
"document_number": "2025-08049",
"html_url": "https://www.federalregister.gov/documents/2025/05/08/2025-08049/notice-of-inventory-completion-los-rios-community-college-district-sacramento-ca",
"pdf_url": "https://www.govinfo.gov/content/pkg/FR-2025-05-08/pdf/2025-08049.pdf",
"public_inspection_pdf_url": "https://public-inspection.federalregister.gov/2025-08049.pdf?1746621930",
"publication_date": "2025-05-08",
"agencies": [
{
"raw_name": "DEPARTMENT OF THE INTERIOR",
"name": "Interior Department",
"id": 253,
"url": "https://www.federalregister.gov/agencies/interior-department",
"json_url": "https://www.federalregister.gov/api/v1/agencies/253",
"parent_id": null,
"slug": "interior-department"
},
{
"raw_name": "National Park Service",
"name": "National Park Service",
"id": 362,
"url": "https://www.federalregister.gov/agencies/national-park-service",
"json_url": "https://www.federalregister.gov/api/v1/agencies/362",
"parent_id": 253,
"slug": "national-park-service"
}
],
"excerpts": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the Los Rios Community College District (LRCCD) has completed an inventory of human remains and has determined that there is a cultural affiliation between the..."
},
{
"title": "Notice of Inventory Completion: University of Michigan, Ann Arbor, MI",
"type": "Notice",
"abstract": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the University of Michigan has completed an inventory of human remains (hereinafter referred to as \"Ancestral remains\" or \"Ancestors\") and associated funerary objects and has determined that there is a cultural affiliation between the Ancestral remains and associated funerary objects and Indian Tribes or Native Hawaiian organizations in this notice.",
"document_number": "2025-08030",
"html_url": "https://www.federalregister.gov/documents/2025/05/08/2025-08030/notice-of-inventory-completion-university-of-michigan-ann-arbor-mi",
"pdf_url": "https://www.govinfo.gov/content/pkg/FR-2025-05-08/pdf/2025-08030.pdf",
"public_inspection_pdf_url": "https://public-inspection.federalregister.gov/2025-08030.pdf?1746621927",
"publication_date": "2025-05-08",
"agencies": [
{
"raw_name": "DEPARTMENT OF THE INTERIOR",
"name": "Interior Department",
"id": 253,
"url": "https://www.federalregister.gov/agencies/interior-department",
"json_url": "https://www.federalregister.gov/api/v1/agencies/253",
"parent_id": null,
"slug": "interior-department"
},
{
"raw_name": "National Park Service",
"name": "National Park Service",
"id": 362,
"url": "https://www.federalregister.gov/agencies/national-park-service",
"json_url": "https://www.federalregister.gov/api/v1/agencies/362",
"parent_id": 253,
"slug": "national-park-service"
}
],
"excerpts": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the University of Michigan has completed an inventory of human remains (hereinafter referred to as \"Ancestral remains\" or \"Ancestors\") and associated funerary..."
},
{
"title": "Notice of Inventory Completion: Center for the History of Medicine in the Francis A. Countway Library of Medicine, Harvard University, Boston, MA",
"type": "Notice",
"abstract": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the Center for the History of Medicine, Francis A. Countway Library of Medicine, Harvard University (CHM) has completed an inventory of human remains and has determined that there is a cultural affiliation between the human remains and Indian Tribes or Native Hawaiian organizations in this notice.",
"document_number": "2025-08046",
"html_url": "https://www.federalregister.gov/documents/2025/05/08/2025-08046/notice-of-inventory-completion-center-for-the-history-of-medicine-in-the-francis-a-countway-library",
"pdf_url": "https://www.govinfo.gov/content/pkg/FR-2025-05-08/pdf/2025-08046.pdf",
"public_inspection_pdf_url": "https://public-inspection.federalregister.gov/2025-08046.pdf?1746621930",
"publication_date": "2025-05-08",
"agencies": [
{
"raw_name": "DEPARTMENT OF THE INTERIOR",
"name": "Interior Department",
"id": 253,
"url": "https://www.federalregister.gov/agencies/interior-department",
"json_url": "https://www.federalregister.gov/api/v1/agencies/253",
"parent_id": null,
"slug": "interior-department"
},
{
"raw_name": "National Park Service",
"name": "National Park Service",
"id": 362,
"url": "https://www.federalregister.gov/agencies/national-park-service",
"json_url": "https://www.federalregister.gov/api/v1/agencies/362",
"parent_id": 253,
"slug": "national-park-service"
}
],
"excerpts": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the Center for the History of Medicine, Francis A. Countway Library of Medicine, Harvard University (CHM) has completed an inventory of human remains and has..."
},
{
"title": "Notice of Inventory Completion: California State University, Sacramento, Sacramento, CA",
"type": "Notice",
"abstract": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the California State University, Sacramento has completed an inventory of human remains and associated funerary objects and has determined that there is a cultural affiliation between the human remains and associated funerary objects and Indian Tribes or Native Hawaiian organizations in this notice.",
"document_number": "2025-08031",
"html_url": "https://www.federalregister.gov/documents/2025/05/08/2025-08031/notice-of-inventory-completion-california-state-university-sacramento-sacramento-ca",
"pdf_url": "https://www.govinfo.gov/content/pkg/FR-2025-05-08/pdf/2025-08031.pdf",
"public_inspection_pdf_url": "https://public-inspection.federalregister.gov/2025-08031.pdf?1746621927",
"publication_date": "2025-05-08",
"agencies": [
{
"raw_name": "DEPARTMENT OF THE INTERIOR",
"name": "Interior Department",
"id": 253,
"url": "https://www.federalregister.gov/agencies/interior-department",
"json_url": "https://www.federalregister.gov/api/v1/agencies/253",
"parent_id": null,
"slug": "interior-department"
},
{
"raw_name": "National Park Service",
"name": "National Park Service",
"id": 362,
"url": "https://www.federalregister.gov/agencies/national-park-service",
"json_url": "https://www.federalregister.gov/api/v1/agencies/362",
"parent_id": 253,
"slug": "national-park-service"
}
],
"excerpts": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the California State University, Sacramento has completed an inventory of human remains and associated funerary objects and has determined that there is a cultural..."
},
{
"title": "Notice of Inventory Completion: Office of the State Archaeologist, University of Iowa, Iowa City, IA",
"type": "Notice",
"abstract": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the Office of the State Archaeologist Bioarchaeology Program (OSA BP) has completed an inventory of human remains and has determined that there is a cultural affiliation between the human remains and Indian Tribes or Native Hawaiian organizations in this notice.",
"document_number": "2025-08038",
"html_url": "https://www.federalregister.gov/documents/2025/05/08/2025-08038/notice-of-inventory-completion-office-of-the-state-archaeologist-university-of-iowa-iowa-city-ia",
"pdf_url": "https://www.govinfo.gov/content/pkg/FR-2025-05-08/pdf/2025-08038.pdf",
"public_inspection_pdf_url": "https://public-inspection.federalregister.gov/2025-08038.pdf?1746621928",
"publication_date": "2025-05-08",
"agencies": [
{
"raw_name": "DEPARTMENT OF THE INTERIOR",
"name": "Interior Department",
"id": 253,
"url": "https://www.federalregister.gov/agencies/interior-department",
"json_url": "https://www.federalregister.gov/api/v1/agencies/253",
"parent_id": null,
"slug": "interior-department"
},
{
"raw_name": "National Park Service",
"name": "National Park Service",
"id": 362,
"url": "https://www.federalregister.gov/agencies/national-park-service",
"json_url": "https://www.federalregister.gov/api/v1/agencies/362",
"parent_id": 253,
"slug": "national-park-service"
}
],
"excerpts": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the Office of the State Archaeologist Bioarchaeology Program (OSA BP) has completed an inventory of human remains and has determined that there is a cultural..."
},
{
"title": "Notice of Intended Repatriation: U.S. Department of the Interior, National Park Service, Great Smoky Mountains National Park, Gatlinburg, TN",
"type": "Notice",
"abstract": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the U.S. Department of the Interior, National Park Service, Great Smoky Mountain National Park (GRSM) intends to repatriate certain cultural items that meet the definition of unassociated funerary objects that have a cultural affiliation with the Indian Tribes or Native Hawaiian organizations in this notice.",
"document_number": "2025-08044",
"html_url": "https://www.federalregister.gov/documents/2025/05/08/2025-08044/notice-of-intended-repatriation-us-department-of-the-interior-national-park-service-great-smoky",
"pdf_url": "https://www.govinfo.gov/content/pkg/FR-2025-05-08/pdf/2025-08044.pdf",
"public_inspection_pdf_url": "https://public-inspection.federalregister.gov/2025-08044.pdf?1746621929",
"publication_date": "2025-05-08",
"agencies": [
{
"raw_name": "DEPARTMENT OF THE INTERIOR",
"name": "Interior Department",
"id": 253,
"url": "https://www.federalregister.gov/agencies/interior-department",
"json_url": "https://www.federalregister.gov/api/v1/agencies/253",
"parent_id": null,
"slug": "interior-department"
},
{
"raw_name": "National Park Service",
"name": "National Park Service",
"id": 362,
"url": "https://www.federalregister.gov/agencies/national-park-service",
"json_url": "https://www.federalregister.gov/api/v1/agencies/362",
"parent_id": 253,
"slug": "national-park-service"
}
],
"excerpts": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the U.S. Department of the Interior, National Park Service, Great Smoky Mountain National Park (GRSM) intends to repatriate certain cultural items that meet the..."
},
{
"title": "Notice of Inventory Completion: Autry Museum of the American West, Los Angeles, CA",
"type": "Notice",
"abstract": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the Autry Museum of the American West (Southwest Museum Collection) has completed an inventory of human remains and has determined that there is a cultural affiliation between the human remains and Indian Tribes or Native Hawaiian organizations in this notice.",
"document_number": "2025-08042",
"html_url": "https://www.federalregister.gov/documents/2025/05/08/2025-08042/notice-of-inventory-completion-autry-museum-of-the-american-west-los-angeles-ca",
"pdf_url": "https://www.govinfo.gov/content/pkg/FR-2025-05-08/pdf/2025-08042.pdf",
"public_inspection_pdf_url": "https://public-inspection.federalregister.gov/2025-08042.pdf?1746621929",
"publication_date": "2025-05-08",
"agencies": [
{
"raw_name": "DEPARTMENT OF THE INTERIOR",
"name": "Interior Department",
"id": 253,
"url": "https://www.federalregister.gov/agencies/interior-department",
"json_url": "https://www.federalregister.gov/api/v1/agencies/253",
"parent_id": null,
"slug": "interior-department"
},
{
"raw_name": "National Park Service",
"name": "National Park Service",
"id": 362,
"url": "https://www.federalregister.gov/agencies/national-park-service",
"json_url": "https://www.federalregister.gov/api/v1/agencies/362",
"parent_id": 253,
"slug": "national-park-service"
}
],
"excerpts": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the Autry Museum of the American West (Southwest Museum Collection) has completed an inventory of human remains and has determined that there is a cultural..."
},
{
"title": "Notice of Inventory Completion: California Department of Transportation, Oakland, CA",
"type": "Notice",
"abstract": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the California Department of Transportation (Caltrans) has completed an inventory of human remains and associated funerary objects and has determined that there is a cultural affiliation between the human remains and associated funerary objects and Indian Tribes or Native Hawaiian organizations in this notice.",
"document_number": "2025-08043",
"html_url": "https://www.federalregister.gov/documents/2025/05/08/2025-08043/notice-of-inventory-completion-california-department-of-transportation-oakland-ca",
"pdf_url": "https://www.govinfo.gov/content/pkg/FR-2025-05-08/pdf/2025-08043.pdf",
"public_inspection_pdf_url": "https://public-inspection.federalregister.gov/2025-08043.pdf?1746621929",
"publication_date": "2025-05-08",
"agencies": [
{
"raw_name": "DEPARTMENT OF THE INTERIOR",
"name": "Interior Department",
"id": 253,
"url": "https://www.federalregister.gov/agencies/interior-department",
"json_url": "https://www.federalregister.gov/api/v1/agencies/253",
"parent_id": null,
"slug": "interior-department"
},
{
"raw_name": "National Park Service",
"name": "National Park Service",
"id": 362,
"url": "https://www.federalregister.gov/agencies/national-park-service",
"json_url": "https://www.federalregister.gov/api/v1/agencies/362",
"parent_id": 253,
"slug": "national-park-service"
}
],
"excerpts": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the California Department of Transportation (Caltrans) has completed an inventory of human remains and associated funerary objects and has determined that there is..."
},
{
"title": "Notice of Inventory Completion: Peabody Museum of Archaeology and Ethnology, Harvard University, Cambridge, MA",
"type": "Notice",
"abstract": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the Peabody Museum of Archaeology and Ethnology, Harvard University (PMAE) has completed an inventory of human remains and associated funerary objects and has determined that there is a cultural affiliation between the human remains and associated funerary objects and Indian Tribes or Native Hawaiian organizations in this notice.",
"document_number": "2025-08045",
"html_url": "https://www.federalregister.gov/documents/2025/05/08/2025-08045/notice-of-inventory-completion-peabody-museum-of-archaeology-and-ethnology-harvard-university",
"pdf_url": "https://www.govinfo.gov/content/pkg/FR-2025-05-08/pdf/2025-08045.pdf",
"public_inspection_pdf_url": "https://public-inspection.federalregister.gov/2025-08045.pdf?1746621929",
"publication_date": "2025-05-08",
"agencies": [
{
"raw_name": "DEPARTMENT OF THE INTERIOR",
"name": "Interior Department",
"id": 253,
"url": "https://www.federalregister.gov/agencies/interior-department",
"json_url": "https://www.federalregister.gov/api/v1/agencies/253",
"parent_id": null,
"slug": "interior-department"
},
{
"raw_name": "National Park Service",
"name": "National Park Service",
"id": 362,
"url": "https://www.federalregister.gov/agencies/national-park-service",
"json_url": "https://www.federalregister.gov/api/v1/agencies/362",
"parent_id": 253,
"slug": "national-park-service"
}
],
"excerpts": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the Peabody Museum of Archaeology and Ethnology, Harvard University (PMAE) has completed an inventory of human remains and associated funerary objects and has..."
},
{
"title": "Notice of Inventory Completion: Kansas State Historical Society, Topeka, KS",
"type": "Notice",
"abstract": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the Kansas State Historical Society (KSHS) has completed an inventory of human remains and associated funerary objects and has determined that there is a cultural affiliation between the human remains and associated funerary objects and Indian Tribes or Native Hawaiian organizations in this notice.",
"document_number": "2025-08048",
"html_url": "https://www.federalregister.gov/documents/2025/05/08/2025-08048/notice-of-inventory-completion-kansas-state-historical-society-topeka-ks",
"pdf_url": "https://www.govinfo.gov/content/pkg/FR-2025-05-08/pdf/2025-08048.pdf",
"public_inspection_pdf_url": "https://public-inspection.federalregister.gov/2025-08048.pdf?1746621930",
"publication_date": "2025-05-08",
"agencies": [
{
"raw_name": "DEPARTMENT OF THE INTERIOR",
"name": "Interior Department",
"id": 253,
"url": "https://www.federalregister.gov/agencies/interior-department",
"json_url": "https://www.federalregister.gov/api/v1/agencies/253",
"parent_id": null,
"slug": "interior-department"
},
{
"raw_name": "National Park Service",
"name": "National Park Service",
"id": 362,
"url": "https://www.federalregister.gov/agencies/national-park-service",
"json_url": "https://www.federalregister.gov/api/v1/agencies/362",
"parent_id": 253,
"slug": "national-park-service"
}
],
"excerpts": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the Kansas State Historical Society (KSHS) has completed an inventory of human remains and associated funerary objects and has determined that there is a cultural..."
},
{
"title": "Notice of Inventory Completion: University of Florida, Florida Museum of Natural History, Gainesville, FL",
"type": "Notice",
"abstract": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the University of Florida, Florida Museum of Natural History (FLMNH) has completed an inventory of human remains and associated funerary objects and has determined that there is a cultural affiliation between the human remains and associated funerary objects and Indian Tribes or Native Hawaiian organizations in this notice.",
"document_number": "2025-08028",
"html_url": "https://www.federalregister.gov/documents/2025/05/08/2025-08028/notice-of-inventory-completion-university-of-florida-florida-museum-of-natural-history-gainesville",
"pdf_url": "https://www.govinfo.gov/content/pkg/FR-2025-05-08/pdf/2025-08028.pdf",
"public_inspection_pdf_url": "https://public-inspection.federalregister.gov/2025-08028.pdf?1746621927",
"publication_date": "2025-05-08",
"agencies": [
{
"raw_name": "DEPARTMENT OF THE INTERIOR",
"name": "Interior Department",
"id": 253,
"url": "https://www.federalregister.gov/agencies/interior-department",
"json_url": "https://www.federalregister.gov/api/v1/agencies/253",
"parent_id": null,
"slug": "interior-department"
},
{
"raw_name": "National Park Service",
"name": "National Park Service",
"id": 362,
"url": "https://www.federalregister.gov/agencies/national-park-service",
"json_url": "https://www.federalregister.gov/api/v1/agencies/362",
"parent_id": 253,
"slug": "national-park-service"
}
],
"excerpts": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the University of Florida, Florida Museum of Natural History (FLMNH) has completed an inventory of human remains and associated funerary objects and has determined..."
},
{
"title": "Notice of Intent To Repatriate Cultural Items: California State University, Sacramento, Sacramento, CA and East Bay Municipal Utility District, Oakland, CA",
"type": "Notice",
"abstract": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the California State University, Sacramento and East Bay Municipal Utility District (EBMUD) intend to repatriate certain cultural items that meet the definition of objects of cultural patrimony and that have a cultural affiliation with the Indian Tribes or Native Hawaiian organizations in this notice.",
"document_number": "2025-08034",
"html_url": "https://www.federalregister.gov/documents/2025/05/08/2025-08034/notice-of-intent-to-repatriate-cultural-items-california-state-university-sacramento-sacramento-ca",
"pdf_url": "https://www.govinfo.gov/content/pkg/FR-2025-05-08/pdf/2025-08034.pdf",
"public_inspection_pdf_url": "https://public-inspection.federalregister.gov/2025-08034.pdf?1746621928",
"publication_date": "2025-05-08",
"agencies": [
{
"raw_name": "DEPARTMENT OF THE INTERIOR",
"name": "Interior Department",
"id": 253,
"url": "https://www.federalregister.gov/agencies/interior-department",
"json_url": "https://www.federalregister.gov/api/v1/agencies/253",
"parent_id": null,
"slug": "interior-department"
},
{
"raw_name": "National Park Service",
"name": "National Park Service",
"id": 362,
"url": "https://www.federalregister.gov/agencies/national-park-service",
"json_url": "https://www.federalregister.gov/api/v1/agencies/362",
"parent_id": 253,
"slug": "national-park-service"
}
],
"excerpts": "In accordance with the Native American Graves Protection and Repatriation Act (NAGPRA), the California State University, Sacramento and East Bay Municipal Utility District (EBMUD) intend to repatriate certain cultural items that meet the definition of..."
},
{
"title": "Agency Information Collection Activities; Proposed eCollection eComments Requested; Visitor Access Request-ATF Form 8620.71",
"type": "Notice",
"abstract": "The Department of Justice (DOJ), Bureau of Alcohol, Tobacco, Firearms and Explosives (ATF), will be submitting the following information collection request to the Office of Management and Budget (OMB) for review and approval in accordance with the Paperwork Reduction Act of 1995.",
"document_number": "2025-08081",
"html_url": "https://www.federalregister.gov/documents/2025/05/08/2025-08081/agency-information-collection-activities-proposed-ecollection-ecomments-requested-visitor-access",
"pdf_url": "https://www.govinfo.gov/content/pkg/FR-2025-05-08/pdf/2025-08081.pdf",
"public_inspection_pdf_url": "https://public-inspection.federalregister.gov/2025-08081.pdf?1746621937",
"publication_date": "2025-05-08",
"agencies": [
{
"raw_name": "DEPARTMENT OF JUSTICE",
"name": "Justice Department",
"id": 268,
"url": "https://www.federalregister.gov/agencies/justice-department",
"json_url": "https://www.federalregister.gov/api/v1/agencies/268",
"parent_id": null,
"slug": "justice-department"
}
],
"excerpts": "The Department of Justice (DOJ), Bureau of Alcohol, Tobacco, Firearms and Explosives (ATF), will be submitting the following information collection request to the Office of Management and Budget (OMB) for review and approval in accordance with the..."
},
{
"title": "Agency Information Collection Activities; Proposed eCollection eComments Requested; Extension of a Previously Approved Collection; National Use-of-Force Data Collection",
"type": "Notice",
"abstract": "The Federal Bureau of Investigation (FBI), Department of Justice (DOJ), will be submitting the following information collection request to the Office of Management and Budget (OMB) for review and approval in accordance with the Paperwork Reduction Act of 1995. The proposed information collection was previously published in the Federal Register on April 4, 2025, allowing a 60-day comment period.",
"document_number": "2025-08059",
"html_url": "https://www.federalregister.gov/documents/2025/05/08/2025-08059/agency-information-collection-activities-proposed-ecollection-ecomments-requested-extension-of-a",
"pdf_url": "https://www.govinfo.gov/content/pkg/FR-2025-05-08/pdf/2025-08059.pdf",
"public_inspection_pdf_url": "https://public-inspection.federalregister.gov/2025-08059.pdf?1746621932",
"publication_date": "2025-05-08",
"agencies": [
{
"raw_name": "DEPARTMENT OF JUSTICE",
"name": "Justice Department",
"id": 268,
"url": "https://www.federalregister.gov/agencies/justice-department",
"json_url": "https://www.federalregister.gov/api/v1/agencies/268",
"parent_id": null,
"slug": "justice-department"
}
],
"excerpts": "The Federal Bureau of Investigation (FBI), Department of Justice (DOJ), will be submitting the following information collection request to the Office of Management and Budget (OMB) for review and approval in accordance with the Paperwork Reduction Act..."
},
{
"title": "New Postal Products",
"type": "Notice",
"abstract": "The Commission is noticing a recent Postal Service filing for the Commission's consideration concerning a negotiated service agreement. This notice informs the public of the filing, invites public comment, and takes other administrative steps.",
"document_number": "2025-08056",
"html_url": "https://www.federalregister.gov/documents/2025/05/08/2025-08056/new-postal-products",
"pdf_url": "https://www.govinfo.gov/content/pkg/FR-2025-05-08/pdf/2025-08056.pdf",
"public_inspection_pdf_url": "https://public-inspection.federalregister.gov/2025-08056.pdf?1746621931",
"publication_date": "2025-05-08",
"agencies": [
{
"raw_name": "POSTAL REGULATORY COMMISSION",
"name": "Postal Regulatory Commission",
"id": 409,
"url": "https://www.federalregister.gov/agencies/postal-regulatory-commission",
"json_url": "https://www.federalregister.gov/api/v1/agencies/409",
"parent_id": null,
"slug": "postal-regulatory-commission"
}
],
"excerpts": "The Commission is noticing a recent Postal Service filing for the Commission's consideration concerning a negotiated service agreement. This notice informs the public of the filing, invites public comment, and takes other administrative steps."
},
{
"title": "Low Income Taxpayer Clinic Grant Program; Availability of 2026 Grant Application Package",
"type": "Notice",
"abstract": "This document contains a notice that the IRS has provided a grant opportunity in www.grants.gov for organizations interested in applying for a Low Income Taxpayer Clinic (LITC) matching grant. The IRS is authorized to award multi-year LITC grants not to exceed three years. Grants may be awarded for the development/start up, expansion, or continuation of programs providing qualified services to eligible taxpayers. The budget and the period of performance for the grant will be January 1, 2026-December 31, 2026. The application period runs from May 15, 2025, through July 14, 2025.",
"document_number": "2025-07978",
"html_url": "https://www.federalregister.gov/documents/2025/05/08/2025-07978/low-income-taxpayer-clinic-grant-program-availability-of-2026-grant-application-package",
"pdf_url": "https://www.govinfo.gov/content/pkg/FR-2025-05-08/pdf/2025-07978.pdf",
"public_inspection_pdf_url": "https://public-inspection.federalregister.gov/2025-07978.pdf?1746621918",
"publication_date": "2025-05-08",
"agencies": [
{
"raw_name": "DEPARTMENT OF THE TREASURY",
"name": "Treasury Department",
"id": 497,
"url": "https://www.federalregister.gov/agencies/treasury-department",
"json_url": "https://www.federalregister.gov/api/v1/agencies/497",
"parent_id": null,
"slug": "treasury-department"
},
{
"raw_name": "Internal Revenue Service",
"name": "Internal Revenue Service",
"id": 254,
"url": "https://www.federalregister.gov/agencies/internal-revenue-service",
"json_url": "https://www.federalregister.gov/api/v1/agencies/254",
"parent_id": 497,
"slug": "internal-revenue-service"
}
],
"excerpts": "This document contains a notice that the IRS has provided a grant opportunity in www.grants.gov for organizations interested in applying for a Low Income Taxpayer Clinic (LITC) matching grant. The IRS is authorized to award multi-year LITC grants not..."
},
{
"title": "National Mental Health Awareness Month, 2025",
"type": "Presidential Document",
"abstract": null,
"document_number": "2025-08263",
"html_url": "https://www.federalregister.gov/documents/2025/05/08/2025-08263/national-mental-health-awareness-month-2025",
"pdf_url": "https://www.govinfo.gov/content/pkg/FR-2025-05-08/pdf/2025-08263.pdf",
"public_inspection_pdf_url": "https://public-inspection.federalregister.gov/2025-08263.pdf?1746630915",
"publication_date": "2025-05-08",
"agencies": [
{
"raw_name": "EXECUTIVE OFFICE OF THE PRESIDENT",
"name": "Executive Office of the President",
"id": 538,
"url": "https://www.federalregister.gov/agencies/executive-office-of-the-president",
"json_url": "https://www.federalregister.gov/api/v1/agencies/538",
"parent_id": null,
"slug": "executive-office-of-the-president"
}
],
"excerpts": null
},
{
"title": "National Hurricane Preparedness Week, 2025",
"type": "Presidential Document",
"abstract": null,
"document_number": "2025-08264",
"html_url": "https://www.federalregister.gov/documents/2025/05/08/2025-08264/national-hurricane-preparedness-week-2025",
"pdf_url": "https://www.govinfo.gov/content/pkg/FR-2025-05-08/pdf/2025-08264.pdf",
"public_inspection_pdf_url": "https://public-inspection.federalregister.gov/2025-08264.pdf?1746630915",
"publication_date": "2025-05-08",
"agencies": [
{
"raw_name": "EXECUTIVE OFFICE OF THE PRESIDENT",
"name": "Executive Office of the President",
"id": 538,
"url": "https://www.federalregister.gov/agencies/executive-office-of-the-president",
"json_url": "https://www.federalregister.gov/api/v1/agencies/538",
"parent_id": null,
"slug": "executive-office-of-the-president"
}
],
"excerpts": null
},
{
"title": "National Small Business Week, 2025",
"type": "Presidential Document",
"abstract": null,
"document_number": "2025-08265",
"html_url": "https://www.federalregister.gov/documents/2025/05/08/2025-08265/national-small-business-week-2025",
"pdf_url": "https://www.govinfo.gov/content/pkg/FR-2025-05-08/pdf/2025-08265.pdf",
"public_inspection_pdf_url": "https://public-inspection.federalregister.gov/2025-08265.pdf?1746630915",
"publication_date": "2025-05-08",
"agencies": [
{
"raw_name": "EXECUTIVE OFFICE OF THE PRESIDENT",
"name": "Executive Office of the President",
"id": 538,
"url": "https://www.federalregister.gov/agencies/executive-office-of-the-president",
"json_url": "https://www.federalregister.gov/api/v1/agencies/538",
"parent_id": null,
"slug": "executive-office-of-the-president"
}
],
"excerpts": null
},
{
"title": "Improving the Safety and Security of Biological Research",
"type": "Presidential Document",
"abstract": null,
"document_number": "2025-08266",
"html_url": "https://www.federalregister.gov/documents/2025/05/08/2025-08266/improving-the-safety-and-security-of-biological-research",
"pdf_url": "https://www.govinfo.gov/content/pkg/FR-2025-05-08/pdf/2025-08266.pdf",
"public_inspection_pdf_url": "https://public-inspection.federalregister.gov/2025-08266.pdf?1746630916",
"publication_date": "2025-05-08",
"agencies": [
{
"raw_name": "EXECUTIVE OFFICE OF THE PRESIDENT",