xref: /aosp_15_r20/external/json-schema-validator/src/test/suite/remotes/draft2020-12/name-defs.json (revision 78c4dd6aa35290980cdcd1623a7e337e8d021c7c)
1{
2    "$schema": "https://json-schema.org/draft/2020-12/schema",
3    "$defs": {
4        "orNull": {
5            "anyOf": [
6                {
7                    "type": "null"
8                },
9                {
10                    "$ref": "#"
11                }
12            ]
13        }
14    },
15    "type": "string"
16}
17