[
    {
        "name": "classes",
        "type": "string",
        "required": false,
        "description": "Classes to add to the container."
    },
    {
        "name": "items",
        "type": "array",
        "required": true,
        "description": "Search result items.",
        "items": [
            {
                "name": "title",
                "type": "string",
                "required": true,
                "description": "Title of the search result"
            },
            {
                "name": "headingLevel",
                "type": "number",
                "required": false,
                "description": "Level of the heading for the search result. Defaults to h3."
            },
            {
                "name": "href",
                "type": "string",
                "required": true,
                "description": "Page linked by the result"
            },
            {
                "name": "summary",
                "type": "string",
                "required": true,
                "description": "Text summary of the returned result"
            },
            {
                "name": "externalSite",
                "type": "string",
                "required": false,
                "description": "If hosted on an external site, the domain of the external site"
            },
            {
                "name": "breadcrumbs",
                "type": "array",
                "required": false,
                "description": "If hosted on the present site, breadcrumbs indicating the search result",
                "items": [
                    {
                        "name": "text",
                        "type": "string",
                        "required": true,
                        "description": "Text content of the breadcrumb item"
                    }
                ]
            }
        ]
    }
]