bill_publications.Rd
Returns details of all publications associated with a specific bill or all bills.
bill_publications(ID = NULL, publication_type = NULL, start_date = "1900-01-01", end_date = Sys.Date(), extra_args = NULL, tidy = TRUE, tidy_style = "snake", verbose = FALSE) hansard_bill_publications(ID = NULL, publication_type = NULL, start_date = "1900-01-01", end_date = Sys.Date(), extra_args = NULL, tidy = TRUE, tidy_style = "snake", verbose = FALSE)
ID | The ID of a specific bill to return publications for.
If |
---|---|
publication_type | The type of bill publication to return, in the form
of a string. For a character vector of bill publication types, see
|
start_date | Only includes bill publications on or after this date.
Accepts character values in |
end_date | Only includes bill publicationson or before this date.
Accepts character values in |
extra_args | Additional parameters and queries to pass to API. These
queries must be strings and start with "&". See the
API documentation
or the package vignette for more details. Defaults to |
tidy | Logical parameter. If |
tidy_style | The style to convert variable names to, if
|
verbose | If |
A tibble with details on bill publications.
# NOT RUN { # Requesting a specific publication x <- bill_publications(ID = 752025) # Requesting all publications after a given date y <- bill_publications(start_date = "2018-01-01") # }