FAQ
Users' questions and answers posted on your site can be structured and displayed on the Yandex search result pages. To help the search robot detect the best answer, mark up appropriate pages with two Schema.org markup types — Question and Answer.
Snippet without semantic markup:

Snippet with markup (displaying the best answer):

A single page should include one question and the corresponding answers to it.
Supported markup types and schema fields
Special snippets are shown for pages that have the Question and Answer types of markup. The property types that are recognized by Yandex are listed below. The Schema.org data type that the property value should correspond to is indicated in the second column.
Property | Type | Description | Required |
---|---|---|---|
name | Text | Title of the question. Entered as a Question property. | Yes |
acceptedAnswer or suggestedAnswer | Answer | Best or regular answer. An answer marked up using this property is highly likely to be shown in the snippet. Entered as a Question property. | Yes |
text | Text | Answer text. Entered as an Answer property. | No |
upvoteCount | Integer | Number of votes for a specific answer. The answer with the largest value in this field is highly likely to be shown in the snippet unless the | No |
Property | Type | Description | Required |
---|---|---|---|
name | Text | Title of the question. Entered as a Question property. | Yes |
acceptedAnswer or suggestedAnswer | Answer | Best or regular answer. An answer marked up using this property is highly likely to be shown in the snippet. Entered as a Question property. | Yes |
text | Text | Answer text. Entered as an Answer property. | No |
upvoteCount | Integer | Number of votes for a specific answer. The answer with the largest value in this field is highly likely to be shown in the snippet unless the | No |
Example of markup
<div itemscope itemtype="http://schema.org/Question">
<h1 itemprop="name">Hide html horizontal but not vertical scrollbar</h1>
<span itemprop="upvoteCount">148</span>
<div itemprop="text">I have an html textarea that is of fixed width, but variable height. I would like to set overflow:scroll and be able to show a vertical scrollbar, but not a horizontal one. I am not able to use overflow:auto due to other things specific to my situation. I know there is no way using CSS 2 to show only vertical but not horizontal scrollbars. Is there anything I can do with javascript to hide the horizontal scrollbar?</div>
<span itemprop="answerCount">6</span>
<div itemscope itemtype="http://schema.org/Answer" itemprop="acceptedAnswer">
<span itemprop="upvoteCount" >327</span>
<div itemprop="text">You can use css like this:
<code>overflow-y: scroll;
overflow-x: hidden;
</code>
</div>
</div>
<div itemscope itemtype="http://schema.org/Answer" itemprop=" suggestedAnswer">
<span itemprop="upvoteCount">4</span>
<div itemprop="text">Using <code>wrap=virtual</code> in your HTML form boxes gets rid of the horizontal scrollbar at the bottom of the box:
<code> <textarea name= "enquiry" rows="4" cols="30" wrap="virtual"></textarea></code>
See example here (Tested on FF and IE)
</div>
</div>
</div>
You can check your markup using the validator.