Queries the PostgREST OpenAPI spec to retrieve column names and types for a table.
Usage
sb_api_schema(table = NULL, schema = get_schema())Examples
if (FALSE) { # \dontrun{
sb_api_connect()
# Get column names and types for a table
sb_api_schema("users")
# Get schema for a table in a non-default schema
sb_api_schema("orders", schema = "billing")
} # }