export declare const Schemas: {
    Definitions: {
        "$schema": string;
        "$id": string;
        "title": string;
        "description": string;
        "definitions": {
            "actor": {
                "$ref": string;
            };
            "show": {
                "$ref": string;
            };
            "movie": {
                "$ref": string;
            };
            "episode": {
                "$ref": string;
            };
            "album": {
                "$ref": string;
            };
            "artist": {
                "$ref": string;
            };
            "actors": {
                "type": string;
                "items": {
                    "$ref": string;
                };
                "uniqueItems": boolean;
            };
            "uniqueStringArray": {
                "type": string;
                "items": {
                    "type": string;
                };
                "uniqueItems": boolean;
            };
        };
    };
    Actor: {
        "$schema": string;
        "$id": string;
        "title": string;
        "description": string;
        "type": string;
        "properties": {
            "name": {
                "type": string;
            };
            "role": {
                "type": string;
            };
            "photo": {
                "type": string[];
                "format": string;
            };
        };
        "additionalProperties": boolean;
        "required": string[];
    };
    Show: {
        "$schema": string;
        "$id": string;
        "title": string;
        "description": string;
        "type": string;
        "properties": {
            "title": {
                "type": string;
            };
            "sort_title": {
                "type": string;
            };
            "original_title": {
                "$ref": string;
            };
            "content_rating": {
                "type": string;
            };
            "tagline": {
                "$ref": string;
            };
            "studio": {
                "$ref": string;
            };
            "aired": {
                "type": string[];
                "format": string;
            };
            "summary": {
                "type": string[];
            };
            "rating": {
                "type": string[];
            };
            "genres": {
                "$ref": string;
            };
            "collections": {
                "$ref": string;
            };
            "actors": {
                "$ref": string;
            };
            "season_summary": {
                "type": string;
                "patternProperties": {
                    "\\d+": {
                        "type": string;
                    };
                };
                "additionalProperties": boolean;
            };
        };
        "additionalProperties": boolean;
        "required": string[];
    };
    Movie: {
        "$schema": string;
        "$id": string;
        "title": string;
        "description": string;
        "type": string;
        "properties": {
            "title": {
                "type": string;
            };
            "sort_title": {
                "type": string;
            };
            "original_title": {
                "$ref": string;
            };
            "content_rating": {
                "type": string;
            };
            "tagline": {
                "$ref": string;
            };
            "studio": {
                "$ref": string;
            };
            "aired": {
                "type": string[];
                "format": string;
            };
            "summary": {
                "type": string[];
            };
            "rating": {
                "type": string[];
            };
            "genres": {
                "$ref": string;
            };
            "collections": {
                "$ref": string;
            };
            "actors": {
                "$ref": string;
            };
            "directors": {
                "$ref": string;
            };
            "writers": {
                "$ref": string;
            };
        };
        "additionalProperties": boolean;
        "required": string[];
    };
    Album: {
        "$schema": string;
        "$id": string;
        "title": string;
        "description": string;
        "type": string;
        "properties": {
            "sort_title": {
                "type": string[];
            };
            "aired": {
                "type": string;
                "format": string;
            };
            "summary": {
                "type": string[];
            };
            "genres": {
                "$ref": string;
            };
            "collections": {
                "$ref": string;
            };
        };
        "additionalProperties": boolean;
        "required": string[];
    };
    Artist: {
        "$schema": string;
        "$id": string;
        "title": string;
        "description": string;
        "type": string;
        "properties": {
            "similar": {
                "$ref": string;
            };
            "summary": {
                "type": string[];
            };
            "sort_title": {
                "type": string[];
            };
            "genres": {
                "$ref": string;
            };
            "collections": {
                "$ref": string;
            };
        };
        "additionalProperties": boolean;
        "required": string[];
    };
    Episode: {
        "$schema": string;
        "$id": string;
        "title": string;
        "description": string;
        "type": string;
        "properties": {
            "title": {
                "$ref": string;
            };
            "content_rating": {
                "type": string;
            };
            "aired": {
                "type": string[];
                "format": string;
            };
            "summary": {
                "type": string[];
            };
            "rating": {
                "type": string[];
            };
            "directors": {
                "$ref": string;
            };
            "writers": {
                "$ref": string;
            };
        };
        "additionalProperties": boolean;
        "required": string[];
    };
};
