From 70ecd92c5e8048c9fdc7492a971c41e6c9a748d9 Mon Sep 17 00:00:00 2001 From: Charles Worthignton Date: Mon, 25 Nov 2013 23:44:46 -0500 Subject: [PATCH] Fix Podschema to conform to schema for "temporal" propert. According to the schema `temporal` is supposed to be a date-time pairs in ISO 8601, separated using a solidus "/", not an array of strings. --- schema/schema.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/schema/schema.json b/schema/schema.json index 9b008d4..c73bfb2 100644 --- a/schema/schema.json +++ b/schema/schema.json @@ -125,7 +125,7 @@ "type": "string" }, "temporal": { - "type": "array" + "type": "string" }, "theme": { "type": "array", @@ -143,4 +143,4 @@ "format": "uri" } } -} \ No newline at end of file +}