{
    "$schema": "http://json-schema.org/draft-07/schema",
    "$id": "https://burrito.bible/schema/scripture_flavor_type.schema.json",
    "$$target": "scripture_flavor_type.schema.json",
    "title": "Scripture Flavor Type",
    "type": "object",
    "properties": {
        "flavorType": {
            "type": "object",
            "properties": {
                "name": {
                    "type": "string",
                    "const": "scripture"
                },
                "flavor": {
                    "type": "object",
                    "oneOf": [
                        {
                            "$ref": "scripture/text_translation.schema.json"
                        },
                        {
                            "$ref": "scripture/audio_translation.schema.json"
                        },
                        {
                            "$ref": "scripture/print_publication.schema.json"
                        },
                        {
                            "$ref": "scripture/braille_scripture_publication.schema.json"
                        },
                        {
                            "$ref": "scripture/sign_language_video_translation.schema.json"
                        },
                        {
                            "$ref": "x_flavor.schema.json"
                        }
                    ]
                },
                "bookScope": {
                    "$ref": "book_scope.schema.json"
                }
            },
            "required": ["name", "bookScope", "flavor"],
            "additionalProperties": false
        }
    },
    "additionalProperties": false
}
