1,435+ schemas JSON Schema 2020-12 OpenAPI 3.1+
https://romain325.github.io/json-schema.org/Person.json https://romain325.github.io/json-schema.org/Organization.json https://romain325.github.io/json-schema.org/catalog.json
components:
schemas:
Person:
$ref: 'https://romain325.github.io/json-schema.org/Person.json'
import requests, jsonschema
schema = requests.get("https://romain325.github.io/json-schema.org/Person.json").json()
data = {"name": "John Doe", "email": "john@example.com"}
jsonschema.validate(data, schema)
allOfThe catalog.json file enables automatic schema discovery in IDEs:
https://romain325.github.io/json-schema.org/catalog.json
Use with VS Code JSON Schema Store extension or JetBrains IDEs for automatic validation.