BusReservation电子邮件标记无法通过scripts.google.com

时间:2017-05-22 08:55:50

标签: email gmail json-ld google-schemas

我为公交预订单创建了一个JSON-LD脚本,其中包括必填字段和通过scripts.google.com发送的邮件,但邮件未添加到Gmail日历中。

{
  "@context" : "http://schema.org",
  "@type" : "BusReservation",
  "reservationNumber" : "XYZ",
  "reservationStatus": "http://schema.org/ReservationConfirmed",
  "reservationFor" : {
    "@type" : "BusTrip",
    "busCompany" : {
      "@type" : "Organization",
      "name" : "ABCD"
    },
    "departureBusStop" : {
      "@type" : "BusStop",
      "name" : "ANAND VIHAR",
      "address" : {
        "@type" : "PostalAddress",
        "streetAddress" : "Isbt Anand Vihar, Anand Vihar, New Delhi, Delhi 110092",
        "addressLocality" : "Anand Vihar Bus station"
      }
    },
    "departureTime" : "2017-06-21T21:30",
    "arrivalBusStop" : {
      "@type" : "BusStop",
      "name" : "Delhi"
    },
    "arrivalTime" : "2017-06-22T21:30"
  },
  "underName" : {
    "@type" : "Person",
    "name" : "Mr Aditya Banerjee"
  },
  "price" : "562",
  "reservedTicket" : {
    "@type" : "Ticket",
    "ticketedSeat" : {
      "@type" : "Seat",
      "seatNumber" : "15"
    }
  }
}

0 个答案:

没有答案