{
    "$schema": "http://json-schema.org/draft-07/schema",
    "$id": "https://burrito.bible/schema/source_meta.schema.json",
    "$$target": "source_meta.schema.json",
    "title": "Meta (Source)",
    "type": "object",
    "description": "Information about the Scripture Burrito metadata file (source).",
    "properties": {
        "category": {
            "const": "source"
        },
        "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", "dateCreated", "defaultLocale"],
    "additionalProperties": false
}
