pub trait JSONPaths {
// Required methods
fn json_paths(
&self,
explode_array: bool,
inspect_arrays: bool,
) -> Vec<String>;
fn json_paths_types(
&self,
explode_array: bool,
inspect_arrays: bool,
) -> IndexMap<String, String>;
}