{
    "$schema": "http://json-schema.org/draft-07/schema",
    "$id": "https://burrito.bible/schema/template_meta.schema.json",
    "$$target": "template_meta.schema.json",
    "title": "Meta (Template)",
    "type": "object",
    "description": "Information about the Scripture Burrito metadata file.",
    "properties": {
        "category": {
            "const": "template"
        },
        "templateName": {
            "$ref": "common.schema.json#/definitions/localizedText"
        },
        "dateCreated": {
            "$ref": "meta_date_created.schema.json"
        },
        "version": {
            "$ref": "meta_version.schema.json"
        },
        "generator": {
            "$ref": "software_and_user_info.schema.json",
            "description": "Information about the program and user who generated this burrito."
        },
        "defaultLocale": {
            "$ref": "meta_default_language.schema.json"
        },
        "normalization": {
            "$ref": "normalization.schema.json"
        },
        "comments": {
            "$ref": "meta_comments.schema.json"
        }
    },
    "required": ["version", "category", "defaultLocale", "dateCreated", "templateName"],
    "additionalProperties": false
}
