My json object contains the following data:
[
{
"help": "Ensure ARIA attributes are provided",
"nodes": [
{
"all": [],
"impact": "critical",
"html": "<input id=\"chkPrvt\" onclick=\"clkSec()\" name=\"trusted\" value=\"4\" type=\"checkbox\" class=\"chk\" role=\"checkbox\" aria-labelledby=\"privateLabel\">",
"none": [],
"any": [
{
"data": [
"aria-checked"
],
"impact": "critical",
"relatedNodes": [],
"id": "aria-required-attr",
"message": "Required ARIA attribute not present: aria-checked"
}
],
"target": [
"#chkPrvt"
]
},
{
"all": [],
"impact": "critical",
"html": "<input id=\"chkBsc\" type=\"checkbox\" onclick=\"clkBsc();\" class=\"chk\" role=\"checkbox\" aria-labelledby=\"lightLabel\">",
"none": [],
"any": [
{
"data": [
"aria-checked"
],
"impact": "critical",
"relatedNodes": [],
"id": "aria-required-attr",
"message": "Required ARIA attribute not present: aria-checked"
}
],
"target": [
"#chkBsc"
]
}
],
"impact": "critical",
"description": "Ensures elements with ARIA roles have all required ARIA attributes",
"helpUrl": "https://dequeuniversity.com/rules/axe/2.1/aria-required-attr?application=axeAPI",
"id": "aria-required-attr",
"tags": [
"wcag2a",
"wcag411",
"wcag412"
]
}
]
I am looking to transform this JSON data into an HTML table using either Javascript or Java. Any suggestions on how to accomplish this would be greatly appreciated.
Your advice on this matter would be very helpful. Thank you in advance!