xref: /aosp_15_r20/external/json-schema-validator/src/test/resources/schema/issue687.json (revision 78c4dd6aa35290980cdcd1623a7e337e8d021c7c)
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}