Create a new item on ScienceBase with the requested parent and item title. Info can be provided to populate metadata at the time of creation.
Usage
item_create(parent_id = user_id(), title, ..., info)
Examples
if (FALSE) {
# Create an item - by default we use your user ID
item_create(title = "testing 123")
# Pass an object of class sbitem
x <- folder_create(user_id(), "foobar456")
item_create(x, "foobar456-item")
}