Skip to content

Commit

Permalink
Fix validFrom and validUntil to be schema:Date
Browse files Browse the repository at this point in the history
  • Loading branch information
nickevansuk committed Dec 13, 2021
1 parent 06003ad commit 5939688
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions versions/2.x/models/Entitlement.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@
"validFrom": {
"fieldName": "validFrom",
"sameAs": "https://schema.org/validFrom",
"requiredType": "https://schema.org/DateTime",
"requiredType": "https://schema.org/Date",
"description": [
"The date the entitlement becomes valid. This must be in the past."
]
},
"validUntil": {
"fieldName": "validUntil",
"sameAs": "https://schema.org/validUntil",
"requiredType": "https://schema.org/DateTime",
"requiredType": "https://schema.org/Date",
"description": [
"The date that the entitlement is no longer valid. This must be in the future."
]
Expand Down

0 comments on commit 5939688

Please sign in to comment.