in migration_toolkit/executors/discover.py [0:0]
def _build_data_object(source_type: SourceType, schema: str, table: str):
return {
SOURCE_TYPE_TO_RDBMS[source_type]: {
SOURCE_TYPE_TO_SCHEMAS[source_type]: [{
SOURCE_TYPE_TO_SCHEMA[source_type]: schema,
SOURCE_TYPE_TO_TABLES[source_type]: [{"table": table}],
}]
}
}