I am programmatically generating a JSON-Schema schema. I wish to ensure that the schema is valid. Is there a schema I can validate my schema against?
Please note my use of schema twice in that sentence and the title. I don’t want to validate data against my schema, I want to validate my schema.
Using jsonschema, you can validate a schema against the meta-schema. The core meta-schema is here, but jsonschema bundles it so downloading it is unnecessary.