blob: 2409095f84a5ac020debbed2c667673dab961a71 [file]
import json
import jsonschema
import os.path
import sys
with open(sys.argv[1], "r", encoding="utf-8-sig") as f:
contents = json.load(f)
schema_file = os.path.join(
os.path.dirname(__file__),
"..", "..", "..", "Help", "manual", "presets", "schema.json")
with open(schema_file, "r", encoding="utf-8") as f:
schema = json.load(f)
try:
jsonschema.validate(contents, schema)
except (jsonschema.ValidationError, jsonschema.SchemaError) as e:
sys.stderr.write(e.message)
sys.exit(1)