{
    "type": "object",
    "properties": {
        "lead_media": {
            "type": "object",
            "properties": {
                "content_type": {
                    "type": "string",
                    "enum": [
                        "video",
                        "image"
                    ]
                },
                "content": {
                    "oneOf": [
                        {
                            "$ref": "#/components/schemas/Video"
                        },
                        {
                            "$ref": "#/components/schemas/Image"
                        }
                    ]
                }
            }
        },
        "title": {
            "type": "string"
        },
        "caption": {
            "type": "string"
        },
        "tint": {
            "type": "string",
            "enum": [
                "NONE",
                "LIGHT",
                "MEDIUM",
                "DARK"
            ],
            "default": "NONE"
        },
        "focal_point": {
            "type": "object",
            "nullable": true,
            "properties": {
                "x": {
                    "type": "string",
                    "default": "",
                    "enum": [
                        "LEFT",
                        "MIDDLE",
                        "RIGHT"
                    ]
                },
                "y": {
                    "type": "string",
                    "enum": [
                        "TOP",
                        "MIDDLE",
                        "BOTTOM"
                    ]
                }
            },
            "required": [
                "x",
                "y"
            ]
        },
        "text_position": {
            "type": "object",
            "nullable": true,
            "properties": {
                "x": {
                    "type": "string",
                    "enum": [
                        "LEFT",
                        "MIDDLE",
                        "RIGHT"
                    ],
                    "default": "LEFT"
                },
                "y": {
                    "type": "string",
                    "enum": [
                        "TOP",
                        "MIDDLE",
                        "BOTTOM"
                    ],
                    "default": "BOTTOM"
                }
            },
            "required": [
                "x",
                "y"
            ]
        },
        "theme": {
            "type": "string",
            "enum": [
                "NEGATIVE",
                "POSITIVE"
            ]
        },
        "show_arrow_down": {
            "type": "boolean",
            "default": true
        },
        "kicker": {
            "type": "string"
        }
    },
    "required": [
        "lead_media",
        "tint",
        "theme"
    ]
}
