TaxiService

Канонический URL: http://schema.org/TaxiService

Thing > Intangible > Service > TaxiService

A service for a vehicle for hire with a driver for local travel. Fares are usually calculated based on distance traveled.
Свойство Ожидаемый тип Описание
Свойства от Service
aggregateRating AggregateRating Общая оценка, основанная на наборе рейтингов, отзывов и оценок.
areaServed Place
или AdministrativeArea
или GeoShape
или Text
The geographic area where a service or offered item is provided.
audience Audience Целевая аудитория работы, т.е. группа, для кого работа была создана.
availableChannel ServiceChannel A means of accessing the service (e.g. a phone bank, a web site, a location, etc.).
award Text Награда выиграная этим человеком или этим результатом творчества.
brand Brand
или Organization
Марка (бренд) продукта.
category Text
или Thing
A category for the item. Greater signs or slashes can be used to informally indicate a category hierarchy.
hoursAvailable OpeningHoursSpecification The hours during which this service or contact is available.
isRelatedTo Product
или Service
Указатель на другой, как-либо связанный с этим продуктом, продукт или линейку.
isSimilarTo Product
или Service
Указатель на другой, функционально аналогичный продукт (или несколько продуктов).
logo ImageObject
или URL
URL картинки, являющейся логотипом.
offers Offer Предложение о продаже — например, предложение о продаже продукта, DVD с фильмом или билетов на мероприятие.
produces Thing The tangible thing generated by the service, e.g. a passport, permit, etc.
provider Person
или Organization
Лицо или организация, которые занимаются распространением, продажей CreativeWork.
review Review Отзыв о записи.
serviceArea Place
или AdministrativeArea
или GeoShape
The geographic area where the service is provided.
serviceAudience Audience The audience eligible for this service.
serviceType Text The type of service being offered, e.g. veterans' benefits, emergency relief, etc.
broker Person
или Organization
An entity that arranges for an exchange between a buyer and a seller. In most cases a broker never acquires or releases ownership of a product or service involved in an exchange. If it is not clear whether an entity is a broker, seller, or buyer, the latter two terms are preferred.
serviceOutput Thing The tangible thing generated by the service, e.g. a passport, permit, etc.
hasOfferCatalog OfferCatalog Indicates an OfferCatalog listing for this Organization, Person, or Service.
providerMobility Text Indicates the mobility of a provided service (e.g. 'static', 'dynamic').
Свойства от Thing
additionalType URL Дополнительный тип для элемента, который обычно используется для добавления более конкретных типов от внешних словарей в синтаксис микроданных. Это отношения между чем-то и классом к которому он принадлежит. В синтаксисе RDFa, лучше использовать родной синтаксис RDF - аттрибут "TypeOf" для множественных типов. Инстументы Schema.org могут слабо понимать дополнительные типы, особенно те, которые определены извне.
alternateName Text Любое альтернативное название медицинской сущности.
description Text Короткое описание записи.
image URL
или ImageObject
URL изображения записи.
name Text Имя записи.
sameAs URL Адрес веб-страницы, которая недвусмысленно указывает на идентичность элемента. Например, ссылка на страницу элемента на Википедии, Freebase страницу или на официальный сайт.
url URL URL записи.
potentialAction Action Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role.
mainEntityOfPage CreativeWork
или URL
Указывает на страницу (или другую "CreativeWork"), для которой эта вещь является основной описываемой сущностью. Подробнее см. В [справочных материалах] (/docs/datamodel.html#mainEntityBackground).
disambiguatingDescription Text A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation.
identifier URL
или Text
или PropertyValue
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](/docs/datamodel.html#identifierBg) for more details.


Примеры

Car for hire driver #123 is within 50 meters of a given location, but is moving.
<div itemscope itemtype="http://schema.org/TaxiService">
  <div itemprop="provider" itemscope itemtype="http://schema.org/LocalBusiness">
    <span itemprop="name">driver #123</span>
    <div itemprop="location" itemscope itemtype="http://schema.org/Place">
      <div itemprop="geo" itemscope itemtype="http://schema.org/GeoCircle">
        <div itemprop="geoMidpoint" itemscope itemtype="http://schema.org/GeoCoordinates">
          <meta itemprop="latitude" content="42.362757" />
          <meta itemprop="longitude" content="-71.087109" />
        </div>
        <meta itemprop="geoRadius" content="50" />
      </div>
    </div>
  </div>
  <meta itemprop="providerMobility" content="dynamic" />
</div>
<div vocab="http://schema.org/" typeof="TaxiService">
  <div property="provider" typeof="LocalBusiness">
    <span property="name">driver #123</span>
    <div property="location" typeof="Place">
      <div property="geo" typeof="GeoCircle">
        <div property="geoMidpoint" typeof="GeoCoordinates">
          <meta property="latitude" content="42.362757" />
          <meta property="longitude" content="-71.087109" />
        </div>
        <meta property="geoRadius" content="50" />
      </div>
    </div>
  </div>
  <meta property="providerMobility" content="dynamic" />
</div>
<script type="application/ld+json">
  {
    "@context": "http://schema.org/",
    "@type": "TaxiService",
    "provider": {
      "@type": "LocalBusiness",
      "name": "driver #123",
      "location": {
        "@type": "Place",
        "geo": {
          "@type": "GeoCircle",
          "geoMidpoint": {
            "@type": "GeoCoordinates",
            "latitude": "42.362757",
            "longitude": "-71.087109"
          },
          "geoRadius": "50"
        }
      }
    },
    "providerMobility": "dynamic"
  }
</script>

Schema Version 3.3