github.com/alecthomas/jsonschema@v0.0.0-20220216202328-9eeeec9d044b/fixtures/test_yaml_and_json_prefer_yaml.json (about) 1 { 2 "$schema": "http://json-schema.org/draft-04/schema#", 3 "$ref": "#/definitions/TestYamlAndJson", 4 "definitions": { 5 "TestYamlAndJson": { 6 "required": ["first_name", "LastName", "age"], 7 "properties": { 8 "first_name": { 9 "type": "string" 10 }, 11 "LastName": { 12 "type": "string" 13 }, 14 "age": { 15 "type": "integer" 16 }, 17 "middle_name": { 18 "type": "string" 19 } 20 }, 21 "additionalProperties": false, 22 "type": "object" 23 } 24 } 25 }