From 593968811d43043c80cf1db0288739adb076edc6 Mon Sep 17 00:00:00 2001 From: nickevansuk <2616208+nickevansuk@users.noreply.github.com> Date: Mon, 13 Dec 2021 12:27:04 +0000 Subject: [PATCH] Fix validFrom and validUntil to be schema:Date --- versions/2.x/models/Entitlement.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/versions/2.x/models/Entitlement.json b/versions/2.x/models/Entitlement.json index 31bfb6b0..9d1f9c08 100755 --- a/versions/2.x/models/Entitlement.json +++ b/versions/2.x/models/Entitlement.json @@ -29,7 +29,7 @@ "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." ] @@ -37,7 +37,7 @@ "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." ]