aip_sdk.detect_schema
aip_sdk.detect_schema(df: pd.DataFrame) -> list[dict[str, Any]]
Auto-detect which GDI schema(s) match a DataFrame.
Parameters
dfpd.DataFrame: DataFrame to analyze
Returns
list[dict[str, Any]]: List of detection results sorted by confidence
Examples
>>> results = detect_schema(df)
>>> if results[0]["is_match"]:
... print(f"Detected schema: {results[0]['schema_name']}")