Are there any python libraries or tools that check if a JSON schema is valid?
I do not want to validate an instance against a JSON schema, but I would like to check if the JSON schema itself is valid or not. For example, if all the required fields are specified or not, or whether the data types are valid types or not.
I already had a look at check_schema()
from jsonschema
library, but this library does not check the aspects that I have mentioned above.