SEO for Solos
schema.org/AnswerNo rich result

Answer schema

An answer to a Question, carrying the answer text exactly as the page renders it.

Where to use it

Nested inside Question.

A complete example

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

answer.json
{
  "@context": "https://schema.org",
  "@type": "Answer",
  "text": "A self-contained answer that restates its own subject.",
  "url": "https://www.seoforsolos.com/example",
  "upvoteCount": 12,
  "author": {
    "@type": "Person",
    "name": "A Real Person",
    "url": "https://www.seoforsolos.com/about"
  }
}

Properties

Answer properties
PropertyStatus
textRequired
urlRecommended
upvoteCountRecommended
authorRecommended

The three mistakes this type attracts

  1. 01Truncating the answer in schema while showing the full text on the page.
  2. 02Omitting text in favour of a URL alone.
  3. 03Marking a paraphrase rather than the answer as rendered.

Related types

Where this appears in the playbook

Questions

What is the Answer schema type for?

An answer to a Question, carrying the answer text exactly as the page renders it. Use it on: nested inside Question.

Which Answer properties are required?

Answer requires one property: text. It also recommends 3: url, upvoteCount, author.

Does Answer produce a rich result?

Answer 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 Answer mistake?

The most common Answer mistake is: Truncating the answer in schema while showing the full text on the page.