When doing a startDate
in Schema.org, should we use our local time or UTC time?
For instance, I have the following Microdata. The content
of the startDate
is in UTC (which we represent with an offset of +00:00
or just Z
as in my example) whereas the human readable aspect is in Pacfic Standard Time. I suspect this is correct, though I would like clarification and have not found relevant documentation. Do we put the microdata timezone in UTC or in our local timezone?
<ul class="list-unstyled" itemtype="http://schema.org/Event" itemscope="">
<li itemprop="name"><strong>Internet Security</strong></li>
<li itemprop="startDate"
content="2015-09-09T00:00:00.0000000Z">Tue 08 Sep, 5:00 PM
</li>
<li itemprop="description">Keep your online accounts secure.</li>
<li itemprop="location" itemscope="" itemtype="http://schema.org/Place">
<span itemprop="name">Program Room</span>
<address itemprop="address">
Salt Spring Island Public Library
</address>
</li>
</ul>
I know that the date ought to be in ISO 8601 format, though as far as I know, this format can be in any timezone. Which do we choose? UTC or something specific to our locality such as -08:00
for pacific standard time?