xref: /aosp_15_r20/external/json-schema-validator/src/test/resources/schema/issue467.json (revision 78c4dd6aa35290980cdcd1623a7e337e8d021c7c)
1{
2  "$schema": "http://json-schema.org/draft-07/schema#",
3  "type": "object",
4  "title": "default_schema",
5  "description": "Default Description",
6  "properties": {
7    "tags": {
8      "type": "array",
9      "items": [
10        {
11          "type": "object",
12          "properties": {
13            "value" : {
14              "type": "string"
15            },
16            "category" : {
17              "type": "string"
18            }
19          },
20          "required": [ "value" ]
21        }
22      ]
23    }
24  },
25  "required": [ "tags" ]
26}