I was reading Google documentation on how to impletement Sitelinks Search Box. In the example, they use
itemscope itemtype="http://schema.org/WebSite"
to implement sub-properties like potentialAction
, etc.
However, after reading the schema documentation CreativeWork
it looks to me that WebSite
is inferior to WebPage
.
- They inherit the same properites from
CreativeWork
WebPage
has its own properties, whileWebSite
doesn't
Is there a scenario where WebSite
should be used / is preferable?
WebSite
on body to usepotentialAction
, but I also want props fromWebPage
? Can I nest these items? – Hyder