Nothing
#' Request dtr
#' @description
#' Request an API of a datatype registry to get information about a schema
#' @param route A path for requesting a dtr API
#' @return Requested information about the schema
#' @noRd
#'
request_dtr <- function(route) {
req <- httr2::request(route)
resp <- httr2::req_perform(req)
info <- httr2::resp_body_json(resp)
return(info)
}
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.