{ "$id": "testdata.schema.json", "$schema": "http://json-schema.org/draft-07/schema#", "title": "testdata", "type": "object", "required": [ "name" ], "properties": { "name": { "type": "string", "description": "test name" }, "len": { "type": "integer", "description": "test number", "minimum": 5 } } }