Mobile app version of vmapp.org
Login or Join
Alves908

: Should the availability of digital purchases be marked as OnlineOnly? Since the ItemAvailability seems to deal primarily with physical objects, I wanted to make sure that OnlineOnly could be applied

@Alves908

Posted in: #Download #Ecommerce #SchemaOrg

Since the ItemAvailability seems to deal primarily with physical objects, I wanted to make sure that OnlineOnly could be applied to digital downloads. Or, should digital downloads not have an ItemAvailability?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Alves908

1 Comments

Sorted by latest first Latest Oldest Best

 

@Shanna517

I think it’s not relevant if it’s a physical item or a digital item.

An example that makes clear that the difference shouldn’t matter when deciding if and how availability should be used: You could sell concert tickets, from your online shop and from your retail store, in digital form and in paper form (from both places).

OnlineOnly means that the item can only be purchased from the web shop, while InStoreOnly is for the opposite case. Both can be used for digital and/or physical items. (I guess they are intended for cases where an organization has both, a web shop and a physical store, but using them in cases where only one is available shouldn’t hurt.)

If you want to convey that it’s a digital item (for download), you could use the availableDeliveryMethod property with the value
purl.org/goodrelations/v1#DeliveryModeDirectDownload

So for a product that can be downloaded after purchase from your web shop, it could look like:

<div vocab="http://schema.org/" typeof="Offer">
<link property="availability" href="http://schema.org/InStock" />
<link property="availability" href="http://schema.org/OnlineOnly" />
<link property="availableDeliveryMethod" href="http://purl.org/goodrelations/v1#DeliveryModeDirectDownload" />
</div>

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme