github.com/thetreep/go-swagger@v0.0.0-20240223100711-35af64f14f01/fixtures/bugs/1260/test3-model-schema.json (about) 1 { 2 "$schema": "http://json-schema.org/draft-04/schema#", 3 "id": "./test3-model-schema.json", 4 "title": "test3-model-schema", 5 "description": "Test schema responses", 6 "definitions": { 7 "b": { 8 "type": "object", 9 "required": ["a"], 10 "additionalProperties": false, 11 "properties": { 12 "a1": { 13 "type": "string" 14 }, 15 "a2": { 16 "type": "integer" 17 } 18 } 19 }, 20 "c": { 21 "type": "object", 22 "additionalProperties": { 23 "type": "integer" 24 } 25 } 26 } 27 }