| bill_publications {hansard} | R Documentation | 
Bill Publications
Description
Returns details of all publications associated with a specific bill or all bills.
Usage
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)
Arguments
| 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  | 
Value
A tibble with details on bill publications.
See Also
Examples
## 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")
## End(Not run)