Mobile app version of vmapp.org
Login or Join
Sue5673885

: Schema.org (Microdata) for online application I have a site with some onpage scripts such as "case converter" or "list sorter". I wish add microdata and I'm not sure about the right kind. The

@Sue5673885

Posted in: #Microdata #SchemaOrg #SemanticWeb #WebApplications

I have a site with some onpage scripts such as "case converter" or "list sorter". I wish add microdata and I'm not sure about the right kind.
The "app" is available only on page (no download, but just a form) and is accessible via browser.
Could be the right type Software Apps?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Sue5673885

1 Comments

Sorted by latest first Latest Oldest Best

 

@Ogunnowo487

WebApplication (which is a subtype of SoftwareApplication) seems to be the type you need.

<div itemscope itemtype="http://schema.org/WebApplication">
</div>


To convey that the web app is the current page, you could use WebPage in addition. Either make it a MTE and use both types together, or use mainEntity.

<div itemscope itemtype="http://schema.org/WebApplication schema.org/WebPage >
</div>


<div itemscope itemtype="http://schema.org/WebPage">
<div itemprop="mainEntity" itemscope itemtype="http://schema.org/WebApplication">
</div>
</div>


Which one to use kind of depends on your understanding of it: "the page is the app" vs. "the app is part of the page".

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme