Views
No views yet
This is a schema repository, not a model. There are no weights. Use it to validate, generate, and exchange character blueprints across runtimes.
| File | What |
|---|---|
schema/character-blueprint.schema.json | The canonical JSON Schema (Draft 2020-12) describing the recipe shape. |
LICENSE | MIT. |
1npx -y ajv-cli validate \
2 -s schema/character-blueprint.schema.json \
3 -d my-recipe.json1# Python
2import json, jsonschema
3schema = json.load(open("schema/character-blueprint.schema.json"))
4recipe = json.load(open("my-recipe.json"))
5jsonschema.validate(recipe, schema)LICENSE.