[
    {
        "name": "classes",
        "type": "string",
        "required": false,
        "description": "Classes to add to the footer container."
    },
    {
        "name": "navigation",
        "type": "array",
        "required": false,
        "description": "Array of items for use in the primary navigation section of the footer.",
        "params": [
            {
                "name": "text",
                "type": "string",
                "required": true,
                "description": "List item text in the navigation section of the footer."
            },
            {
                "name": "href",
                "type": "string",
                "required": true,
                "description": "List item href attribute in the navigation section of the footer. Both `text` and `href` attributes need to be present to create a link."
            },
            {
                "name": "attributes",
                "type": "object",
                "required": false,
                "description": "HTML attributes (for example data attributes) to add to the anchor in the footer navigation section."
            }
        ]
    },
    {
        "name": "navigationUtility",
        "type": "array",
        "required": false,
        "description": "Array of items for use in the utility navigation section of the footer.",
        "params": [
            {
                "name": "text",
                "type": "string",
                "required": true,
                "description": "List item text in the navigation section of the footer."
            },
            {
                "name": "href",
                "type": "string",
                "required": true,
                "description": "List item href attribute in the navigation section of the footer. Both `text` and `href` attributes need to be present to create a link."
            },
            {
                "name": "attributes",
                "type": "object",
                "required": false,
                "description": "HTML attributes (for example data attributes) to add to the anchor in the footer navigation section."
            }
        ]
    },
    {
        "name": "navigationSecondary",
        "type": "array",
        "required": false,
        "description": "Array of items for use in the secondary navigation section of the footer.",
        "params": [
            {
                "name": "text",
                "type": "string",
                "required": true,
                "description": "List item text in the navigation section of the footer."
            },
            {
                "name": "href",
                "type": "string",
                "required": true,
                "description": "List item href attribute in the navigation section of the footer. Both `text` and `href` attributes need to be present to create a link."
            },
            {
                "name": "attributes",
                "type": "object",
                "required": false,
                "description": "HTML attributes (for example data attributes) to add to the anchor in the footer navigation section."
            }
        ]
    },
    {
        "name": "navigationSocial",
        "type": "array",
        "required": false,
        "description": "Array of items for use in the social navigation section of the footer.",
        "params": [
            {
                "name": "title",
                "type": "string",
                "required": true,
                "description": "Title for a section."
            },
            {
                "name": "columns",
                "type": "integer",
                "required": false,
                "description": "Amount of columns to display items in navigation section of the footer."
            },
            {
                "name": "width",
                "type": "string",
                "required": false,
                "description": "Width of each navigation section in the footer. Defaults to full width. You can pass any design system grid width here, for example, 'one-third'; 'two-thirds'; 'one-half'."
            },
            {
                "name": "items",
                "type": "array",
                "required": false,
                "description": "Array of items to display in the list in navigation section of the footer.",
                "params": [
                    {
                        "name": "text",
                        "type": "string",
                        "required": true,
                        "description": "List item text in the navigation section of the footer."
                    },
                    {
                        "name": "href",
                        "type": "string",
                        "required": true,
                        "description": "List item href attribute in the navigation section of the footer. Both `text` and `href` attributes need to be present to create a link."
                    },
                    {
                        "name": "attributes",
                        "type": "object",
                        "required": false,
                        "description": "HTML attributes (for example data attributes) to add to the anchor in the footer navigation section."
                    }
                ]
            }
        ]
    }
]