xref: /aosp_15_r20/external/json-schema-validator/src/test/resources/schema/issue404-v7.json (revision 78c4dd6aa35290980cdcd1623a7e337e8d021c7c)
1{
2  "$id": "https://example.com/address.schema.json",
3  "$schema": "http://json-schema.org/draft-07/schema#",
4  "type": "object",
5  "properties": {
6    "foo": {
7      "type": "object",
8      "enum": [1, 2, 3]
9    },
10    "bar": {
11      "$ref": "#/properties/foo"
12    }
13  }
14}
15