[
  {
    "name": "id",
    "type": "string",
    "required": false,
    "description": "The ID of the task list.",
    "released": "10.0.0"
  },
  {
    "name": "classes",
    "type": "string",
    "required": false,
    "description": "Classes to add to the `ul` container for the task list.",
    "released": "9.1.0"
  },
  {
    "name": "attributes",
    "type": "object",
    "required": false,
    "description": "HTML attributes (for example data attributes) to add to the `ul` container for the task list.",
    "released": "9.1.0"
  },
  {
    "name": "idPrefix",
    "type": "string",
    "required": false,
    "description": "Optional prefix. This is used to prefix the `id` attribute for the task list item tag and hint, separated by `\"-\"`. Defaults to `\"task-list\"`.",
    "released": "9.1.0"
  },
  {
    "name": "items",
    "type": "array",
    "required": true,
    "description": "The items for each task within the task list component.",
    "released": "9.1.0",
    "params": [
      {
        "name": "title",
        "type": "object",
        "required": true,
        "description": "Replaced by the `item.heading` option.",
        "alias": "heading",
        "released": "9.1.0",
        "deprecated": "10.6.0",
        "isComponent": true
      },
      {
        "name": "heading",
        "type": "object",
        "required": true,
        "description": "The main heading for the task within the task list component.",
        "released": "10.6.0",
        "isComponent": true,
        "params": [
          {
            "name": "id",
            "type": "string",
            "required": false,
            "description": "The ID of the heading.",
            "released": "10.6.0"
          },
          {
            "name": "text",
            "type": "string",
            "required": true,
            "description": "If `html` is set, this is not required. Text for the heading. If `html` is provided, the `text` option will be ignored.",
            "released": "10.6.0"
          },
          {
            "name": "html",
            "type": "string",
            "required": true,
            "description": "If `text` is set, this is not required. HTML for the heading. If `html` is provided, the `text` option will be ignored.",
            "released": "10.6.0"
          },
          {
            "name": "visuallyHiddenText",
            "type": "string",
            "required": false,
            "description": "A visually hidden suffix added to the heading.",
            "released": "10.6.0"
          },
          {
            "name": "classes",
            "type": "string",
            "required": false,
            "description": "Classes to add to the heading.",
            "released": "10.6.0"
          },
          {
            "name": "attributes",
            "type": "object",
            "required": false,
            "description": "HTML attributes (for example data attributes) to add to the heading.",
            "released": "10.6.0"
          }
        ]
      },
      {
        "name": "hint",
        "type": "object",
        "required": false,
        "description": "Can be used to add a hint to each task within the task list component.",
        "released": "9.1.0",
        "params": [
          {
            "name": "text",
            "type": "string",
            "required": true,
            "description": "Text to use within the hint. If `html` is provided, the `text` option will be ignored.",
            "released": "9.1.0"
          },
          {
            "name": "html",
            "type": "string",
            "required": true,
            "description": "HTML to use within the hint. If `html` is provided, the `text` option will be ignored.",
            "released": "9.1.0"
          }
        ]
      },
      {
        "name": "status",
        "type": "object",
        "required": true,
        "description": "The status for each task within the task list component.",
        "released": "9.1.0",
        "params": [
          {
            "name": "tag",
            "type": "object",
            "required": false,
            "description": "Can be used to add a tag to the status of the task within the task list component.",
            "released": "9.1.0",
            "isComponent": true
          },
          {
            "name": "text",
            "type": "string",
            "required": false,
            "description": "Text to use for the status, as an alternative to using a tag. If `html` or `tag` is provided, the `text` option will be ignored.",
            "released": "9.1.0"
          },
          {
            "name": "html",
            "type": "string",
            "required": false,
            "description": "HTML to use for the status, as an alternative to using a tag. If `html` or `tag` is provided, the `text` option will be ignored.",
            "released": "9.1.0"
          },
          {
            "name": "classes",
            "type": "string",
            "required": false,
            "description": "Classes to add to the status container.",
            "released": "9.1.0"
          }
        ]
      },
      {
        "name": "href",
        "type": "string",
        "required": false,
        "description": "The value of the link's `href` attribute for the task list item.",
        "released": "9.1.0"
      },
      {
        "name": "classes",
        "type": "string",
        "required": false,
        "description": "Classes to add to the item `div`.",
        "released": "9.1.0"
      }
    ]
  }
]
