Fetch all the meeting slots of a given committee(s), or the committee of a given meeting slot(s).

meeting_committee(
  slot_id = NULL,
  meet_id = NULL,
  committee_id = NULL,
  extra_param = NULL,
  count = FALSE,
  verbose = TRUE
)

legco_meeting_committee(
  slot_id = NULL,
  meet_id = NULL,
  committee_id = NULL,
  extra_param = NULL,
  count = FALSE,
  verbose = TRUE
)

Arguments

slot_id

the id of a meeting slot, or a vector of ids. If NULL, returns all meetings. Defaults to NULL.

meet_id

the id of a meeting, or a vector of ids. If NULL, returns all meetings. Useful for matching meeting with records from the Attendance Database. Defaults to NULL.

committee_id

the id of a committee, or a vector of ids. If NULL, returns results of all committees. Defaults to NULL.

extra_param

additional query parameters defined in LegCo API. Must begin with "&".

count

logical: Whether to return only the total count of records that matches the parameter(s) instead of the result. Defaults to FALSE.

verbose

logical: Whether to display progress messages when fetching data? Defaults to TRUE.

Details

This function corresponds to the Tmeeting_committee data endpoint of the Meeting Schedule Database.

Functions

Functions of the Meeting Schedule Database:

See also

LegCo API documentation for the Meeting Schedule database: https://www.legco.gov.hk/en/open-legco/open-data/meeting-schedule.html

Examples

# \donttest{
# Fetch all meetings of Subcommittee on Issues Relating to Bazaars
x <- meeting_committee(committee_id = 2704)
#> Retrieving records...
#> Retrieved 15 record(s). 15 record(s) available in total.
# }