موارد استفاده
موارد استفاده زیر نمونههای رایجی از نحوه استفاده از طرحواره TrainReservation را نشان میدهد. از این مثالها برای اطمینان از ساختار صحیح نشانهگذاری خود استفاده کنید.
تأیید رزرو اولیه
هنگام ارسال تأیید رزرو، نشانهگذاری زیر را در ایمیل خود قرار دهید.
برنامه گوگل جزئیات رزرو را در روز سفر نمایش میدهد و زمان حرکت برای رسیدن به موقع به ایستگاه قطار را به کاربر اطلاع میدهد (با در نظر گرفتن نوع وسیله نقلیه، ترافیک و غیره). اگر مانند مثال زیر، یک URL برای ثبت نام ارائه دهید، برنامه گوگل آن را ۲۴ ساعت قبل از سفر به کاربر نمایش میدهد.
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>
میکرودیتا
<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>
میکرودیتا
<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>
میکرودیتا
<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"/>
<div itemprop="ticketedSeat" itemscope itemtype="http://schema.org/Seat">
<meta itemprop="seatNumber" content="27B"/>
<meta itemprop="seatingType" content="1st Class"/>
</div>
<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>
چند مسافر
برای توصیف رزروی که شامل چندین مسافر است، از یک 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>
میکرودیتا
<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 itemprop="reservedTicket" itemscope itemtype="http://schema.org/Ticket">
<div itemprop="underName" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="Eva Green"/>
</div>
</div>
</div>
<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 itemprop="reservedTicket" itemscope itemtype="http://schema.org/Ticket">
<div itemprop="underName" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="John Green"/>
</div>
</div>
</div>
<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 itemprop="reservedTicket" itemscope itemtype="http://schema.org/Ticket">
<div itemprop="underName" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="Carol Green"/>
</div>
</div>
</div>
<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 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",
"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>
میکرودیتا
<div itemscope itemtype="http://schema.org/TrainReservation">
<meta itemprop="reservationNumber" content="AB3XY2"/>
<link itemprop="url" href="http://eurotravel/view/AB3XY2"/>
<div itemprop="underName" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="John Smith"/>
<meta itemprop="email" content="john@mail.com"/>
</div>
<div itemprop="programMembership" itemscope itemtype="http://schema.org/ProgramMembership">
<meta itemprop="memberNumber" content="12345"/>
<meta itemprop="program" content="STA"/>
</div>
<div itemprop="bookingAgent" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="European Vacations"/>
<link itemprop="url" href="http://eurotravel/"/>
</div>
<meta itemprop="bookingTime" content="2013-01-14T13:05:00-05:00"/>
<meta itemprop="modifiedTime" content="2013-03-14T13:05:00-05:00"/>
<link itemprop="confirmReservationUrl" href="http://eurotravel/confirm?id=AB3XY2"/>
<link itemprop="cancelReservationUrl" href="http://eurotravel/cancel?id=AB3XY2"/>
<link itemprop="modifyReservationUrl" href="http://eurotravel/edit?id=AB3XY2"/>
<link itemprop="reservationStatus" href="http://schema.org/ReservationConfirmed"/>
<link itemprop="checkinUrl" href="http://train.com/checkin?id=AB3XY2"/>
<div itemprop="reservationFor" itemscope itemtype="http://schema.org/TrainTrip">
<meta itemprop="trainNumber" content="9203"/>
<meta itemprop="trainName" content="Orient Express"/>
<meta itemprop="trainCode" content="iGTV"/>
<div itemprop="trainCompany" itemscope itemtype="http://schema.org/Organization">
</div>
<div itemprop="departureStation" itemscope itemtype="http://schema.org/TrainStation">
<meta itemprop="name" content="Munich Central"/>
</div>
<meta itemprop="departurePlatform" content="64"/>
<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="arrivalPlatform" content="101B"/>
<meta itemprop="arrivalTime" content="2017-01-04T03:10:00+01:00"/>
</div>
<div itemprop="reservedTicket" itemscope itemtype="http://schema.org/Ticket">
<meta itemprop="ticketNumber" content="123XYZ"/>
<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>
نشانهگذاری خود را آزمایش کنید
شما میتوانید با استفاده از ابزار Email Markup Tester، نشانهگذاری خود را اعتبارسنجی کنید. کد نشانهگذاری خود را در آن قرار دهید و روی دکمه اعتبارسنجی کلیک کنید تا محتوا بررسی شود و گزارشی از هرگونه خطای موجود دریافت کنید.
مشخصات
جزئیات ایمیل خود را بررسی کنید تا ببینید آیا هیچ یک از این ویژگیها در رزرو قطار شما اعمال میشود یا خیر. با علامتگذاری این ویژگیهای اضافی، به گوگل اجازه میدهید توضیحات بسیار غنیتری از رزرو قطار را به کاربر نمایش دهد.
| ملک | نوع | توضیحات |
|---|---|---|
| شماره رزرو | متن | ( الزامی ) شماره یا شناسه رزرو. |
| آدرس اینترنتی | آدرس اینترنتی | صفحه وب که در آن رزرو قابل مشاهده است. |
| نام | شخص یا سازمان | مسافر |
| نام زیر. نام | متن | ( برای کارتهای تأیید/جستجوی پاسخها توصیه میشود ) نام شخص. |
| نام و نام خانوادگی. ایمیل | متن | آدرس ایمیل. |
| عضویت در برنامه | عضویت در برنامه | هرگونه عضویت در برنامههای وفاداری هتل، شرکتهای هواپیمایی پررفتوآمد و غیره که برای رزرو اعمال شود. |
| عضویت برنامه. شماره عضو | متن | شناسه عضویت. |
| عضویت در برنامه. برنامه | متن | نام برنامه. |
| نماینده رزرو | سازمان یا شخص | نماینده یا آژانس رزرو. همچنین یک رشته (مثلاً "") را میپذیرد. |
| نام نماینده رزرو | متن | نام نماینده/خدمات. |
| آدرس اینترنتی نماینده رزرو | آدرس اینترنتی | وبسایت نماینده/خدمات. |
| رزرو زمان | تاریخ و زمان | تاریخ انجام رزرو. |
| اصلاحشدهزمان | تاریخ و زمان | ( برای کارتهای تأیید/جستجوی پاسخها توصیه میشود ) زمان آخرین تغییر رزرو. |
| تأییدرزروآدرس اینترنتی | آدرس اینترنتی | صفحه وب که در آن رزرو قابل تأیید است. |
| لغورزروآدرس اینترنتی | آدرس اینترنتی | صفحه وب که در آن میتوان رزرو را لغو کرد. |
| تغییر آدرس رزرو | آدرس اینترنتی | ( برای کارتهای تأیید/جستجوی پاسخها توصیه میشود ) صفحه وبی که در آن میتوان رزرو را تغییر داد. |
| وضعیت رزرو | وضعیت رزرو | ( الزامی ) وضعیت فعلی رزرو. |
| چک این یور | آدرس اینترنتی | صفحه وبی که مسافر میتواند در آن ثبت نام کند. |
| رزرو برای | ترنتریپ | ( الزامی ) اطلاعات مربوط به سفر با قطار. |
| رزرو برای. شماره قطار | متن | ( برای کارتهای تأیید/جستجوی پاسخها توصیه میشود ) شماره قطار. |
| رزرو برای. نام قطار | متن | نام قطار. |
| رزرو برای. کد قطار | متن | شناسه منحصر به فرد قطار. |
| رزرو برای شرکت قطار | سازمان | سازمانی که قطار را اداره میکند. همچنین یک رشته (مثلاً "") را میپذیرد. |
| رزرو برای. ایستگاه حرکت | ایستگاه قطار | ( الزامی ) ایستگاهی که قطار از آن حرکت میکند. |
| نام رزرو برای ایستگاه حرکت | متن | ( الزامی ) نام ایستگاه قطار. |
| رزرو برای عزیمتسکو | متن | سکویی که قطار از آن حرکت میکند. |
| رزرو برای. زمان حرکت | تاریخ و زمان | ( الزامی ) زمان حرکت مورد انتظار. |
| رزرو برای ورودایستگاه | ایستگاه قطار | ( الزامی ) ایستگاهی که قطار در آن به پایان میرسد. |
| نام ایستگاه رزرو برای ورود | متن | ( الزامی ) نام ایستگاه قطار. |
| رزرو برای ورودسکو | متن | سکویی که قطار به آن میرسد. |
| رزرو برای. زمان ورود | تاریخ و زمان | ( الزامی ) زمان رسیدن مورد انتظار. |
| بلیط رزرو شده | بلیط | اطلاعات بلیط. |
| بلیط رزرو شده.شماره بلیط | متن | شماره یا شناسه بلیط. |
| بلیط رزرو شده. آدرس دانلود | آدرس اینترنتی | . |
| بلیط رزرو شده. printUrl | آدرس اینترنتی | . |
| ticketToken رزرو شده | متن یا آدرس اینترنتی (URL) | اگر تصویر بارکد در سایت شما میزبانی میشود، مقدار فیلد، URL تصویر یا یک بارکد یا QR URI است، مانند "barcode128:AB34" (بارکدهای ISO-15417)، "qrCode:AB34" (کدهای QR)، "aztecCode:AB34" (کدهای آزتک)، "barcodeEAN:1234" (کدهای EAN) و "barcodeUPCA:1234" (کدهای UPCA). |
| بلیط رزرو شده. متن بلیط اضافی | متن | متن توضیحی اضافی در مورد بلیط. |
| قیمت بلیط رزرو شده | متن | قیمت کل بلیط. |
| رزرو شدهبلیط. قیمتارز | متن | واحد پول (در قالب سه حرفی ISO 4217) قیمت بلیط. |
| بلیط رزرو شده. نام زیر | شخص یا سازمان | شخص یا سازمانی که بلیط برای آن صادر شده است. |
| reservedTicket.underName.name نام | متن | نام شخص. |
| بلیط رزرو شده. بلیط رزرو شده. صندلی رزرو شده | صندلی | محل صندلی رزرو شده (مثلاً ۲۷B). |
| رزرو شدهبلیط.بلیط دارصندلی.نوع صندلی | متن | نوع/کلاس صندلی. |
| رزرو شدهبلیط.بلیط صندلی.شماره صندلی | متن | محل صندلی رزرو شده. |
| رزرو شدهبلیط.بلیط دارصندلی.ردیف صندلی | متن | محل ردیف صندلی رزرو شده. |