Skip to contents

Retrieves available subtypes for each USCIS form

Usage

uscis_form_types(forms, cookie_file = "uscis.cookies")

Arguments

forms

Data frame of forms from uscis_forms()

Path to cookie file

Value

Data frame of form types and subtypes with the following columns:

form_name

Character. The name/identifier of the USCIS form

form_key

Character. Unique identifier key for the form

form_type

Character. Type classification of the form

form_type_description_en

Character. Detailed description of the form type in English

form_type_description_es

Character. Detailed description of the form type in Spanish

Examples

if (FALSE) { # \dontrun{
# Initialize USCIS session
uscis_init_session()

# Retrieve USCIS forms
forms <- uscis_forms()

# Retrieve form types based on form names
form_types <- uscis_form_types(forms)
head(form_types)
} # }