A JSON containing data about the headings inside the referring html page. It contains the total of headings present, the count of each heading from h1 to h6 and the text inside each heading. If there’s no heading or the website content could not be load then return zero.
Key | Type | Description |
---|---|---|
total | integer | Total of html headings found on the referring page. |
h1 | integer | Total of html headings (h1) found on the referring page. |
h2 | integer | Total of html headings (h2) found on the referring page. |
h3 | integer | Total of html headings (h3) found on the referring page. |
h4 | integer | Total of html headings (h4) found on the referring page. |
h5 | integer | Total of html headings (h5) found on the referring page. |
h6 | integer | Total of html headings (h6) found on the referring page. |
tags | ListMap" | A list containing the text inside in each heading present on the referring html page. |
type | String | The header tag type found. |
text | String | The text inside the heading. |