SEO for Solos
schema.org/QuestionNo rich result

Question schema

A single question, nested inside a FAQPage or a QAPage, paired with its accepted answer.

Where to use it

Nested inside FAQPage or QAPage.

A complete example

Valid as written, with every required property and the recommended ones that carry real information.

question.json
{
  "@context": "https://schema.org",
  "@type": "Question",
  "name": "Acme Reference",
  "acceptedAnswer": {
    "@type": "Answer",
    "text": "A self-contained answer that restates its own subject."
  },
  "suggestedAnswer": {
    "@type": "Answer",
    "text": "An alternative answer."
  },
  "answerCount": 1,
  "upvoteCount": 12
}

Properties

Question properties
PropertyStatus
nameRequired
acceptedAnswerRequired
suggestedAnswerRecommended
answerCountRecommended
upvoteCountRecommended

The three mistakes this type attracts

  1. 01Answer text that differs from the visible answer.
  2. 02Omitting acceptedAnswer, which leaves the question unanswered.
  3. 03HTML in the answer text that the page does not render.

Related types

Where this appears in the playbook

Questions

What is the Question schema type for?

A single question, nested inside a FAQPage or a QAPage, paired with its accepted answer. Use it on: nested inside FAQPage or QAPage.

Which Question properties are required?

Question requires 2 properties: name, acceptedAnswer. It also recommends 3: suggestedAnswer, answerCount, upvoteCount.

Does Question produce a rich result?

Question does not produce a Google rich result. It is still worth shipping, because its value is entity resolution and answer extraction rather than search result presentation.

What is the most common Question mistake?

The most common Question mistake is: Answer text that differs from the visible answer.