Hi, When using reflectiveSchema we must define a static Java class for the schema object, but in our use case the actual data to query is dynamic, define JAVA class for each data combination is impossible, we have an idea that can we make a JSONSchema which accepts a Map<String, List<JSONObject>>, so that each List will be mapped to a table , and each JSONObject mapped to a row, JSONObject keys will be column names. Is there anything similar with this?
Regards