schema.org

Is there a Schema.org type for SaaS or subscriptions?

走远了吗. 提交于 2019-12-03 07:24:46
We sell a Software as a Service with a monthly subscription, I’m trying to figure out if we can provide metadata through Schema.org’s specifications. I have been considering products , but it doesn’t seem to support subscription costs. For products, Google seems to have e-commerce physical object-type stuff in mind. There is also Software applications , but that seems to be made for downloadable software rather than web-apps. What should I use? unor There are different possible perspectives: It’s a SoftwareApplication (or the more specific WebApplication , maybe with browserRequirements ). It

Validation error: “The itemprop attribute was specified, but the element is not a property of any item”

怎甘沉沦 提交于 2019-12-03 02:26:13
For better SEO I need put some meta on my page like this: <!-- Schema.org markup for Google+ --> <meta itemprop="name" content="The Name or Title Here"> <meta itemprop="description" content="This is the page description"> <meta itemprop="image" content="http://www.example.com/image.jpg"> Here is the source . Then I check this code on Markup Validation Service : <!DOCTYPE html> <html> <head lang="en"> <meta itemprop="name" content="The Name or Title Here"> <meta itemprop="description" content="This is the page description"> <meta itemprop="image" content="http://www.example.com/image.jpg">

Schema.org Product type has no property price?

…衆ロ難τιáo~ 提交于 2019-12-02 21:31:27
问题 I have a webshop. On the product detail pages I use the Product type from schema.org: http://schema.org/Product It supports the properties name , description , image and url . However, it does not seem to support the inclusion of a "price" property, based on for example https://schema.org/price I find it weird that the Product definition does not seem to support a price. Or am I using the wrong type? 回答1: Yes, the price property is not defined for the Product type. You might want to use the

Should Schema.org dateModified have some default value if not available?

*爱你&永不变心* 提交于 2019-12-02 13:15:27
问题 For Schema.org Article I get an error in https://developers.google.com/structured-data/testing-tool/ for dateModified : The dateModified field is recommended. Please provide a value if available. Do I have to write something that I don't have modified date? Because a lot of posts weren't updated. I am unsure if Google is telling me only that it is recommended since there is bright red sign telling me I have an error and this doesn't look promising for my boss who will be checking after me :)

What is the Schema.org markup for a group of Things?

不打扰是莪最后的温柔 提交于 2019-12-02 11:36:11
问题 I understand how to do schema markup for a specific thing (a shoe, for example). But how do you do the schema markup for a group of things? "Men's Running Shoes" for example. 回答1: A page that is primarily about one thing: ItemPage mainEntity Thing A page that is primarily about a list of things: CollectionPage mainEntity ItemList A page that is primarily about a collection of things: CollectionPage mainEntity Collection A page that is about multiple things (where a list/collection isn’t

What is the name property in schema.org?

限于喜欢 提交于 2019-12-02 10:07:00
问题 I have a website with news articles, and I'm trying to employ the schema.org's structured data. It says that the name property is required, but I don't really know what it should hold. In a news article, the title of the article should go under the headline property, the author name is under author . So it's a bit unclear what the name property has left to hold? The only thing Schema.org has to say about it, is that it should be "The name of the item", and that the value should be of a text

Schema.org Product type has no property price?

♀尐吖头ヾ 提交于 2019-12-02 08:41:06
I have a webshop. On the product detail pages I use the Product type from schema.org: http://schema.org/Product It supports the properties name , description , image and url . However, it does not seem to support the inclusion of a "price" property, based on for example https://schema.org/price I find it weird that the Product definition does not seem to support a price. Or am I using the wrong type? Yes, the price property is not defined for the Product type . You might want to use the Offer type . Either on its own (instead of Product ), or in combination with Product (related via offers /

What is the Schema.org markup for a group of Things?

孤街醉人 提交于 2019-12-02 08:14:17
I understand how to do schema markup for a specific thing (a shoe, for example). But how do you do the schema markup for a group of things? "Men's Running Shoes" for example. A page that is primarily about one thing: ItemPage mainEntity Thing A page that is primarily about a list of things: CollectionPage mainEntity ItemList A page that is primarily about a collection of things: CollectionPage mainEntity Collection A page that is about multiple things (where a list/collection isn’t needed or doesn’t make sense): CollectionPage hasPart Thing 来源: https://stackoverflow.com/questions/53266384/what

Schema.org for acronym / abbreviation (in a glossary)

心已入冬 提交于 2019-12-02 07:27:36
I'd like to mark my list of acronyms/abbreviations in my glossary of my website with Schema.org (using Microdata). Which type of Schema.org is the right one for that? I can't find any related type in the full list on schema.org . The type DefinedTerm (which is currently in Pending , so it’s subject to change) is suitable for a word, name, acronym, phrase, etc. with a formal definition In a glossary, you would use the name property for the term, and the description property for what the term stands for. <p itemscope itemtype="https://schema.org/DefinedTerm"> <span itemprop="name">SO</span>:

What is the name property in schema.org?

旧街凉风 提交于 2019-12-02 07:12:43
I have a website with news articles, and I'm trying to employ the schema.org's structured data. It says that the name property is required, but I don't really know what it should hold. In a news article, the title of the article should go under the headline property, the author name is under author . So it's a bit unclear what the name property has left to hold? The only thing Schema.org has to say about it, is that it should be "The name of the item", and that the value should be of a text type. And the name of the item is its title.. but that seems like duplicating content, and Google is