У меня ошибка в разметке схемы Json для индексации Google для запуска SERP - PullRequest
0 голосов
/ 05 апреля 2019

Я настраиваю схему для звездочек рейтинга, которые будут отображаться в результатах поиска Google. Я получил этот json-скрипт. При тестировании фрагмента кода не возникает никаких ошибок. Но отображается ошибка:

Отсутствует '}' или имя члена объекта.

<script type=application/ld+json>{
  "@context": "https://schema.org/",
  "@type": "Review",
  "itemReviewed": {
    "@type": "LocalBusiness",
    "image": "https://www.rmsdrill.com/wp-content/uploads/2019/01/RMS-Logo-header.png",
    "name": "Rms Drill",</p>
<p>    "telephone": "(800) 605-1608",
    "address" :{
      "@type": "PostalAddress",</p>
<p>      "addressLocality": "Dallas",
      "addressRegion": "TX",
      "postalCode": "75219",
      "addressCountry": "US"
    }
  },
  "reviewRating": {
    "@type": "Rating",
    "ratingValue": "4"
  },
  "name": "Working with Rober Strunks.",
  "author": {
    "@type": "Person",
    "name": "Dr. Jason Kihle"
  },
  "reviewBody": "After just one season of working with Robert Strunks, it is absolutely clear that he is everything that you want in a professional marching band drill designer. In addition…",
  "publisher": {
    "@type": "Organization",
    "name": "RMS Drill"
  }
}</script>

1 Ответ

0 голосов
/ 05 апреля 2019

В будущем используйте это: https://jsonformatter.curiousconcept.com/

{  
   "@context":"https://schema.org/",
   "@type":"Review",
   "itemReviewed":{  
      "@type":"LocalBusiness",
      "image":"https://www.rmsdrill.com/wp-content/uploads/2019/01/RMS-Logo-header.png",
      "name":"Rms Drill",
      "telephone":"(800) 605-1608",
      "address":{  
         "@type":"PostalAddress",
         "addressLocality":"Dallas",
         "addressRegion":"TX",
         "postalCode":"75219",
         "addressCountry":"US"
      }
   },
   "reviewRating":{  
      "@type":"Rating",
      "ratingValue":"4"
   },
   "name":"Working with Rober Strunks.",
   "author":{  
      "@type":"Person",
      "name":"Dr. Jason Kihle"
   },
   "reviewBody":"After just one season of working with Robert Strunks, it is absolutely clear that he is everything that you want in a professional marching band drill designer. In addition…",
   "publisher":{  
      "@type":"Organization",
      "name":"RMS Drill"
   }
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...