Merge pull request from AnthorNet/master

Added minLength to prevent empty properties
This commit is contained in:
James Muscat 2015-04-15 17:50:57 +01:00
commit e3d37d30cb

@ -28,10 +28,12 @@
"required": [ "systemName", "stationName", "timestamp", "commodities" ],
"properties": {
"systemName": {
"type" : "string"
"type" : "string",
"minLength" : 1
},
"stationName": {
"type" : "string"
"type" : "string",
"minLength" : 1
},
"timestamp": {
"type" : "string",