Unexpected Value
This generic message indicates that a value could not be matched to an expected type for a property. This can be due to several reasons, including:
- Formatting — an improper syntax or format for data types which have expected values (e.g. dates, times); or
- Enumeration — an invalid reference or textual name for the type; or
- Controlled Vocabulary — an invalid reference or textual name for the vocabulary; or
- Type — an unexpected data type was used.
Examples
{ "@context": "http://schema.org",
"@type": "Offer",
"availability": {
"@id": "http://schema.org/Monday" } }
{ "@context": "http://schema.org",
"@type": "Offer",
"availability": {
"@id": "http://schema.org/ExampleUnknown" } }
{ "@context": "http://schema.org",
"@type": "Offer",
"availability": false }
{ "@context": "http://schema.org",
"@type": "Event",
"startDate": "day 4 of week 3 of month 2 of quarter 1" }