Mobile app version of vmapp.org
Login or Join
Ann8826881

: Is WebPage or Article correct for in-depth guides? I want to apply structured data to my website and I'm trying to decide which Schema.org type I should use for an in-depth guides on particular

@Ann8826881

Posted in: #Articles #SchemaOrg

I want to apply structured data to my website and I'm trying to decide which Schema.org type I should use for an in-depth guides on particular topics.

For example:


An in-depth guide on how to find accommodation in a particular country
An in-depth guide on taxes for a particular country
An in-depth guide on how to find a job for a specific role


The guides tend to be long, often 2000 words plus in the case of the tax ones.

The two main options would seem to be leaving it with the default WebPage and using the default tags passed down from CreativeWork or using the Article type.

I was leaning towards Article but schema.org defines it as:


An article, such as a news article or piece of investigative report. Newspapers and magazines have articles of many different types and this is intended to cover them all.


It's definitely not a news article or an investigative report.

What are peoples opinions? Would you expect the Article type to cover in-depth guides?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Ann8826881

1 Comments

Sorted by latest first Latest Oldest Best

 

@Sherry384

WebPage vs. Article

Article would contain data about the actual (main) content, while WebPage would contain data about the whole page and everything on it (e.g., the site navigation/footer etc.).

So it’s not necessarily either-or; it’s not uncommon to use both:

<body itemscope itemtype="http://schema.org/WebPage">
<article itemprop="mainEntity" itemscope itemtype="http://schema.org/Article">
</article>
</body>


If you want to use only one type, I’d go with Article. It’s about the content, not the medium which transports it.

Is Article appropriate?

Yes.

"news article or piece of investigative report": these are only examples. Have a look at Article’s sub-types:


BlogPosting (see related answer about Article vs. BlogPosting)
NewsArticle
ScholarlyArticle


MedicalScholarlyArticle

TechArticle


APIReference



So you can see that it’s for way more than just newspaper-related articles.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme