I have a question regarding structured data (JSON-LD) for SEO.
What I would like to know if it is possible to add H1, H2, H3 tags in my JSON-LD code in my page header.
Example :
H1 : My wonderful website
My wonderful website, bla bla
H2 : Where is my wonderful website about?
My wonderful website is about birds and bees
H3 : Why watching my wonderful website?
Because it's great!
Now is there a way to add this in a structured data feed?
So is there anything like :
{
"@type": "heading",
"@id": "https://www.example.com/#mywonderfulwebsite",
"name": "h1",
"text": "My wonderful website",
"description": "My wonderful website, bla..."
},
{
"@type": "heading",
"@id": "https://www.example.com/#whereismywonderfulwebsiteabout",
"name": "h2",
"text": "Where is my wonderful website about?",
"description": "My wonderful website is about..."
},
{
"@type": "heading",
"@id": "https://www.example.com/#whywatchingmywonderfulwebsite",
"name": "h3",
"text": "Why watching my wonderful website?",
"description": "Because it's great!..."
}