-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathswagger.yaml
executable file
·1544 lines (1544 loc) · 45.7 KB
/
swagger.yaml
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
---
swagger: "2.0"
info:
description: "<p>The <strong>govinfo</strong> Link Service provides services for\
\ developers and webmasters to access content and metadata on <strong>govinfo</strong>.\
\ Current and planned services include a link service, list service, and search\
\ service. Please contact <a href=\"https://www.gpo.gov/askgpo/\">askGPO</a> for\
\ additional information about current or planned services.</p> <p>The link service\
\ is used to create embedded links to content and metadata on <strong>govinfo</strong>\
\ and is currently enabled for the collections below. The collection code is listed\
\ in parenthesis after each collection name, and the available queries are listed\
\ below each collection. More information about each query is provided on the\
\ individual collection page.</p>"
version: "1.0.0"
title: "govinfo-link-js"
contact: {}
license:
name: "Apache 2.0"
host: "www.govinfo.gov"
basePath: "/link"
tags:
- name: "crpt.summary"
description: "Crpt Controller"
- name: "bills.summary"
description: "Bills Controller"
- name: "cpd.summary"
description: "Cpd Controller"
- name: "ccal.summary"
description: "Ccal Controller"
- name: "cfr.summary"
description: "Cfr Controller"
- name: "chrg.summary"
description: "Chrg Controller"
- name: "cdoc.summary"
description: "Cdoc Controller"
- name: "plaw.summary"
description: "Plaw Controller"
- name: "uscode.summary"
description: "Uscode Controller"
- name: "fr.summary"
description: "Fr Controller"
- name: "statute.summary"
description: "Statute Controller"
- name: "crec.summary"
description: "Crec Controller"
- name: "cprt.summary"
description: "Cprt Controller"
paths:
/bills/{congress}/{billtype}/{billnum}:
get:
tags:
- "Congressional Bills (BILLS)"
summary: "Query: bill number, bill type, congress, bill version OR most recent"
operationId: "billsFetchUsingGET"
consumes:
- "application/json"
produces:
- "*/*"
parameters:
- name: "congress"
in: "path"
description: "This is the numerical Congress number. Sample value is 112."
required: true
type: "string"
- name: "billtype"
in: "path"
description: "Values are hr, s, hjres, sjres, hconres, sconres, hres, sres."
required: true
type: "string"
enum:
- "hr"
- "s"
- "hjres"
- "sjres"
- "hconres"
- "sconres"
- "hres"
- "sres"
- name: "billnum"
in: "path"
description: "This is the numerical bill number. Sample value is 1027."
required: true
type: "integer"
format: "int32"
- name: "billversion"
in: "query"
description: "If bill version is not provided, the most recent version of\
\ a bill is returned. Values are as, ash, ath, ats, cdh, cds, cph, cps,\
\ eah, eas, eh, enr, eph, es, fah, fph, fps, hdh, hds, ih, iph, ips, is,\
\ lth, lts, nat, oph, ops, pap, pav, pch, pcs, pp, pwah, rah, ras, rch,\
\ rcs, rdh, rds, re, reah, renr, res, rfh, rfs, rft, rh, rhuc, rih, ris,\
\ rs, rth, rts, s_p, sas, sc, mostrecent."
required: false
type: "string"
enum:
- "as"
- "ash"
- "ath"
- "ats"
- "cdh"
- "cds"
- "cph"
- "cps"
- "eah"
- "eas"
- "eh"
- "enr"
- "eph"
- "es"
- "fah"
- "fph"
- "fps"
- "hdh"
- "hds"
- "ih"
- "iph"
- "ips"
- "is"
- "lth"
- "lts"
- "nat"
- "oph"
- "ops"
- "pap"
- "pav"
- "pch"
- "pcs"
- "pp"
- "pwah"
- "rah"
- "ras"
- "rch"
- "rcs"
- "rdh"
- "rds"
- "re"
- "reah"
- "renr"
- "res"
- "rfh"
- "rfs"
- "rft"
- "rh"
- "rhuc"
- "rih"
- "ris"
- "rs"
- "rth"
- "rts"
- "s_p"
- "sas"
- "sc"
- "mostrecent"
- name: "link-type"
in: "query"
description: "This is the format of the returned document. Default is pdf.\
\ Other values are xml, mods, premis, details, related."
required: false
type: "string"
enum:
- "pdf"
- "xml"
- "html"
- "mods"
- "premis"
- "details"
- "related"
responses:
200:
description: "OK"
schema:
type: "object"
properties: {}
/ccal/{chamber}/{section}:
get:
tags:
- "Congressional Calendars (CCAL)"
summary: "Query: chamber, section, publish date OR most recent"
operationId: "ccalFetchUsingGET"
consumes:
- "application/json"
produces:
- "*/*"
parameters:
- name: "chamber"
in: "path"
description: "This is the chamber of Congress. Values are house, senate."
required: true
type: "string"
enum:
- "house"
- "senate"
- name: "section"
in: "path"
description: "This is the name of the calendar section. Recommend encoding\
\ special characters and spaces (%20). Common sample values include Unanimous\
\ Consent Agreements, Cover and Special Orders, Subjects on the Table, Union\
\ Calendar, Bills in Conference, Special Legislative Days."
required: true
type: "string"
- name: "publishdate"
in: "query"
description: "If date is not provided, the most recent version of the calendar\
\ is returned. Values are date formated as yyyy-mm-dd or mostrecent. Default\
\ is most recent."
required: false
type: "string"
- name: "link-type"
in: "query"
description: "This is the format of the returned document. Default is pdf.\
\ Other values are html, mods, premis, details, context."
required: false
type: "string"
enum:
- "pdf"
- "html"
- "mods"
- "premis"
- "details"
- "context"
responses:
200:
description: "OK"
schema:
type: "object"
properties: {}
/cdoc/{congress}/{doctype}/{docnum}:
get:
tags:
- "Congressional Documents (CDOC)"
summary: "Query: congress, document type, document number"
operationId: "cdocFetchUsingGET"
consumes:
- "application/json"
produces:
- "*/*"
parameters:
- name: "congress"
in: "path"
description: "This is the numberical Congress number. Sample value is 112."
required: true
type: "integer"
format: "int32"
- name: "doctype"
in: "path"
description: "This is the congressional document type. Congressional documents\
\ can either be house documents, senate documents, or treaty documents.\
\ Values are hdoc, sdoc, tdoc."
required: true
type: "string"
enum:
- "hdoc"
- "sdoc"
- "tdoc"
- name: "docnum"
in: "path"
description: "This is the numerical document number. Congressional documents\
\ are numbered consecutively within a Congress for each document type. Sample\
\ value is 15. Note: congressional documents that have been processed through\
\ the GPO collection are currently not available through the FDsys API."
required: true
type: "integer"
format: "int32"
- name: "link-type"
in: "query"
description: "This is the format of the returned document. Default is pdf.\
\ Other values are html, mods, premis, details, context."
required: false
type: "string"
enum:
- "pdf"
- "html"
- "mods"
- "premis"
- "details"
- "context"
responses:
200:
description: "OK"
schema:
type: "object"
properties: {}
/cdoc/{congress}/{jacketid}:
get:
tags:
- "Congressional Documents (CDOC)"
summary: "Query: congress, jacket number"
operationId: "cdocJacketFetchUsingGET"
consumes:
- "application/json"
produces:
- "*/*"
parameters:
- name: "congress"
in: "path"
description: "This is the numberical Congress number. Sample value is 112."
required: true
type: "integer"
format: "int32"
- name: "jacketid"
in: "path"
description: "This is the GPO jacket number. The jacket number is typically\
\ listed on the first page in the lower left corner. Jacket number is unique\
\ within a Congress. Sample value is 66-208."
required: true
type: "string"
- name: "link-type"
in: "query"
description: "This is the format of the returned document. Default is pdf.\
\ Other values are html, mods, premis, details, context."
required: false
type: "string"
enum:
- "pdf"
- "html"
- "mods"
- "premis"
- "details"
- "context"
responses:
200:
description: "OK"
schema:
type: "object"
properties: {}
/cfr/{titlenum}/{partnum}:
get:
tags:
- "Code of Federal Regulations (CFR)"
summary: "Query: title number, part number, section number, year OR most recent"
operationId: "cfrFetchUsingGET"
consumes:
- "application/json"
produces:
- "*/*"
parameters:
- name: "titlenum"
in: "path"
description: "Title number. Sample value is 3."
required: true
type: "integer"
format: "int32"
- name: "partnum"
in: "path"
description: "Part number. Sample value is 100"
required: true
type: "string"
- name: "sectionnum"
in: "query"
description: "This is the section number. Sample value is 1. If section number\
\ is not provided the entire part will be returned."
required: false
type: "string"
- name: "year"
in: "query"
description: "This is the four digit numerical year OR mostrecent. If year\
\ is not provided the most recent version of the CFR section or part is\
\ returned. Default is most recent. Sample value is 2011."
required: false
type: "string"
- name: "link-type"
in: "query"
description: "This is the format of the returned document. Default is pdf.\
\ Other values are xml, mods, premis, details, context, related."
required: false
type: "string"
enum:
- "pdf"
- "xml"
- "mods"
- "premis"
- "details"
- "context"
- "related"
responses:
200:
description: "OK"
schema:
type: "object"
properties: {}
/chrg/{congress}/house/{committee}/{serialnumber}:
get:
tags:
- "Congressional Hearings (CHRG)"
summary: "Query: congress, chamber, committee, house serial number"
operationId: "chrgHouseFetchUsingGET"
consumes:
- "application/json"
produces:
- "*/*"
parameters:
- name: "congress"
in: "path"
description: "This is the numerical Congress number. Sample value is 109."
required: true
type: "integer"
format: "int32"
- name: "committee"
in: "path"
description: "This is the name of the House committee. Recommend encoding\
\ special characters and spaces (%20). Sample value is energy."
required: true
type: "string"
- name: "serialnumber"
in: "path"
description: "This is the numerical house committee serial number. House hearings\
\ are not numbered consecutively across committees within a Congress. For\
\ example, 109-138 could exist for both the Energy Committee and the Rules\
\ and Administration Committee within the 109th Congress. Sample value is\
\ 138."
required: true
type: "integer"
format: "int32"
- name: "link-type"
in: "query"
description: "This is the format of the returned document. Default is pdf.\
\ Other values are html, mods, premis, details, context."
required: false
type: "string"
enum:
- "pdf"
- "html"
- "mods"
- "premis"
- "details"
- "context"
responses:
200:
description: "OK"
schema:
type: "object"
properties: {}
/chrg/{congress}/senate/{hearingnumber}:
get:
tags:
- "Congressional Hearings (CHRG)"
summary: "Query: congress, chamber, senate hearing number"
operationId: "chrgSenateFetchUsingGET"
consumes:
- "application/json"
produces:
- "*/*"
parameters:
- name: "congress"
in: "path"
description: "This is the numerical Congress number. Sample value is 112."
required: true
type: "integer"
format: "int32"
- name: "hearingnumber"
in: "path"
description: "This is the numerical Senate hearing number. Senate hearings\
\ are numbered consecutively across committees within a Congress. Sample\
\ value is 122."
required: true
type: "integer"
format: "int32"
- name: "link-type"
in: "query"
description: "This is the format of the returned document. Default is pdf.\
\ Other values are html, mods, premis, details, context."
required: false
type: "string"
enum:
- "pdf"
- "html"
- "mods"
- "premis"
- "details"
- "context"
responses:
200:
description: "OK"
schema:
type: "object"
properties: {}
/chrg/{congress}/{jacketid}:
get:
tags:
- "Congressional Hearings (CHRG)"
summary: "Query: congress, jacket number"
operationId: "chrgJacketFetchUsingGET"
consumes:
- "application/json"
produces:
- "*/*"
parameters:
- name: "congress"
in: "path"
description: "This is the numerical Congress number. Sample value is 105."
required: true
type: "integer"
format: "int32"
- name: "jacketid"
in: "path"
description: "This is the GPO jacket number. The jacket number is typically\
\ listed on the first page in the lower left corner. Jacket number is unique\
\ within a Congress. Sample value is 48-707."
required: true
type: "string"
- name: "link-type"
in: "query"
description: "This is the format of the returned document. Default is pdf.\
\ Other values are html, mods, premis, details, context."
required: false
type: "string"
enum:
- "pdf"
- "html"
- "mods"
- "premis"
- "details"
- "context"
responses:
200:
description: "OK"
schema:
type: "object"
properties: {}
/cpd/{doctype}/{docnum}:
get:
tags:
- "Compilation of Presidential Documents (CPD)"
summary: "Query: document type, document number"
operationId: "cpdFetchUsingGET"
consumes:
- "application/json"
produces:
- "*/*"
parameters:
- name: "doctype"
in: "path"
description: "Values are executiveorder, proclamation, determination."
required: true
type: "string"
enum:
- "executiveorder"
- "proclamation"
- "determination"
- name: "docnum"
in: "path"
description: "This is the numerical document number. Sample value is 13514."
required: true
type: "integer"
format: "int32"
- name: "link-type"
in: "query"
description: "This is the format of the returned document. Default is pdf.\
\ Other values are html, mods, premis, details, related."
required: false
type: "string"
enum:
- "pdf"
- "html"
- "mods"
- "premis"
- "details"
- "related"
responses:
200:
description: "OK"
schema:
type: "object"
properties: {}
/cpd/{year}:
get:
tags:
- "Compilation of Presidential Documents (CPD)"
summary: "Query: dcpd type OR dcpd number"
description: "Query: dcpd type OR dcpd number"
operationId: "cpdDcpdFetchUsingGET"
consumes:
- "application/json"
produces:
- "*/*"
parameters:
- name: "year"
in: "path"
description: "This is the four digit numerical year. The first Daily Compilation\
\ of Presidential Documents (dcpd) document was published on 1/20/2009.\
\ Sample value is 2010."
required: true
type: "integer"
format: "int32"
- name: "dcpdnumber"
in: "query"
description: "This is the five digit numerical identifier on a dcpd document.\
\ It does not include the four digit year. Document are numbered sequentially\
\ within each year. Leading zeros can be supplied but are not required.\
\ Sample value is 00123. Either dcpdnumber or dcpdtype is required. If a\
\ document contains both a dcpdnumber and a dcpdtype, we recommend providing\
\ dcpdtype instead of dcpdnumber. If both are provided, precedence is given\
\ to dcpdnumber."
required: false
type: "integer"
format: "int32"
- name: "dcpdtype"
in: "query"
description: "This is the type of dcpd document. Values are digest, nominations,\
\ checklist, actsapproved. Either dcpdnumber or dcpdtype is required. If\
\ a document contains both a dcpdnumber and a dcpdtype, we recommend providing\
\ dcpdtype instead of dcpdnumber. If both are provided, precedence is given\
\ to dcpdnumber."
required: false
type: "string"
enum:
- "digest"
- "nominations"
- "checklist"
- "actsapproved"
- name: "link-type"
in: "query"
description: "This is the format of the returned document. Default is pdf.\
\ Other values are html, mods, premis, details, related."
required: false
type: "string"
enum:
- "pdf"
- "html"
- "mods"
- "premis"
- "details"
- "related"
responses:
200:
description: "OK"
schema:
type: "object"
properties: {}
/cprt/{congress}/house/{printnum}/{committee}:
get:
tags:
- "Congressional Committee Prints (CPRT)"
summary: "Query: congress, chamber, house print number, committee"
operationId: "cprtHouseFetchUsingGET"
consumes:
- "application/json"
produces:
- "*/*"
parameters:
- name: "congress"
in: "path"
description: "This is the numerical Congress number. Sample value is 109."
required: true
type: "integer"
format: "int32"
- name: "printnum"
in: "path"
description: "This is the numerical House committee print number. House prints\
\ are not numbered consecutively across committees within a Congress. For\
\ example, 109-2 could exist for both the Ways and Means Committee and the\
\ Rules and Administration Committee within the 109th Congress. Sample value\
\ is 2."
required: true
type: "integer"
format: "int32"
- name: "committee"
in: "path"
description: "This is the name of the House committee. Recommend encoding\
\ special characters and spaces (%20). Sample value is Ways and Means."
required: true
type: "string"
- name: "link-type"
in: "query"
description: "This is the format of the returned document. Default is pdf.\
\ Other values are html, mods, premis, details, context."
required: false
type: "string"
enum:
- "pdf"
- "html"
- "mods"
- "premis"
- "details"
- "context"
responses:
200:
description: "OK"
schema:
type: "object"
properties: {}
/cprt/{congress}/senate/{printnum}:
get:
tags:
- "Congressional Committee Prints (CPRT)"
summary: "Query: congress, chamber, senate print number"
operationId: "cprtSenateFetchUsingGET"
consumes:
- "application/json"
produces:
- "*/*"
parameters:
- name: "congress"
in: "path"
description: "This is the numerical Congress number. Sample value is 112."
required: true
type: "integer"
format: "int32"
- name: "printnum"
in: "path"
description: "This is the numerical Senate print number. Senate prints are\
\ numbered consecutively across committees within a Congress. Sample value\
\ is 4."
required: true
type: "integer"
format: "int32"
- name: "link-type"
in: "query"
description: "This is the format of the returned document. Default is pdf.\
\ Other values are html, mods, premis, details, context."
required: false
type: "string"
enum:
- "pdf"
- "html"
- "mods"
- "premis"
- "details"
- "context"
responses:
200:
description: "OK"
schema:
type: "object"
properties: {}
/cprt/{congress}/{jacketid}:
get:
tags:
- "Congressional Committee Prints (CPRT)"
summary: "Query: congress, jacket number"
operationId: "cprtJacketFetchUsingGET"
consumes:
- "application/json"
produces:
- "*/*"
parameters:
- name: "congress"
in: "path"
description: "This is the numerical Congress number. Sample value is 112."
required: true
type: "integer"
format: "int32"
- name: "jacketid"
in: "path"
description: "This is the GPO jacket number. The jacket number is typically\
\ listed on the first page in the lower left corner. Jacket number is unique\
\ within a Congress. Sample value is 74-558."
required: true
type: "string"
- name: "link-type"
in: "query"
description: "This is the format of the returned document. Default is pdf.\
\ Other values are html, mods, premis, details, context."
required: false
type: "string"
enum:
- "pdf"
- "html"
- "mods"
- "premis"
- "details"
- "context"
responses:
200:
description: "OK"
schema:
type: "object"
properties: {}
/crec/cas/{congress}/{billtype}/{billnum}:
get:
tags:
- "Congressional Record - Daily (CREC)"
summary: "Query: congress, bill number, bill type"
operationId: "crecTypeFetchUsingGET"
consumes:
- "application/json"
produces:
- "*/*"
parameters:
- name: "congress"
in: "path"
description: "This is the numerical Congress number. Sample value is 115."
required: true
type: "string"
- name: "billtype"
in: "path"
description: "Values are hr, s, hjres, sjres, hconres, sconres, hres, sres."
required: true
type: "string"
enum:
- "hr"
- "s"
- "hjres"
- "sjres"
- "hconres"
- "sconres"
- "hres"
- "sres"
- name: "billnum"
in: "path"
description: "This is the numerical bill number. Sample value is 997."
required: true
type: "integer"
format: "int32"
- name: "link-type"
in: "query"
description: "This is the format of the returned document. Default is html.\
\ Other values are pdf, details, context, related."
required: false
type: "string"
enum:
- "pdf"
- "html"
- "details"
- "context"
- "related"
responses:
200:
description: "OK"
schema:
type: "object"
properties: {}
/crec/section/{section}:
get:
tags:
- "Congressional Record - Daily (CREC)"
summary: "Query: section, publish date OR most recent"
operationId: "crecSectionFetchUsingGET"
consumes:
- "application/json"
produces:
- "*/*"
parameters:
- name: "section"
in: "path"
description: "This is the Congressional Record section. Values are dailydigest,\
\ senate, house, extensions."
required: true
type: "string"
enum:
- "dailydigest"
- "senate"
- "house"
- "extensions"
- name: "publishdate"
in: "query"
description: "If date is not provided, the most recent version of the Congressional\
\ Record section is returned. Values are date formated as yyyy-mm-dd or\
\ mostrecent. Default is most recent."
required: false
type: "string"
- name: "link-type"
in: "query"
description: "This is the format of the returned document. Default is pdf.\
\ Other values are mods, premis, details, context, related. Note: mods,\
\ premis, and details are returned at the package level because they are\
\ not available for section level granules."
required: false
type: "string"
enum:
- "pdf"
- "mods"
- "premis"
- "details"
- "context"
- "related"
responses:
200:
description: "OK"
schema:
type: "object"
properties: {}
/crec/type/{type}:
get:
tags:
- "Congressional Record - Daily (CREC)"
summary: "Query: document type, publish date OR most recent"
operationId: "crecTypeFetchUsingGET_1"
consumes:
- "application/json"
produces:
- "*/*"
parameters:
- name: "type"
in: "path"
description: "This is the type of Congressional Record document within each\
\ section. Please see tables below for values."
required: true
type: "string"
enum:
- "ddallother"
- "ddschamber"
- "ddscmeetings"
- "ddhchamber"
- "ddhcmeetings"
- "ddnewpublaws"
- "ddahead"
- "ddcommitteemeetings"
- "ddresumeongoing"
- "ddresumefinal"
- "ddendmatter"
- "allother"
- "prayer"
- "pledge"
- "adjournment"
- "executivecomm"
- "jointmeetings"
- "enrolledsigned"
- "enrolledpresented"
- "msgpresident"
- "technicalcorrections"
- "personalexplain"
- "recognizing"
- "honoring"
- "commemorating"
- "celebrating"
- "commending"
- "passingof"
- "tributeto"
- "congratulations"
- "retirement"
- "designating"
- "inmemoryof"
- "hdesignation"
- "hjournal"
- "hmessage"
- "hclerk"
- "hannouncement"
- "hmorningdebate"
- "hreporton"
- "hconfreporton"
- "hsenatebillreferred"
- "hlegprogram"
- "htimelimit"
- "hexpenditure"
- "hcorrections"
- "hpetitions"
- "hamendments"
- "hearmarks"
- "senateallother"
- "sappointment"
- "sorder"
- "sschedule"
- "ssschedule"
- "smeasuredcal"
- "smbusiness"
- "sconbusiness"
- "srecess"
- "sadditional"
- "smsghouse"
- "scommreport"
- "sexecreport"
- "spetandmem"
- "sreferred"
- "sreadfirst"
- "sdischarged"
- "sdichargeref"
- "smsgexec"
- "sintrobills"
- "ssubmission"
- "scosponsors"
- "sstatements"
- "ssubmitted"
- "sresolution"
- "samendmentssub"
- "samendmenttext"
- "snotice"
- "sauthority"
- "sprivileges"
- "sprogram"
- "scalendar"
- "sconsentagree"
- "sconsentrequest"
- "sorderfor"
- "sexecsession"
- "sexeccal"
- "slegislative"
- "snominations"
- "swithdrawal"
- "sconfirmations"
- "scloture"
- "esenatecommittee"
- "eintroductionof"
- name: "publishdate"
in: "query"
description: "If date is not provided, the most recent version of the Congressional\
\ Record document is returned. Values are date formated as yyyy-mm-dd or\
\ mostrecent. Default is most recent."
required: false
type: "string"
- name: "link-type"
in: "query"
description: "This is the format of the returned document. Default is pdf.\
\ Other values are html, mods, premis, details, context, related."
required: false
type: "string"
enum:
- "pdf"
- "html"
- "mods"