Google电子邮件标记中缺少突出显示的内容

问题描述

我已经从事Google电子邮件标记了几周了。我已将其提交审核。 Google审核小组答复说,标记中缺少突出显示内容。关于标记,电子邮件是关于计划确认的,该确认已从医院发送给患者。该电子邮件包含计划日期,时间,医生姓名和医院名称。我使用了事件保留JSON / LD。标记测试工具显示一切正确。在以下链接上没有提到突出显示 Event Reservation Reference

这里是JSON / LD供参考

{
  "@context":              "http://schema.org","@type":                 "EventReservation","reservationNumber":     "12345","reservationStatus": "http://schema.org/Confirmed","underName": {
    "@type":               "Person","name":                "John Doe"
  },"reservationFor": {
    "@type":               "Event","name":                "Schedule Appointment","performer": {
      "@type": "Person","name": "Jane Doe","image": "www.mysite.com"
    },"startDate":           "2020-08-21T10:00+05:30","location": {
      "@type":             "Place","name":              "Viman Nagar","address": {
        "@type":           "PostalAddress","streetAddress":   "Viman Nagar","addressLocality": "Viman Nagar","addressRegion":   "Viman Nagar","postalCode":      "Viman Nagar","addressCountry":  "Viman Nagar"
      }
    }
  },"modifiedTime":"2020-08-21T10:00:00+05:30","modifyReservationUrl":"www.mysite.com"
}

上面的JSON / LD在标记测试工具上没有显示任何错误。我已经在JSON中输入了所有必需数据和建议数据。如何在其中指定突出显示?在上述链接中找不到任何要突出显示的参考。

我还将附加在Google App脚本测试期间收到的电子邮件的屏幕截图。

解决方法

您的startDate属性中的日期格式无效。请在下面找到更正的JSON:

{
  "@context":              "http://schema.org","@type":                 "EventReservation","reservationNumber":     "12345","reservationStatus": "http://schema.org/Confirmed","underName": {
    "@type":               "Person","name":                "John Doe"
  },"reservationFor": {
    "@type":               "Event","name":                "Schedule Appointment","performer": {
      "@type": "Person","name": "Jane Doe","image": "www.mysite.com"
    },"startDate":           "2020-08-21T10:00:00+05:30","location": {
      "@type":             "Place","name":              "Viman Nagar","address": {
        "@type":           "PostalAddress","streetAddress":   "Viman Nagar","addressLocality": "Viman Nagar","addressRegion":   "Viman Nagar","postalCode":      "Viman Nagar","addressCountry":  "Viman Nagar"
      }
    }
  },"modifiedTime":"2020-08-21T10:00:00+05:30","modifyReservationUrl":"www.mysite.com"
}

相关问答

Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其...
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。...
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbc...