Get contents of an IATF page from the Official Gazette

get_iatf_page(page)

Arguments

page

A URL of a page of the IATF Resolutions in the Official Gazette website.

Value

A tibble containing absolute links to all the current IATF resolutions from specified page 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_page(page = pages)
#> # A tibble: 10 x 7 #> iatfID iatfTitle iatfDate source type iatfURL checked #> <dbl> <chr> <date> <chr> <chr> <chr> <date> #> 1 61 RESOLUTION NO. 61… 2020-08-06 IATF resol… https://www.of… 2020-08-12 #> 2 60 RESOLUTION NO. 60… 2020-07-30 IATF resol… https://www.of… 2020-08-12 #> 3 60 RESOLUTION NO. 60… 2020-07-30 IATF resol… https://www.of… 2020-08-12 #> 4 59 RESOLUTION NO. 59… 2020-07-28 IATF resol… https://www.of… 2020-08-12 #> 5 58 RESOLUTION NO. 58… 2020-07-23 IATF resol… https://www.of… 2020-08-12 #> 6 57 RESOLUTION NO. 57… 2020-07-21 IATF resol… https://www.of… 2020-08-12 #> 7 NA OMNIBUS GUIDELINE… 2020-07-16 IATF resol… https://www.of… 2020-08-12 #> 8 56 RESOLUTION NO. 56… 2020-07-16 IATF resol… https://www.of… 2020-08-12 #> 9 55 RESOLUTION NO. 55… 2020-07-14 IATF resol… https://www.of… 2020-08-12 #> 10 55 RESOLUTION NO. 55… 2020-07-14 IATF resol… https://www.of… 2020-08-12