{
    "$schema": "http://json-schema.org/draft-07/schema",
    "$id": "https://burrito.bible/schema/recipe.schema.json",
    "$$target": "recipe.schema.json",
    "title": "Recipes",
    "type": "array",
    "description": "Scripture Burrito recipes.",
    "items": {
        "type": "object",
        "properties": {
            "idAuthority": {
                "type": "string"
            },
            "operation": {
                "type": "string"
            },
            "data": {
                "type": "object"
            }
        },
        "required": ["idAuthority", "operation", "data"],
        "additionalProperties": false
    },
    "minItems": 1
}
