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

Микроразметка для места (Seat)

Узнайте больше о микроразметке для места (Seat) на schema.su!

Seat - Тип Schema.org
Описание: Используется для описания сиденья, такого как зарезервированное место при бронировании на мероприятии.
Микроразметка для места (Seat) используется для описания сиденья, такого как зарезервированное место при бронировании на мероприятии. Для правильного использования этой микроразметки, убедитесь в соответствии с рекомендациями schema.org и обязательно указывайте соответствующие свойства, например, для событий, когда описание места важно.
СвойствоОжидаемый типОписание
Properties from Seat
seatNumber Text Местоположение зарезервированного места (например, 27)
seatRow Text Расположение ряда зарезервированного места (например, B).
seatSection Text Расположение раздела резервированного места (например, Оркестр).
seatingType QualitativeValue или Text Тип/класс сиденья.
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 Seat may appear as a value for the following properties
СвойствоOn TypesОписание
ticketedSeat Ticket Место, связанное с билетом.

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.

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