xref: /aosp_15_r20/external/json-schema-validator/src/test/resources/schema/issue347-v7.json (revision 78c4dd6aa35290980cdcd1623a7e337e8d021c7c)
1{
2  "$id": "test",
3  "$schema": "http://json-schema.org/draft-07/schema#",
4  "description": "Test description",
5  "properties": {
6    "test": {
7      "description": "Sample property",
8      "examples": [
9        "hello",
10        "world"
11      ],
12      "type": "string"
13    }
14  },
15  "required": [
16    "test"
17  ],
18  "type": "object"
19}
20