From 26fb0520d15f562093ccb91155f01633c936b36b Mon Sep 17 00:00:00 2001 From: wolfgang kuehn Date: Fri, 17 Jun 2016 19:15:26 +0200 Subject: [PATCH] Create common_request_schema.json --- test/issue6/common_request_schema.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 test/issue6/common_request_schema.json diff --git a/test/issue6/common_request_schema.json b/test/issue6/common_request_schema.json new file mode 100644 index 0000000..274ec26 --- /dev/null +++ b/test/issue6/common_request_schema.json @@ -0,0 +1,15 @@ +{ + "$schema": "http://json-schema.org/draft-04/schema#", + "type": "object", + "required": ["start", "end"], + "properties": { + "start": { + "type": "string", + "format" : "date" + }, + "end": { + "type": "string", + "format" : "date" + } + } +}