github.com/alecthomas/jsonschema@v0.0.0-20220216202328-9eeeec9d044b/fixtures/schema_with_minimum.json (about) 1 { 2 "$schema": "http://json-schema.org/draft-04/schema#", 3 "$ref": "#/definitions/MinValue", 4 "definitions": { 5 "MinValue": { 6 "required": [ 7 "value4" 8 ], 9 "properties": { 10 "value4": { 11 "type": "integer", 12 "minimum": 0 13 } 14 }, 15 "additionalProperties": false, 16 "type": "object" 17 } 18 } 19 }