1{ 2 "$schema": "https://json-schema.org/draft/2019-09/schema", 3 "$id": "https://json-schema.org/draft/2019-09/schema", 4 "type": "object", 5 "properties": { 6 "foo": { "type": "string" }, 7 "b.ar": { "type": "string" }, 8 "children" : { 9 "type": "array", 10 "items": { 11 "type": "object", 12 "properties": { 13 "childFoo": { "type": "string" }, 14 "c/hildBar": { "type": "string" } 15 } 16 } 17 } 18 } 19}