Replies: 4 comments
-
The Currently there isn't a way to skip this functionality though it could be a feature worth adding in the future. That said, other systems that interpret the field as the schema.org specification describes may not interpret the additional timestamp data you're wanting to provide. |
Beta Was this translation helpful? Give feedback.
-
Hi @Turnerj I see in the metadata of MediaObject define the UploadDate Are there any difference between the ISO with the timestamp and without the timestamp when Google read structured data |
Beta Was this translation helpful? Give feedback.
-
I don't know exactly how Google will read it but if they follow the schema.org specifications for a It might be best to followup with Google specifically (though I don't know where you would go to do that) to see if they actually go beyond the specification and would use the time component if it was there. If you are concerned that Google wouldn't read your field right, its probably best to leave it as the schema.org specification describes. I know it does suck a little especially if you've got a more specific date and you really want to display that. |
Beta Was this translation helpful? Give feedback.
-
I read the example of a recipe website in Google example and it provides date without timestamp |
Beta Was this translation helpful? Give feedback.
-
I don't know how to format datetime field to match the iso 8601 date in c#
I tried to use
DateTime.Parse(info.PublishedDate.ToString("yyyy-MM-ddTHH:mm:ssZ"), null, System.Globalization.DateTimeStyles.RoundtripKind)
but when I @Html.Raw it procedure
"uploadDate":"2020-01-01"
why it must be"uploadDate":"2020-01-01T01:01:01+07:00"
I search many post but no luck
Thanks
Beta Was this translation helpful? Give feedback.
All reactions