⚠️ Важно: данный сайт не имеет отношения к владельцам schema.org, это всего лишь любительский (неофициальный) перевод. Сайт сделан для тех кто плохо воспринимает технический английский. Оригинальную и актуальную информацию на английском языке вы можете найти тут: schema.org/Ticket.

Микроразметка Ticket

Описание типа Ticket на сайте schema.su

Ticket - Тип Schema.org
Описание: Используется для описания билета на мероприятие, рейс, автобусную поездку и т. д.

Микроразметка Ticket на сайте schema.su предназначена для описания билета на мероприятие, рейс, поездку на автобусе и т.д. Используйте этот тип, чтобы сделать информацию о билетах более структурированной и понятной для поисковых систем и пользователей. Для улучшения видимости своих билетов в поиске, убедитесь, что вы правильно применяете микроразметку Ticket и предоставляете все необходимые данные.

СвойствоОжидаемый типОписание
Properties from Ticket
dateIssued Date или DateTime Дата выдачи - свойство Schema.org Property. Дата выдачи билета.
issuedBy Organization The organization issuing the item, for example a Permit, Ticket, or Certification.
priceCurrency Text The currency of the price, or a price component when attached to PriceSpecification and its subtypes.Use standard formats: ISO 4217 currency format, e.g. "USD"; Ticker symbol for cryptocurrencies, e.g. "BTC"; well known names for Local Exchange Trading Systems (LETS) and other currency types, e.g. "Ithaca HOUR".
ticketNumber Text Уникальный идентификатор для билета.
ticketToken Text или URL Ссылка на актив (например, штрих-код, изображение QR-кода или PDF), используемый для входа.
ticketedSeat Seat Место, связанное с билетом.
totalPrice Number или PriceSpecification или Text The total price for the reservation or ticket, including applicable taxes, shipping, etc.Usage guidelines:Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similar Unicode symbols.Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.
underName Organization или Person Человек или организация, для которых предназначена бронь или билет.
Properties from Thing
additionalType Text или URL An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. Typically the value is a URI-identified RDF class, and in this case corresponds to the use of rdf:type in RDF. Text values can be used sparingly, for cases where useful information can be added without their being an appropriate schema to reference. In the case of text values, the class label should follow the schema.org style guide.
alternateName Text Псевдоним для элемента.
description Text или TextObject Описание элемента.
disambiguatingDescription Text Подсвойство описания. Краткое описание элемента, используемое для различения от других, схожих элементов. Для того чтобы описание было полезным для разрешения неоднозначности, может потребоваться информация из других свойств (в частности, name).
identifier PropertyValue или Text или URL The identifier property represents any kind of identifier for any kind of Thing, such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See background notes for more details.
image ImageObject или URL An image of the item. This can be a URL or a fully described ImageObject.
mainEntityOfPage CreativeWork или URL Indicates a page (or other CreativeWork) for which this thing is the main entity being described. See background notes for details. Обратное свойство: mainEntity
name Text Название элемента.
potentialAction Action Указывает на потенциальное действие, описывающее идеализированное действие, в котором этот объект мог бы выполнять роль 'объекта'.
sameAs URL URL страницы для ссылки, однозначно указывающей на идентичность объекта. Например, URL страницы объекта на Википедии, записи в Wikidata или официального веб-сайта.
subjectOf CreativeWork или Event Свойство Schema.org - subjectOf: A CreativeWork or Event about this Thing. Обратное свойство: about
url URL URL объекта.

Instances of Ticket may appear as a value for the following properties
СвойствоOn TypesОписание
reservedTicket Reservation Билет, связанный с бронированием.

Examples

Example 1
Copied
Example notes or example HTML without markup.
Original:
Reservation #E123456789
under name: John Smith

Foo Fighters Concert
2017-03-06T19:30:00-08:00
AT&T Park
24 Willie Mays Plaza
San Francisco, CA 94107

Ticket #abc123
Section: 101
Row: A
Seat: 12
Example encoded as JSON-LD in a HTML script tag.
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "EventReservation",
  "reservationId": "E123456789",
  "reservationStatus": "https://schema.org/ReservationConfirmed",
  "underName": {
    "@type": "Person",
    "name": "John Smith"
  },
  "reservationFor": {
    "@type": "Event",
    "name": "Foo Fighters Concert",
    "startDate": "2017-03-06T19:30:00-08:00",
    "location": {
      "@type": "Place",
      "name": "AT&T Park",
      "address": {
        "@type": "PostalAddress",
        "streetAddress": "24 Willie Mays Plaza",
        "addressLocality": "San Francisco",
        "addressRegion": "CA",
        "postalCode": "94107",
        "addressCountry": "US"
      }
    }
  },
  "reservedTicket": {
    "@type": "Ticket",
    "ticketNumber": "abc123",
    "ticketToken": "qrCode:AB34",
    "ticketedSeat": {
      "@type": "Seat",
      "seatRow": "A",
      "seatNumber": "12",
      "seatSection": "101"
    }
  }
}
</script>
Structured representation of the JSON-LD example.

Обсуждение "Ticket"