Data structures 模式标记如何有助于移动应用程序网站?

Data structures 模式标记如何有助于移动应用程序网站?,data-structures,schema,google-local-search,Data Structures,Schema,Google Local Search,我想为移动应用程序网站实现模式标记。我读了schema.org/MobileApplication,但是有很多属性。我不知道哪个属性对本地搜索提供更有效的输出有用?模式标记允许搜索引擎以快捷方式分析大量信息。对于移动应用程序网站,您希望使用诸如-downloadUrl、countriesSupported、fileSize、about、author、description和image之类的属性。数据结构模式谷歌本地搜索 <div itemscope itemtype="http://sch

我想为移动应用程序网站实现模式标记。我读了schema.org/MobileApplication,但是有很多属性。我不知道哪个属性对本地搜索提供更有效的输出有用?

模式标记允许搜索引擎以快捷方式分析大量信息。对于移动应用程序网站,您希望使用诸如-downloadUrl、countriesSupported、fileSize、about、author、description和image之类的属性。

数据结构模式谷歌本地搜索

<div itemscope itemtype="http://schema.org/SoftwareApplication">
  <span itemprop="name">Angry Birds</span> -

  REQUIRES <span itemprop="operatingSystem">ANDROID</span>
  <link itemprop="applicationCategory" href="http://schema.org/GameApplication"/>

  RATING:
  <div itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
    <span itemprop="ratingValue">4.6</span> (
    <span itemprop="ratingCount">8864</span> ratings )
  </div>

  <div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
    Price: $<span itemprop="price">1.00</span>
    <meta itemprop="priceCurrency" content="USD" />
  </div>
</div>

愤怒的小鸟-
需要安卓
评级:
4.6 (
8864(评级)
价格:$1

模式对每个网站页面都很重要。不要混淆,请使用移动应用程序网站所需的属性

这个答案需要更多的解释。欢迎来到堆栈溢出!虽然这个答案可能是正确和有用的,但如果您在答案中包含一些解释,以解释它如何帮助解决问题,则更可取。如果有一个变化(可能是无关的)导致它停止工作,并且用户需要了解它曾经是如何工作的,那么这在将来变得特别有用。