{
    "type": "object",
    "oneOf": [
        {
            "properties": {
                "content_type": {
                    "type": "string",
                    "enum": [
                        "image"
                    ]
                },
                "image": {
                    "$ref": "#/components/schemas/Image"
                }
            }
        },
        {
            "properties": {
                "content_type": {
                    "type": "string",
                    "enum": [
                        "video"
                    ]
                },
                "video": {
                    "$ref": "#/components/schemas/Video"
                }
            }
        },
        {
            "description": "Replace Gallery component",
            "properties": {
                "content_type": {
                    "type": "string",
                    "enum": [
                        "image_gallery"
                    ]
                },
                "image_gallery": {
                    "$ref": "#/components/schemas/ImageGallery"
                }
            }
        },
        {
            "properties": {
                "content_type": {
                    "type": "string",
                    "enum": [
                        "immersive_lead"
                    ]
                },
                "immersive_lead": {
                    "$ref": "#/components/schemas/ImmersiveLead"
                }
            }
        }
    ]
}
