[
    {
        "name": "classes",
        "type": "string",
        "required": false,
        "description": "Classes to add to the gallery."
    },
    {
        "name": "heading",
        "type": "string",
        "required": false,
        "description": "Heading content of gallery."
    },
    {
        "name": "shortDescription",
        "type": "string",
        "required": false,
        "description": "Description of gallery content."
    },
    {
        "name": "surround",
        "type": "boolean",
        "required": false,
        "description": "If true, render with a surrounding background color."
    },
    {
        "name": "items",
        "type": "array",
        "required": true,
        "description": "Cards displayed in the promo gallery"
    },
    {
        "name": "items",
        "type": "array",
        "required": true,
        "description": "Cards displayed in the link list gallery",
        "params": [
            {
                "name": "title",
                "type": "string",
                "required": true,
                "description": "The title of the card heading"
            },
            {
                "name": "links",
                "type": "array",
                "required": true,
                "description": "Items displayed under the heading",
                "params": [
                    {
                        "name": "title",
                        "type": "string",
                        "required": true,
                        "description": "The title of the link"
                    },
                    {
                        "name": "href",
                        "type": "string",
                        "required": true,
                        "description": "URL target of the link"
                    }
                ]
            }
        ]
    }
]