{
    "description": "Yourshot Gallery component.",
    "type": "object",
    "properties": {
        "aspect_ratio_type": {
            "type": "string",
            "nullable": true
        },
        "gallery_size": {
            "type": "string",
            "nullable": true,
            "enum": [
                "XS",
                "S",
                "M",
                "L",
                "FULL"
            ]
        },
        "gallery_type": {
            "type": "string",
            "enum": [
                "daily-dozen",
                "gallery"
            ]
        },
        "gallery_slug": {
            "type": "string"
        },
        "link": {
            "type": "object",
            "properties": {
                "title": {
                    "type": "string"
                },
                "href": {
                    "type": "string",
                    "format": "uri"
                },
                "target": {
                    "type": "string",
                    "enum": [
                        "_blank",
                        "_self",
                        "_parent",
                        "_top"
                    ]
                }
            },
            "required": [
                "network",
                "uri"
            ]
        }
    },
    "required": [
        "gallery_slug",
        "gallery_type"
    ]
}