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

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

ShippingDeliveryTime предоставляет различные сведения о временах доставки для доставки.

ShippingDeliveryTime - Тип Schema.org
Описание: ShippingDeliveryTime предоставляет различные сведения о временах доставки для доставки.

Микроразметка ShippingDeliveryTime предоставляет информацию о временах доставки для доставки. Она относится к типу Thing > Intangible > StructuredValue > ShippingDeliveryTime.

Эта микроразметка используется для размещения информации о временах доставки на веб-страницах, чтобы поисковые системы смогли лучше понимать содержимое и отображать его в результатах поиска. Чтобы максимально эффективно применять ShippingDeliveryTime, рекомендуется соблюдать стандарты и рекомендации schema.org по разметке данных. Также важно следить за актуальностью и правильностью информации на вашем сайте для достижения лучших результатов в поисковых системах.

СвойствоОжидаемый типОписание
Properties from ShippingDeliveryTime
businessDays OpeningHoursSpecification Дни недели, когда торговец typcially работает, указанные с помощью разметки открытых часов.
cutoffTime Time Order cutoff time allows merchants to describe the time after which they will no longer process orders received on that day. For orders processed after cutoff time, one day gets added to the delivery time estimate. This property is expected to be most typically used via the ShippingRateSettings publication pattern. The time is indicated using the ISO-8601 Time format, e.g. "23:30:00-05:00" would represent 6:30 pm Eastern Standard Time (EST) which is 5 hours behind Coordinated Universal Time (UTC).
handlingTime QuantitativeValue Типичная задержка между получением заказа и отправкой товара со склада или подготовкой к самовывозу, если метод доставки - самовывоз. Типичные свойства: минимальное значение, максимальное значение, код единицы измерения (d для дня). По общепринятой конвенции предполагается, что это означает рабочие дни (если используется код единицы измерения, закодированный как "d"), т.е. учитываются только дни, когда бизнес обычно работает.
transitTime QuantitativeValue Типичная задержка, когда заказ отправлен к доставке и товары достигают конечного потребителя. Типичные свойства: минимальное значение, максимальное значение, код единицы (d для дней).
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 ShippingDeliveryTime may appear as a value for the following properties
СвойствоOn TypesОписание
deliveryTime DeliveryTimeSettings или OfferShippingDetails Общая задержка между получением заказа и доставкой товаров конечному клиенту.

Source

https://github.com/schemaorg/schemaorg/issues/2506


Examples

Example 1
Copied
Example notes or example HTML without markup.
Offer shipping details example with nested delivery time(JSON-LD only).
Example encoded as JSON-LD in a HTML script tag.
<script type="application/ld+json">
    {
        "@context": "https://schema.org",
        "@type": "OfferShippingDetails",
        "deliveryTime": {
            "@type": "ShippingDeliveryTime",
            "businessDays": {
                "@type": "OpeningHoursSpecification",
                "dayOfWeek": [
                    "https://schema.org/Monday",
                    "https://schema.org/Tuesday",
                    "https://schema.org/Wednesday",
                    "https://schema.org/Thursday",
                    "https://schema.org/Friday"
                ]
            },
            "cutoffTime": "12:00:15Z",
            "handlingTime": {
                "@type": "QuantitativeValue",
                "minValue": 1,
                "maxValue": 2,
                "unitCode": "d"
            },
            "transitTime": {
                "@type": "QuantitativeValue",
                "minValue": 1,
                "maxValue": 10,
                "unitCode": "d"
            }
        },
        "shippingRate": {
            "@type": "MonetaryAmount",
            "value": 4.95,
            "currency": "USD"
        }
    }
</script>
Structured representation of the JSON-LD example.

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