isflextable(table_name: str, schema: str,)
Checks if the input relation is a flextable.
bool : True if the relation is a flex table.
from verticapy.utilities import read_json, isflextable read_json("laliga/*.json", table_name = "laliga", materialize = False) isflextable(table_name = "laliga", schema = "v_temp_schema")
True