Creates the maintenance information of a dataset based off of EML standards.

create_maintenance(status = c("complete", "ongoing"), update_frequency = NULL)

Arguments

status

Provide the status of your project or dataset as either complete or ongoing.

update_frequency

Only needed if the status of the project or dataset is ongoing. If this is the case, please provide the frequency of which the project or dataset is updated.

Value

A maintenance element that can be appended to a dataset list.

Details

Create Maintenance

Examples

create_maintenance(status = "complete")
#> $description
#> [1] "complete"
#> 

create_maintenance(status = "ongoing",
                   update_frequency = "annually")
#> $description
#> [1] "ongoing"
#> 
#> $maintenanceUpdateFrequency
#> [1] "annually"
#>