{
    "description": "Replace the Gallery component.",
    "type": "object",
    "properties": {
        "aspect_ratio_type": {
            "type": "string",
            "nullable": true
        },
        "gallery_size": {
            "type": "string",
            "nullable": true,
            "enum": [
                "XS",
                "S",
                "M",
                "L",
                "FULL"
            ]
        },
        "images": {
            "type": "array",
            "items": {
                "$ref": "#/components/schemas/Image"
            }
        },
        "show_image_asset_sources": {
            "type": "boolean"
        },
        "show_image_titles": {
            "type": "boolean"
        },
        "show_image_captions": {
            "type": "boolean"
        },
        "show_image_credits": {
            "type": "boolean"
        },
        "title": {
            "type": "string",
            "nullable": true
        }
    },
    "required": [
        "images"
    ]
}
