Asynchronously reads and validates JSON data from one or more files against a provided schema.
This function allows for the loading of configuration or data from JSON files specified by path or paths.
It handles reading multiple files in parallel, parses them as JSON, and then merges all objects into a single
object to be validated against a given schema. Exception handling is integrated to manage and report errors
effectively during file reading and parsing stages.
Asynchronously reads and validates JSON data from one or more files against a provided schema.
This function allows for the loading of configuration or data from JSON files specified by path or paths. It handles reading multiple files in parallel, parses them as JSON, and then merges all objects into a single object to be validated against a given schema. Exception handling is integrated to manage and report errors effectively during file reading and parsing stages.
Example