I have been tasked with adding Google jobs schema to our job board website.
We have a mini website featuring a job list page and individual job pages.
Can someone help point me in the right direction, I've read up on schema but a little confused.
Do we put the schema on the list page or the detail page?
Am I supposed to add it inline using itemscope, itemprop etc or using the script <script type="application/ld+json"> or both?
So if it helps, the job search page lists the jobs like this
and the detail pages
Thanks
We have a mini website featuring a job list page and individual job pages.
Can someone help point me in the right direction, I've read up on schema but a little confused.
Do we put the schema on the list page or the detail page?
Am I supposed to add it inline using itemscope, itemprop etc or using the script <script type="application/ld+json"> or both?
So if it helps, the job search page lists the jobs like this
Code:
<div class='jobList'>
[indent]<div class='jobItem'><h2>job title</h2><p>Excerpt</p></div>[/indent]
[indent]<div class='jobItem'><h2>job title</h2><p>Excerpt</p></div>[/indent]
[indent]<div class='jobItem'><h2>job title</h2><p>Excerpt</p></div>[/indent]
</div>
and the detail pages
Code:
<h1>job title</h1>
<div class='jobid'></div>
<div class='jobsalary'></div>
<div class='jobdesc'></div>
Thanks