Get contents of the IATF pages from the Official Gazette

get_iatf_pages(pages)

Arguments

pages

A character vector of URLs of all pages of the IATF Resolutions in the Official Gazette. This can be created using list_iatf_pages

Value

A tibble containing absolute links to all the current IATF resolutions at time of extraction from the Official Gazette. The tibble contains the following information:

  • idResolution number

  • titleTitle of resolution

  • dateDate (in <YYYY-MM-DD> format) resolution was issued

  • sourceSource of resolution. This is by default from IATF

  • typeType of document. This is by default a resolution

  • urlAbsolute URL for the webpage of the resolution

  • checkedDate (in <YYYY-MM-DD format) table was extracted. This is by default provided by Sys.Date

Examples

pages <- list_iatf_pages(pages = 1) get_iatf_pages(pages = pages)
#> # A tibble: 10 x 7 #> id title date source type url checked #> <dbl> <chr> <date> <chr> <chr> <chr> <date> #> 1 61 RESOLUTION NO. 61… 2020-08-06 IATF reso… https://www.offi… 2020-08-12 #> 2 60 RESOLUTION NO. 60… 2020-07-30 IATF reso… https://www.offi… 2020-08-12 #> 3 60 RESOLUTION NO. 60… 2020-07-30 IATF reso… https://www.offi… 2020-08-12 #> 4 59 RESOLUTION NO. 59… 2020-07-28 IATF reso… https://www.offi… 2020-08-12 #> 5 58 RESOLUTION NO. 58… 2020-07-23 IATF reso… https://www.offi… 2020-08-12 #> 6 57 RESOLUTION NO. 57… 2020-07-21 IATF reso… https://www.offi… 2020-08-12 #> 7 NA OMNIBUS GUIDELINE… 2020-07-16 IATF reso… https://www.offi… 2020-08-12 #> 8 56 RESOLUTION NO. 56… 2020-07-16 IATF reso… https://www.offi… 2020-08-12 #> 9 55 RESOLUTION NO. 55… 2020-07-14 IATF reso… https://www.offi… 2020-08-12 #> 10 55 RESOLUTION NO. 55… 2020-07-14 IATF reso… https://www.offi… 2020-08-12