From 9a59ea70fa208e92a7341fd1d598c258488907ea Mon Sep 17 00:00:00 2001 From: Jose Manuel Cantera Date: Wed, 7 Nov 2018 08:54:52 +0100 Subject: [PATCH] Common now includes endpoint --- schema/common.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/schema/common.json b/schema/common.json index 042a506..4a0f42e 100644 --- a/schema/common.json +++ b/schema/common.json @@ -42,6 +42,25 @@ "format": "date-time" } } + }, + "Endpoint": { + "type": "object", + "required": [ + "uri" + ], + "properties": { + "uri": { + "type": "string", + "format": "uri" + }, + "accept": { + "type": "string", + "enum": [ + "application/json", + "application/ld+json" + ] + } + } } } } -- GitLab