Add a new category to this project.
create_category(name, conn)
Unique (lowercase) category name in the project
gor connection structure, create it using platform_connect
a list of category attrbues
if (FALSE) {
api_key <- Sys.getenv("GOR_API_KEY")
project <- Sys.getenv("GOR_PROJECT")
conn <- platform_connect(api_key, project)
name <- "testCat1"
category <- create_category(name, conn)
}