xref: /aosp_15_r20/external/json-schema-validator/src/test/resources/draft2019-09/issue375.json (revision 78c4dd6aa35290980cdcd1623a7e337e8d021c7c)
1{
2  "$schema": "https://json-schema.org/draft/2019-09/schema",
3  "title": "test",
4  "description": "asdasdint",
5  "type": "object",
6  "properties": {
7    "fields": {
8      "type": "object",
9      "propertyNames": {
10        "pattern": "^[a-zA-Z]+$",
11        "maxLength": 5,
12        "minLength": 3
13      },
14      "additionalProperties": {
15        "type": "object",
16        "properties": {
17          "action": {
18            "type": "string"
19          }
20        },
21        "additionalProperties": false,
22        "required": [
23          "action"
24        ]
25      }
26    }
27  }
28}