Nothing
# Make sure no new field types have been added to the registry
known_fields <- c("character", "integer", "field", "boolean", "datetime",
"numeric", "url")
endpoint <- Sys.getenv("FDP_endpoint")
tables <- get_tables(endpoint = endpoint) %>%
setdiff(c("users", "groups"))
fields <- lapply(tables, function(x) {
get_fields(x) %>%
dplyr::filter(read_only == "FALSE") %>%
dplyr::select(data_type)}) %>%
unlist() %>%
unique()
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.