create_maintenance.Rd
Creates the maintenance information of a dataset based off of EML standards.
create_maintenance(status = c("complete", "ongoing"), update_frequency = NULL)
Provide the status of your project or dataset as either complete or ongoing.
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.
A maintenance element that can be appended to a dataset list.
Create Maintenance
create_maintenance(status = "complete")
#> $description
#> [1] "complete"
#>
create_maintenance(status = "ongoing",
update_frequency = "annually")
#> $description
#> [1] "ongoing"
#>
#> $maintenanceUpdateFrequency
#> [1] "annually"
#>