我在用于SERP启动的Google索引的Json模式标记中出错

我在用于SERP启动的Google索引的Json模式标记中出错,json,schema,Json,Schema,我正在为谷歌搜索结果上显示的星级设置模式,我得到了这个json脚本,在测试代码段时它没有任何错误,但显示了一个错误: 缺少“}”或对象成员名称 { “@context”:”https://schema.org/", “@type”:“Review”, “审查项目”:{ “@type”:“LocalBusiness”, “图像”:https://www.rmsdrill.com/wp-content/uploads/2019/01/RMS-Logo-header.png", “名称”:“Rms钻取

我正在为谷歌搜索结果上显示的星级设置模式,我得到了这个json脚本,在测试代码段时它没有任何错误,但显示了一个错误:

缺少“}”或对象成员名称

{
“@context”:”https://schema.org/",
“@type”:“Review”,
“审查项目”:{
“@type”:“LocalBusiness”,
“图像”:https://www.rmsdrill.com/wp-content/uploads/2019/01/RMS-Logo-header.png",
“名称”:“Rms钻取”

“电话”:(800)605-1608, “地址”:{ “@type”:“PostalAddress”

“地址地点”:“达拉斯”, “addressRegion”:“TX”, “postalCode”:“75219”, “地址国家”:“美国” } }, “复习”:{ “@type”:“评级”, “额定值”:“4” }, “姓名”:“与Rober Strunks合作”, “作者”:{ “@type”:“Person”, “姓名”:“Jason Kihle博士” }, “reviewBody”:“在与罗伯特·斯特伦克斯(Robert Strunks)合作了一个赛季后,很明显,他是一名专业的行进乐队操练设计师所需要的一切。此外……”, “出版商”:{ “@type”:“组织”, “名称”:“RMS钻孔” } }
以后,请使用以下方法:

<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>
{  
   "@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"
   }
}