Request Committee Print Information
Usage
cong_committee_print(
congress = NULL,
chamber = NULL,
number = NULL,
item = NULL,
from_date = NULL,
to_date = NULL,
limit = 20,
offset = 0,
format = "json",
clean = TRUE
)
Arguments
- congress
Congress number to search for. 81 or later are supported.
- chamber
Chamber name. Can be
'house'
,'senate'
, or'nochamber'
.- number
Jacket number for the print. Character (or numeric).
- item
Information to request. Can be
'text'
.- from_date
start date for search, e.g.
'2022-04-01'
. Defaults to most recent.- to_date
end date for search, e.g.
'2022-04-03'
. Defaults to most recent.- limit
number of records to return. Default is 20. Will be truncated to between 1 and 250.
- offset
number of records to skip. Default is 0. Must be non-negative.
- format
Output format for
clean = FALSE
. One ofxml
orjson
.- clean
Default is TRUE. Should output be returned as a
tibble
(TRUE
) or requestedformat
.
Examples
if (FALSE) { # congress::has_congress_key()
# Requires API Key
cong_committee_print()
cong_committee_print(congress = 118)
cong_committee_print(chamber = 'house')
cong_committee_print(congress = 118, chamber = 'house')
cong_committee_print(congress = 117, chamber = 'house', number = '48144')
cong_committee_print(congress = 117, chamber = 'house', number = '48144', item = 'text')
}