# Support schema.org QAPage and Google rich results

**URL:** https://meta.discourse.org/t/support-schema-org-qapage-and-google-rich-results/33813
**Category:** Feature
**Tags:** solved
**Created:** [September 28, 2015, 1:38am UTC](https://meta.discourse.org/t/support-schema-org-qapage-and-google-rich-results/33813 "2015-09-28T01:38:47Z")
**Posts on this page:** 1
**Showing post:** 18

<div class="post-metadata">

### Author: ![david](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/david/32/157490_2.png) [@david](https://meta.discourse.org/u/david)
#### Post date: [December 4, 2018, 2:55pm UTC](https://meta.discourse.org/t/support-schema-org-qapage-and-google-rich-results/33813/18 "2018-12-04T14:55:09Z")

</div>

This was already implemented in the discourse-solved plugin ([PR](https://github.com/discourse/discourse-solved/pull/69) by @notriddle). If you view [this topic](https://meta.discourse.org/t/limit-consecutive-replies-for-topic-owner/103405/4) as googlebot, you will find this in the head:

```plaintext
<script type="application/ld+json">
{
  "@context": "http:\/\/schema.org",
  "@graph": [
    {
      "@type": "QAPage",
      "name": "Limit consecutive replies for topic owner?"
    },
    {
      "@type": "Question",
      "name": "Limit consecutive replies for topic owner?",
      "text": "Hi, \nI can see that the Limit Consecutive Replies is set to 3 and it does make sense in general but in our community, some users have started small personal \u201cBlogs\u201d in our Book o Remembrance. the creator is generally speaking the only one posting. These users are now limited to 3 posts \nIs this &hellip;",
      "upvoteCount": 2,
      "answerCount": 3,
      "dateCreated": "2018-12-03T22:44:18.304Z",
      "author": {
        "@type": "Person",
        "name": ""
      },
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "Yes! Agreed, we ran into this situation early on and added a new rule that \n\nif you created the topic\nyou can reply as many times as you like to it\n\n<a class=\"mention\" href=\"\/u\/nbianca\">@nbianca<\/a> made this change today or yesterday it is already in, so pull latest to get it.",
        "upvoteCount": 9,
        "dateCreated": "2018-12-04T02:36:30.988Z",
        "url": "https:\/\/meta.discourse.org\/t\/limit-consecutive-replies-for-topic-owner\/103405\/2",
        "author": {
          "@type": "Person",
          "name": "codinghorror"
        }
      }
    }
  ]
}
</script>

```

And in google’s results tester:

 ![51](https://global.discourse-cdn.com/meta/original/3X/7/b/7baa7c01e7892110a994e60f5490cb883703a0c2.png)

It looks like we have some errors in the implementation though… google’s testing tool [reports issues](https://search.google.com/structured-data/testing-tool/u/0/#url=https%3A%2F%2Fmeta.discourse.org%2Ft%2Flimit-consecutive-replies-for-topic-owner%2F103405%2F4), and the escaping of backslashes looks all wrong.

---

_[View the full topic](https://meta.discourse.org/t/support-schema-org-qapage-and-google-rich-results/33813)._
