ユースケース
次のユースケースは、TrainReservation スキーマの一般的な使用例を示しています。以下の例を使用して、マークアップが正しく構造化されていることを確認してください。
基本的な予約の確認
予約確認を送信するときに、メールに次のマークアップを埋め込みます。
Google アプリに乗車日に予約の詳細が表示され、(交通手段や交通状況などを考慮したうえで)時間どおりに駅に到着するための出発時刻がユーザーに通知されます。以下の例のようなチェックイン URL を提供すると、Google アプリはユーザーの移動の 24 時間前にこれを表示します。
JSON-LD
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "TrainReservation",
"reservationNumber": "AB3XY2",
"reservationStatus": "http://schema.org/ReservationConfirmed",
"reservationFor": {
"@type": "TrainTrip",
"departureStation": {
"@type": "TrainStation",
"name": "Munich Central"
},
"departureTime": "2017-01-04T10:30:00+01:00",
"arrivalStation": {
"@type": "TrainStation",
"name": "Paris Gare De Lyon"
},
"arrivalTime": "2017-01-04T03:10:00+01:00"
}
}
</script>
microdata
<div itemscope itemtype="http://schema.org/TrainReservation">
<meta itemprop="reservationNumber" content="AB3XY2"/>
<link itemprop="reservationStatus" href="http://schema.org/ReservationConfirmed"/>
<div itemprop="reservationFor" itemscope itemtype="http://schema.org/TrainTrip">
<div itemprop="departureStation" itemscope itemtype="http://schema.org/TrainStation">
<meta itemprop="name" content="Munich Central"/>
</div>
<meta itemprop="departureTime" content="2017-01-04T10:30:00+01:00"/>
<div itemprop="arrivalStation" itemscope itemtype="http://schema.org/TrainStation">
<meta itemprop="name" content="Paris Gare De Lyon"/>
</div>
<meta itemprop="arrivalTime" content="2017-01-04T03:10:00+01:00"/>
</div>
</div>
搭乗券とチケット
予約の確認に加えて、確認カードの搭乗券を別のメールでトリガーすることもできます。
確認カードは、ユーザーが時間どおりに駅に到着できるようにするだけでなく、乗車中にチケットをユーザーに提示することもできます。そのためには、マークアップにいくつかの追加フィールドを含める必要があります。搭乗に必要な追加のフィールドがある場合は、additionalTicketText フィールドに追加します。
予約席がないチケットの場合、フィールドは numSeats、ticketNumber、ticketToken になります。
JSON-LD
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "TrainReservation",
"reservationNumber": "AB3XY2",
"underName": {
"@type": "Person",
"name": "Eva Green"
},
"reservationStatus": "http://schema.org/ReservationConfirmed",
"reservationFor": {
"@type": "TrainTrip",
"departureStation": {
"@type": "TrainStation",
"name": "Munich Central"
},
"departureTime": "2017-01-04T10:30:00+01:00",
"arrivalStation": {
"@type": "TrainStation",
"name": "Paris Gare De Lyon"
},
"arrivalTime": "2017-01-04T03:10:00+01:00"
},
"reservedTicket": {
"@type": "Ticket",
"underName": "Eva Green",
"ticketNumber": "123XYZ",
"ticketToken": "aztecCode:AB34",
"additionalTicketText": "We recommend that you arrive at the station at least 30 minutes prior to your scheduled departure. Allow additional time if you need help with baggage or tickets."
}
}
</script>
microdata
<div itemscope itemtype="http://schema.org/TrainReservation">
<meta itemprop="reservationNumber" content="AB3XY2"/>
<div itemprop="underName" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="Eva Green"/>
</div>
<link itemprop="reservationStatus" href="http://schema.org/ReservationConfirmed"/>
<div itemprop="reservationFor" itemscope itemtype="http://schema.org/TrainTrip">
<div itemprop="departureStation" itemscope itemtype="http://schema.org/TrainStation">
<meta itemprop="name" content="Munich Central"/>
</div>
<meta itemprop="departureTime" content="2017-01-04T10:30:00+01:00"/>
<div itemprop="arrivalStation" itemscope itemtype="http://schema.org/TrainStation">
<meta itemprop="name" content="Paris Gare De Lyon"/>
</div>
<meta itemprop="arrivalTime" content="2017-01-04T03:10:00+01:00"/>
</div>
<div itemprop="reservedTicket" itemscope itemtype="http://schema.org/Ticket">
<meta itemprop="underName" content="Eva Green"/>
<meta itemprop="ticketNumber" content="123XYZ"/>
<meta itemprop="ticketToken" content="aztecCode:AB34"/>
<meta itemprop="additionalTicketText" content="We recommend that you arrive at the station at least 30 minutes prior to your scheduled departure. Allow additional time if you need help with baggage or tickets."/>
</div>
</div>
座席を予約できるチケットの場合、フィールドは seatNumber、seatingType、ticketNumber、ticketToken になります。
JSON-LD
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "TrainReservation",
"reservationNumber": "AB3XY2",
"underName": {
"@type": "Person",
"name": "Eva Green"
},
"reservationStatus": "http://schema.org/ReservationConfirmed",
"reservationFor": {
"@type": "TrainTrip",
"departureStation": {
"@type": "TrainStation",
"name": "Munich Central"
},
"departureTime": "2017-01-04T10:30:00+01:00",
"arrivalStation": {
"@type": "TrainStation",
"name": "Paris Gare De Lyon"
},
"arrivalTime": "2017-01-04T03:10:00+01:00"
},
"reservedTicket": {
"@type": "Ticket",
"underName": "Eva Green",
"ticketedSeat": {
"@type": "Seat",
"seatNumber": "27B",
"seatingType": "1st Class"
},
"ticketNumber": "123XYZ",
"ticketToken": "aztecCode:AB34",
"additionalTicketText": "We recommend that you arrive at the station at least 30 minutes prior to your scheduled departure. Allow additional time if you need help with baggage or tickets."
}
}
</script>
microdata
<div itemscope itemtype="http://schema.org/TrainReserva>tio<n"
meta itemprop="reservationNumber&quo>t; <content="AB3XY2"/
div itemprop="underName" items>cope <itemtype="http://schema.org/Person&q>uot<;
> m<eta itemprop="name" content="Eva Green"/
/div
link itemp>rop<="reservationStatus" href="http://schema.org/ReservationConfirm>ed&qu<ot;/
div itemprop="reservationFor" itemscope itemtype="http://sche>ma.org/<TrainTrip"
div itemprop="departu>reSta<tion>"<; itemscope itemtype="http://schema.org/TrainStation"
> m<eta itemprop="name" content="Munich Central"/
/div
me>ta item<prop="departureTime" content="2017->01-04<T10:>30:00<+01:00"/
div itemprop="arrivalStation" itemsc>ope< ite>mty<pe="http://schema.org/TrainStation"
meta itemprop="nam>e&quo<t; content="Paris Gare De Lyon"/
> /div<
meta itemprop="arrivalTime" content="2017-01-04T03:>10:00+0<1:00"/
/div
div itemprop="r>eserved<Ticket" itemscope itemtype="http://sch>ema.o<rg/T>icket<"
meta itemprop="underName"> cont<ent="Eva Green"/
div itemprop="tic>keted<Seat" itemscope itemtype="http://schema.org/Seat"
meta itemprop="seatNumber" content="27B"/
meta itemprop="seatingType" content="1st Class"/
> /<div
> < m>eta itemprop="ticketNumber" content="123XYZ"/
meta itemprop="ticketToken" content="aztecCode:AB34"/
meta itemprop="additionalTicketText" content="We recommend that you arrive at the station at least 30 minutes prior to your scheduled departure. Allow additional time if you need help with baggage or tickets."/
/div
/div
複数の乗客
複数の乗客が関与する予約を記述するには、乗客 1 人につき 1 つの区間につき 1 つの TrainReservation を使用します。
JSON-LD
<script type="application/ld+>json"
[
{
"@context": "http://schema.org",
"@type": "TrainReservation",
"reservationNumber": "AB3XY2",
"reservationStatus": "http://schema.org/ReservationConfirmed",
"reservationFor": {
"@type": "TrainTrip",
"departureStation": {
"@type": "TrainStation",
"name": "Munich Central"
},
"departureTime": "2017-01-04T10:30:00+01:00",
"arrivalStation": {
"@type": "TrainStation",
"name": "Paris Gare De Lyon"
},
"arrivalTime": "2017-01-04T03:10:00+01:00"
},
"reservedTicket": {
"@type": "Ticket",
"underName": {
"@type": "Person",
"name": "Eva Green"
}
}
},
{
"@context": "http://schema.org",
"@type": "TrainReservation",
"reservationNumber": "AB3XY2",
"reservationStatus": "http://schema.org/ReservationConfirmed",
"reservationFor": {
"@type": "TrainTrip",
"departureStation": {
"@type": "TrainStation",
"name": "Munich Central"
},
"departureTime": "2017-01-04T10:30:00+01:00",
"arrivalStation": {
"@type": "TrainStation",
"name": "Paris Gare De Lyon"
},
"arrivalTime": "2017-01-04T03:10:00+01:00"
},
"reservedTicket": {
"@type": "Ticket",
"underName": {
"@type": "Person",
"name": "John Green"
}
}
},
{
"@context": "http://schema.org",
"@type": "TrainReservation",
"reservationNumber": "AB3XY2",
"reservationStatus": "http://schema.org/ReservationConfirmed",
"reservationFor": {
"@type": "TrainTrip",
"departureStation": {
"@type": "TrainStation",
"name": "Munich Central"
},
"departureTime": "2017-01-04T10:30:00+01:00",
"arrivalStation": {
"@type": "TrainStation",
"name": "Paris Gare De Lyon"
< },
> "arrivalTime": "2017-01-04T03:10:00+01:00"
},
"reservedTicket": {
"@type": "Ticket",
"underName": {
"@type": "Person",
"name": "Carol Green"
}
}
},
{
"@context": "http://schema.org",
"@type": "TrainReservation",
"reservationNumber": "AB3XY2",
"reservationStatus": "http://schema.org/ReservationConfirmed",
"reservationFor": {
"@type": "TrainTrip",
"departureStation": {
"@type": "TrainStation",
"name": "Munich Central"
},
"departureTime": "2017-01-04T10:30:00+01:00",
"arrivalStation": {
"@type": "TrainStation",
"name": "Paris Gare De Lyon"
},
"arrivalTime": "2017-01-04T03:10:00+01:00"
},
"reservedTicket": {
"@type": "Ticket",
"underName": {
"@type": "Person",
"name": "Daniel Green"
}
}
}
]
/script
microdata
<div itemscope itemtype="http://schema.org/TrainReserva>tio<n"
meta itemprop="reservationNumber&quo>t; <content="AB3XY2"/
link itemprop="reservationStatus" href=&>quo<t;http://schema.org/ReservationConfirmed"/
div itemprop="reservati>onFor<" itemscope itemtype="http://schema.org/TrainTrip"
div itemprop=>"d<epartureStation" itemscope itemtype=">;http<://s>chema<.org/TrainStation"
meta itemprop="name" conte>nt=&q<uot;Munich Central"/
/div
meta itemprop="departureTime" co>ntent=&<quot;2017-01-04T10:30:00+01:00"/
div item>prop=<&quo>t;arr<ivalStation" itemscope itemtype="http://schema.org/Tra>inS<tati>on&<quot;
meta itemprop="name" content="Paris Gare De Lyon>"<;/
/div
meta itemprop="arrivalTime" content="20>17-01-0<4T03:10:00+01:00"/
/div
div item>prop=<&quo>t;r<eser>v<edTi>c<ket" itemscope itemtype="http://schema.org/Ticket>&qu<ot;
div itemprop="underName" itemscop>e i<temtype="http://schema.org/Person"
meta itemprop="name">; c<ontent="Eva Green"/
/div
/div
/div
div itemscope itemtype=&quo>t;htt<p://schema.org/TrainReservation"
meta itemprop="reservationNumber"> conten<t="AB3XY2"/
link itemprop="re>serva<tion>Statu<s" href="http://schema.org/ReservationConfirmed"/
> div <itemprop="reservationFor" itemscope itemtype="http://schema.org/Tr>ainTrip<"
div itemprop="departureStation&quo>t; it<emsc>ope i<temtype="http://schema.org/TrainStation"
meta it>emp<rop=>&qu<ot;name" content="Munich Central"/
/div
meta itempro>p=&qu<ot;departureTime" content="2017-01-04T10:30:00+01:00"/
> div< itemprop="arrivalStation" items>cope <item>typ<e=&q>u<ot;h>t<tp://schema.org/TrainStation"
meta itemprop=&quo>t;n<ame" content="Paris Gare De Lyon"/
> </div
meta itemprop="arrivalTime" content="2017-01-04T03:10:00>+01<:00"/
/div
div itemprop="reservedTicket" itemscope itemtype>=&quo<t;http://schema.org/Ticket"
div itemprop="underName" itemscope i>temtype<="http://schema.org/Person"
me>ta it<empr>op=&q<uot;name" content="John Green"/
/div
/div
/di>v
div< itemscope itemtype="http://schema.org/TrainReservation"
meta itempro>p="<;reservationNumber" content="AB3XY2">;/
<link> item<prop="reservationStatus" href="http://schema.org/>Res<erva>tio<nConfirmed"/
div itemprop="reservationFor" itemscope itemt>ype=&<quot;http://schema.org/TrainTrip"
div itemprop="departur>eStatio<n" itemscope itemtype="http://sch>ema.o<rg/T>rai<nSta>t<ion&>q<uot;
meta itemprop="name" content="Mun>ich< Central"/
/div
meta itemprop="de>par<tureTime" content="2017-01-04T10:30:00+01:00"/
div itemprop=&>quo<t;arrivalStation" itemscope itemtype="http://schema.org/TrainStation>"<;
meta itemprop="name" content="Paris Gare De Lyon"/
>/div
< meta itemprop="arrivalTime" conten>t=&qu<ot;2>017-0<1-04T03:10:00+01:00"/
/div
div itemprop="reservedTic>ket&q<uot; itemscope itemtype="http://schema.org/Ticket"
div itemprop=&qu>ot;unde<rName" itemscope itemtype="http://schema>.org/<Pers>on&qu<ot;
meta itemprop="name" content="Carol Gre>en&<quot>;/
< /div
/div
/div
div itemscope itemtype="http://schema.org/TrainRe>serva<tion"
meta itemprop="reservationNumber" content=">;AB3XY2<"/
link itemprop="reservationSta>tus&q<uot;> hr<ef=&>q<uot;>http://schema.org/ReservationConfirmed"/
div itemprop="reservationFor" itemscope itemtype="http://schema.org/TrainTrip"
div itemprop="departureStation" itemscope itemtype="http://schema.org/TrainStation"
meta itemprop="name" content="Munich Central"/
/div
meta itemprop="departureTime" content="2017-01-04T10:30:00+01:00"/
div itemprop="arrivalStation" itemscope itemtype="http://schema.org/TrainStation"
meta itemprop="name" content="Paris Gare De Lyon"/
/div
meta itemprop="arrivalTime" content="2017-01-04T03:10:00+01:00"/
/div
div itemprop="reservedTicket" itemscope itemtype="http://schema.org/Ticket"
div itemprop="underName" itemscope itemtype="http://schema.org/Person"
meta itemprop="name" content="Daniel Green"/
/div
/div
/div
サポートされているすべてのフィールドの例
参考として、サポートされているすべてのフィールドに値が入力された例を次に示します。
JSON-LD
<script type="application/ld+>json"
{
"@context": "http://schema.org",
"@type": "TrainReservation",
"reservationNumber": "AB3XY2",
"url": "http://eurotravel/view/AB3XY2",
"underName": {
"@type": "Person",
"name": "John Smith",
"email": "john@mail.com"
},
"programMembership": {
"@type": "ProgramMembership",
"memberNumber": "12345",
"program": "STA"
},
"bookingAgent": {
"@type": "Organization",
"name": "European Vacations",
"url": "http://eurotravel/"
},
"bookingTime": "2013-01-14T13:05:00-05:00",
"modifiedTime": "2013-03-14T13:05:00-05:00",
"confirmReservationUrl": "http://eurotravel/confirm?id=AB3XY2",
"cancelReservationUrl": "http://eurotravel/cancel?id=AB3XY2",
"modifyReservationUrl": "http://eurotravel/edit?id=AB3XY2",
"reservationStatus": "http://schema.org/ReservationConfirmed",
"checkinUrl": "http://train.com/checkin?id=AB3XY2",
"reservationFor": {
"@type": "TrainTrip",
"trainNumber": "9203",
"trainName": "Orient Express",
"trainCode": "iGTV",
"trainCompany": {
"@type": "Organization"
},
"departureStation": {
"@type": "TrainStation",
"name": "Munich Central"
},
"departurePlatform": "64",
"departureTime": "2017-01-04T10:30:00+01<:00&quo>t;,
"arrivalStation": {
"@type": "TrainStation",
"name": "Paris Gare De Lyon"
},
"arrivalPlatform": "101B",
"arrivalTime": "2017-01-04T03:10:00+01:00"
},
"reservedTicket": {
"@type": "Ticket",
"ticketNumber": "123XYZ",
"downloadUrl": "?",
"printUrl": "?",
"ticketToken": "qrCode:123456789",
"additionalTicketText": "?",
"price": "135.00",
"priceCurrency": "EUR",
"underName": {
"@type": "Person",
"name": "Mary Smith"
},
"ticketedSeat": {
"@type": "Seat",
"seatingType": "1st Class",
"seatNumber": "27",
"seatRow": "A"
}
}
}
/script
microdata
<div itemscope itemtype="http://schema.org/TrainReserva>tio<n"
meta itemprop="reservationNumber&quo>t; <content="AB3XY2"/
link itemprop="url&quo>t; <href="http://eurotravel/view/AB3XY2"/
div itemprop="u>nderN<ame" itemscope itemtype="http://>schem<a.org/Person"
meta itemprop="nam>e&q<uot;> co<ntent="John Smith"/
meta itemprop="email" content="john@mail>.com&<quot;/
/div
div itemprop="programMem>bersh<ip" itemscope itemtype="http>://<sche>ma.<org/ProgramMembership"
meta itemprop="memberNumber" content=>"<;12345"/
meta itemprop="program">; con<tent="STA"/
/div
div itemprop=&q>uot<;boo>kin<gAgent" itemscope itemtype="http://schema.org/Organiza>tio<n"
meta itemprop="name" content="European> Va<cations"/
link itemprop="url" href="http://eurotravel/&qu>ot;</
/div
meta itemprop="bookingTime" content="2013-01-14T13:05>:00<-05:00"/
meta itemprop="modifiedTime" content="2013-03->14T<13:05:00-05:00"/
link itemprop="confirmReservationUrl" href=&qu>ot;<http://eurotravel/confirm?id=AB3XY2"/
link itemprop="canc>elR<eservationUrl" href="http://eurotravel/cancel?id=AB3XY2"/
lin>k ite<mprop="modifyReservationUrl" href>=&quo<t;http://eurotravel/edit?id=AB3XY2"/
link it>empro<p="reservationStatus" href=&quo>t;htt<p://schema.org/ReservationConfirmed"/
link itemprop="checkinUrl&quo>t; hr<ef=&>quot;<http://train.com/checkin?id=AB3XY2"/
div itemprop="reservationFor"> itemsc<ope itemtype="http://schema.org/TrainTrip>"<;
> met<a itemprop="trainNumber" content=&quo>t;920<3"/
meta itemprop="trainName" content="Ori>ent E<xpress"/
meta itemprop="trainCode" content="iGTV"/
> div <itemprop="trainCompany" itemscope itemty>pe=&q<uot;>http:<//schema.org/Organization"
/div
di>v ite<mprop="departureStation" itemscope itemtype="http>://<sche>ma.<org/TrainStation"
meta itemprop="name" content="M>unich< Central"/
/div
meta itemprop=&qu>ot;de<parturePlatform" content="64&q>uot;/<
meta itemprop="departureTim>e&quo<t; content="2017-01-04T10:30:00+01:00"/
d>iv it<emprop="arrivalStation" itemscope itemt>ype=&<quot;http://schema.org/TrainStation&quo>t;
< meta itemprop="name" content=&>quot;<Paris Gare De Lyon"/
/div
meta itemprop="arrivalPlat>form&qu<ot; content="101B"/
meta ite>mprop<=&qu>ot;ar<rivalTime" content="2017-01-04T03:10:00+01:00"/
/div
> div it<emprop="reservedTicket" itemscope item>type=&q<uot;http://schema.org/Ticket"
m>eta ite<mprop="ticketNumber" conte>nt=&q<uot;>123<XYZ&>q<uot;>/
meta itemprop="downloadUrl" content="?"/
meta itemprop="printUrl" content="?"/
meta itemprop="ticketToken" content="qrCode:123456789"/
meta itemprop="additionalTicketText" content="?"/
meta itemprop="price" content="135.00"/
meta itemprop="priceCurrency" content="EUR"/
div itemprop="underName" itemscope itemtype="http://schema.org/Person"
meta itemprop="name" content="Mary Smith"/
/div
div itemprop="ticketedSeat" itemscope itemtype="http://schema.org/Seat"
meta itemprop="seatingType" content="1st Class"/
meta itemprop="seatNumber" content="27"/
meta itemprop="seatRow" content="A"/
/div
/div
/div
マークアップをテスト
マークアップは、メール マークアップ テスターツールを使用して検証できます。マークアップ コードを貼り付けて、[検証] ボタンをクリックしてコンテンツをスキャンし、エラーに関するレポートを生成します。
仕様
メールの詳細を確認し、これらの宿泊施設が列車の予約に当てはまるかどうかを確認してください。これらの追加のプロパティをマークアップすることで、Google は列車の予約に関する詳細な説明をユーザーに表示できるようになります。
| プロパティ | タイプ | 説明 |
|---|---|---|
| reservationNumber | テキスト | (必須)予約の番号または ID。 |
| URL | URL | 予約を確認できるウェブページ。 |
| underName | Person または Organization | 乗客。 |
| underName.name | テキスト | (確認カードや検索の回答に推奨)人物の名前。 |
| underName.email | テキスト | メールアドレス。 |
| programMembership | ProgramMembership | マイレージやホテルのポイント プログラムなどのメンバーシップが予約に適用されます。 |
| programMembership.memberNumber | テキスト | メンバーシップの ID。 |
| programMembership.program | テキスト | プログラムの名前。 |
| bookingAgent | Organization または Person | 予約代理店または代理店文字列("" など)も指定できます。 |
| bookingAgent.name | テキスト | エージェント/サービスの名前。 |
| bookingAgent.url | URL | エージェント/サービスのウェブサイト。 |
| bookingTime | DateTime | 予約が行われた日付。 |
| modifiedTime | DateTime | (確認カードや検索の回答に推奨)予約が最後に変更された時刻。 |
| confirmReservationUrl | URL | 予約を確認できるウェブページ。 |
| cancelReservationUrl | URL | 予約をキャンセルできるウェブページ。 |
| modifyReservationUrl | URL | (確認カードや検索の回答に推奨)予約を変更できるウェブページ。 |
| reservationStatus | ReservationStatus | (必須)予約の現在のステータス。 |
| checkinUrl | URL | 乗客がチェックインできるウェブページ。 |
| reservationFor | TrainTrip | (必須)列車の旅に関する情報。 |
| reservationFor.trainNumber | テキスト | (確認カードや検索の回答に推奨)列車の番号。 |
| reservationFor.trainName | テキスト | 列車の名前。 |
| reservationFor.trainCode | テキスト | トレインの一意の識別子。 |
| reservationFor.trainCompany | 組織 | 列車を運営する組織。文字列("" など)も指定できます。 |
| reservationFor.departureStation | TrainStation | (必須)電車の出発駅。 |
| reservationFor.departureStation.name | テキスト | (必須)TrainStation の名前。 |
| reservationFor.departurePlatform | テキスト | 電車の出発プラット。 |
| reservationFor.departureTime | DateTime | (必須)出発予定時刻。 |
| reservationFor.arrivalStation | TrainStation | (必須)電車の終点となる駅。 |
| reservationFor.arrivalStation.name | テキスト | (必須)TrainStation の名前。 |
| reservationFor.arrivalPlatform | テキスト | 列車が到着するプラットホーム。 |
| reservationFor.arrivalTime | DateTime | (必須)到着予定時刻。 |
| reservedTicket | チケット | チケット情報。 |
| reservedTicket.ticketNumber | テキスト | チケットの番号または ID。 |
| reservedTicket.downloadUrl | URL | . |
| reservedTicket.printUrl | URL | . |
| reservedTicket.ticketToken | テキストまたは URL | バーコード画像がサイトでホストされている場合、フィールドの値は画像の URL、または「barcode128:AB34」などのバーコードまたは QR URI になります。(ISO-15417 バーコード)、「qrCode:AB34」(QR コード)、「aztecCode:AB34」(Aztec コード)、「barcodeEAN:1234」(EAN コード)と「barcodeUPCA:1234」(UPCA コード)。 |
| reservedTicket.additionalTicketText | テキスト | チケットに関する追加の説明文。 |
| reservedTicket.price | テキスト | チケットの合計金額。 |
| reservedTicket.priceCurrency | テキスト | チケットの価格の通貨(3 文字の ISO 4217 形式)。 |
| reservedTicket.underName | Person または Organization | チケットの対象となる個人または組織。 |
| reservedTicket.underName.name | テキスト | 担当者の名前。 |
| reservedTicket.ticketedSeat | 座席: | 予約席の場所(例:27B)。. |
| reservedTicket.ticketedSeat.seatingType | テキスト | 座席のタイプ/クラス。 |
| reservedTicket.ticketedSeat.seatNumber | テキスト | 予約席の場所。 |
| reservedTicket.ticketedSeat.seatRow | テキスト | 予約された座席の行の場所。 |