Ist es in Ordnung, mehr als einen Telefonwert zu haben, wenn das vorgeschlagene Schema.org-Markup verwendet wird?
<div itemscope itemtype="http://schema.org/Person">
<span>Office:<span itemprop="telephone"><a href="tel:00123456789" itemprop="telephone">00123456789</a></span></span>
<span>Telephone:<span itemprop="telephone"><a href="tel:0987654321">0987654321</a></span></span>
<span>Email:<a href="mailto:[email protected]" itemprop="email">[email protected]</a></span>
</div>
Ich konnte keine bestimmten Artikeltypen für "Office" oder "Mobile" finden.
Ja, wenn Sie die Eigenschaft mehrmals angeben, ist dies in Microdata der richtige Weg.
Wenn Sie Daten zur Telefonnummer bereitstellen möchten, können Sie die Eigenschaft contactPoint
mit dem Wert ContactPoint
für jede Telefonnummer verwenden. Die Eigenschaft contactType
könnte die Art des Kontaktpunkts angeben (z. B. "Office" oder "Mobile").
<div itemscope itemtype="http://schema.org/Person">
<div itemprop="contactPoint" itemscope itemtype="http://schema.org/ContactPoint">
<div><span itemprop="contactType">Office</span>: <a href="tel:00123456789"><span itemprop="telephone">00123456789</span></a></div>
</div>
<div itemprop="contactPoint" itemscope itemtype="http://schema.org/ContactPoint">
<div><span itemprop="contactType">Mobile</span>: <a href="tel:0987654321"><span itemprop="telephone">0987654321</span></a></div>
</div>
</div>